From a6ec2cb38b87ac3c408500e4e5d085876baab3d3 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 28 Aug 2016 14:52:56 +0300 Subject: [PATCH] Add namespace with helpers for work with html5 blobs. --- src/uxbox/util/blob.cljs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/uxbox/util/blob.cljs diff --git a/src/uxbox/util/blob.cljs b/src/uxbox/util/blob.cljs new file mode 100644 index 000000000..2ae1866b4 --- /dev/null +++ b/src/uxbox/util/blob.cljs @@ -0,0 +1,29 @@ +;; 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 + +(ns uxbox.util.blob + "Helpers for work with HTML5 Blob objects.") + +(defn ^boolean blob? + [v] + (instance? js/Blob v)) + +(defn create + "Create a blob from content." + ([content] + (create content "application/octet-stream")) + ([content mimetype] + (js/Blob. #js [content] #js {:type mimetype}))) + +(defn revoke-uri + [url] + (js/URL.revokeObjectURL url)) + +(defn create-uri + "Create a url from blob." + [b] + {:pre [(blob? b)]} + (js/URL.createObjectURL b))