mirror of
https://github.com/penpot/penpot.git
synced 2025-02-05 05:49:07 -05:00
Add cljs abstraction for jszip library under uxbox.util.zip ns.
This commit is contained in:
parent
8bcb373d07
commit
224c410ec3
1 changed files with 24 additions and 0 deletions
24
src/uxbox/util/zip.cljs
Normal file
24
src/uxbox/util/zip.cljs
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
;; This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
;;
|
||||||
|
;; Copyright (c) 2016 Andrey Antukh <niwi@niwi.nz>
|
||||||
|
|
||||||
|
(ns uxbox.util.zip
|
||||||
|
"Helpers for make zip file (using jszip)."
|
||||||
|
(:require [vendor.jszip]
|
||||||
|
[promesa.core :as p]))
|
||||||
|
|
||||||
|
(defn build*
|
||||||
|
[files resolve reject]
|
||||||
|
(let [zipobj (js/JSZip.)]
|
||||||
|
(run! (fn [[name content]]
|
||||||
|
(.file zipobj name content))
|
||||||
|
files)
|
||||||
|
(-> (.generateAsync zipobj #js {:type "blob"})
|
||||||
|
(.then resolve reject))))
|
||||||
|
|
||||||
|
(defn build
|
||||||
|
[files]
|
||||||
|
(p/promise (fn [resolve reject]
|
||||||
|
(build* files resolve reject))))
|
Loading…
Add table
Reference in a new issue