-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathcljs_SLASH_loader.cljs
93 lines (81 loc) · 3.36 KB
/
cljs_SLASH_loader.cljs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
; Copyright (c) Rich Hickey. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software
(ns cljs.loader
(:require [goog.object :as gobj])
(:import [goog.module ModuleLoader]
[goog.module ModuleManager]))
(def module-infos MODULE_INFOS) ;; set by compiler
(def module-uris MODULE_URIS) ;; set by compiler
(defn deps-for [x graph]
(let [depends-on (get graph x)]
(-> (mapcat #(deps-for % graph) depends-on)
(concat depends-on) distinct vec)))
(defn munge-kw [x]
(cond-> x
(keyword? x) (-> name munge)))
(defn to-js [m]
(reduce-kv
(fn [ret k xs]
(let [arr (into-array (map munge-kw xs))]
(doto ret (gobj/set (-> k name munge) arr))))
#js {} m))
(defn create-module-manager []
(let [mm (ModuleManager.)
ml (ModuleLoader.)]
(.setLoader mm ml)
mm))
(defonce ^:dynamic *module-manager* (create-module-manager))
(.setAllModuleInfo *module-manager* (to-js module-infos))
(.setModuleUris *module-manager* (to-js module-uris))
(defn loaded?
"Return true if modules is loaded. module-name should be a keyword matching
a :modules module definition."
[module-name]
(assert (contains? module-infos module-name)
(str "Module " module-name " does not exist"))
(let [mname (-> module-name name munge)
module (.getModuleInfo *module-manager* mname)]
(when (some? module)
(.isLoaded module))))
(defn load
"Load a module. module-name should be a keyword matching a :modules module
definition."
([module-name]
(load module-name nil))
([module-name cb]
(assert (contains? module-infos module-name)
(str "Module " module-name " does not exist"))
(let [mname (-> module-name name munge)]
(if-not (nil? cb)
(.execOnLoad *module-manager* mname cb)
(.load *module-manager* mname)))))
(defn set-loaded!
"Set a module as being loaded. module-name should be a keyword matching a
:modules module definition. Will mark all parent modules as also being
loaded. Note that calls to this function will be automatically generated
as the final expression for known :modules entry points that require the
cljs.loader namespace."
[module-name]
(assert (contains? module-infos module-name)
(str "Module " module-name " does not exist"))
(let [xs (deps-for module-name module-infos)]
(doseq [x xs]
(.setLoaded *module-manager* (munge-kw x)))
(.setLoaded *module-manager* (munge-kw module-name))))
(defn prefetch
"Prefetch a module. module-name should be a keyword matching a :modules
module definition. Will download the module but not evaluate it. To
complete module load, one must also call cljs.loader/load after prefetching
the module. Does nothing if the module is loading or has been loaded."
[module-name]
(assert (contains? module-infos module-name)
(str "Module " module-name " does not exist"))
(when-not (loaded? module-name)
(let [mname (-> module-name name munge)]
(when-not (.isModuleLoading *module-manager* mname)
(.prefetchModule *module-manager* mname)))))