proscenium 0.11.0.pre.5-aarch64-linux → 0.11.0.pre.6-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '008293b5da564933883b85ffe39d9f6d948760762e6d7fbcc6115fa593376a10'
|
4
|
+
data.tar.gz: 7f5343566a82e436972579d5220bbc77c999bfeebe05685a1d30538ab11ff9ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d92a7cf3bceb5c0bd994096460723ef72def8bc11dba20a051acc9f49e54bbe5263a03c2495b8f9562376b8e9752f9368a8ac4d486a8177103423c4bb6a6a21
|
7
|
+
data.tar.gz: 28ccb5fb2a41913d9bee692b25497db690c7d597d60e62373287f4f95a47e243999ad191c021ccb186d30c1be4382586cf963abfd2b4a0dfafaef0f21889dcd2
|
Binary file
|
@@ -31,27 +31,31 @@ function init() {
|
|
31
31
|
"prosceniumComponentForwardChildren" in element.dataset &&
|
32
32
|
element.innerHTML !== "";
|
33
33
|
|
34
|
-
Promise.all([react, Component])
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
34
|
+
Promise.all([react, Component])
|
35
|
+
.then(([r, c]) => {
|
36
|
+
if (proscenium.env.RAILS_ENV === "development") {
|
37
|
+
console.groupCollapsed(
|
38
|
+
`[proscenium/react/manager] 🔥 %o mounted!`,
|
39
|
+
path
|
40
|
+
);
|
41
|
+
console.log("props: %o", props);
|
42
|
+
console.groupEnd();
|
43
|
+
}
|
43
44
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
45
|
+
let component;
|
46
|
+
if (forwardChildren) {
|
47
|
+
component = r.createElement(c.default, props, element.innerHTML);
|
48
|
+
} else if (children) {
|
49
|
+
component = r.createElement(c.default, props, children);
|
50
|
+
} else {
|
51
|
+
component = r.createElement(c.default, props);
|
52
|
+
}
|
52
53
|
|
53
|
-
|
54
|
-
|
54
|
+
r.createRoot(element).render(component);
|
55
|
+
})
|
56
|
+
.catch((error) => {
|
57
|
+
console.error("[proscenium/react/manager] %o - %o", path, error);
|
58
|
+
});
|
55
59
|
}
|
56
60
|
|
57
61
|
Array.from(elements, (element) => {
|
@@ -38,13 +38,14 @@ module Proscenium
|
|
38
38
|
class_attribute :lazy, default: false
|
39
39
|
|
40
40
|
class_attribute :loader
|
41
|
+
|
42
|
+
# @return [String] the URL path to the component manager.
|
43
|
+
class_attribute :manager, default: '/@proscenium/react-manager/index.jsx'
|
41
44
|
end
|
42
45
|
|
43
46
|
class_methods do
|
44
|
-
# Import only the component manager. The component itself is side loaded in the initializer,
|
45
|
-
# so that it can be lazy loaded based on the value of the `lazy` instance variable.
|
46
47
|
def sideload
|
47
|
-
Importer.import
|
48
|
+
Importer.import manager
|
48
49
|
Importer.sideload source_path, lazy: true
|
49
50
|
end
|
50
51
|
end
|
data/lib/proscenium/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: proscenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.0.pre.
|
4
|
+
version: 0.11.0.pre.6
|
5
5
|
platform: aarch64-linux
|
6
6
|
authors:
|
7
7
|
- Joel Moss
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|