ripple 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +162 -0
- package/package.json +9 -3
- package/src/constants.js +4 -0
- package/src/jsx-runtime.d.ts +2 -1
- package/src/runtime/array.js +15 -9
- package/src/runtime/index-client.js +25 -7
- package/src/runtime/index-server.js +1 -0
- package/src/runtime/internal/client/attributes.js +313 -0
- package/src/runtime/internal/client/blocks.js +4 -14
- package/src/runtime/internal/client/component.js +2 -5
- package/src/runtime/internal/client/composite.js +14 -6
- package/src/runtime/internal/client/constants.js +12 -6
- package/src/runtime/internal/client/context.js +3 -2
- package/src/runtime/internal/client/css.js +11 -26
- package/src/runtime/internal/client/errors.js +188 -0
- package/src/runtime/internal/client/events.js +79 -34
- package/src/runtime/internal/client/expression.js +21 -116
- package/src/runtime/internal/client/for.js +272 -222
- package/src/runtime/internal/client/head.js +4 -3
- package/src/runtime/internal/client/html.js +5 -3
- package/src/runtime/internal/client/hydrate.js +484 -0
- package/src/runtime/internal/client/hydration-enabled.js +7 -0
- package/src/runtime/internal/client/hydration.js +16 -97
- package/src/runtime/internal/client/if.js +13 -9
- package/src/runtime/internal/client/index.js +16 -8
- package/src/runtime/internal/client/operations.js +12 -9
- package/src/runtime/internal/client/portal.js +3 -2
- package/src/runtime/internal/client/render.js +75 -321
- package/src/runtime/internal/client/root-boundary-enabled.js +7 -0
- package/src/runtime/internal/client/runtime.js +129 -362
- package/src/runtime/internal/client/template-ns.js +47 -0
- package/src/runtime/internal/client/template.js +63 -140
- package/src/runtime/internal/client/track-async.js +356 -0
- package/src/runtime/internal/client/try.js +133 -319
- package/src/runtime/internal/client/types.d.ts +48 -24
- package/src/runtime/internal/server/index.js +38 -33
- package/src/runtime/internal/server/prerender.js +27 -0
- package/src/server/index.js +1 -0
- package/src/utils/class-name.js +28 -0
- package/tests/client/basic/basic.errors.test.tsrx +3 -3
- package/tests/client/compiler/__snapshots__/compiler.typescript.test.tsrx.snap +0 -2
- package/tests/client/compiler/compiler.basic.test.tsrx +4 -4
- package/tests/client/compiler/compiler.tracked-access.test.tsrx +3 -3
- package/tests/client/composite/composite.props.test.tsrx +10 -10
- package/tests/client/derived-release.test.tsrx +3 -3
- package/tests/client/for-item.test.tsrx +443 -0
- package/tests/client/for-selector.test.tsrx +95 -0
- package/tests/hydration/compiled/client/basic.js +97 -123
- package/tests/hydration/compiled/client/composite.js +5 -5
- package/tests/hydration/compiled/client/events.js +84 -79
- package/tests/hydration/compiled/client/for.js +229 -233
- package/tests/hydration/compiled/client/fragment-cursor.js +781 -481
- package/tests/hydration/compiled/client/head.js +23 -26
- package/tests/hydration/compiled/client/hmr.js +4 -4
- package/tests/hydration/compiled/client/html-in-template.js +5 -5
- package/tests/hydration/compiled/client/html.js +174 -208
- package/tests/hydration/compiled/client/if-children.js +71 -70
- package/tests/hydration/compiled/client/if-fragment-controlflow.js +46 -46
- package/tests/hydration/compiled/client/if.js +26 -26
- package/tests/hydration/compiled/client/mixed-control-flow.js +63 -105
- package/tests/hydration/compiled/client/nested-control-flow.js +170 -390
- package/tests/hydration/compiled/client/portal.js +10 -10
- package/tests/hydration/compiled/client/reactivity.js +36 -50
- package/tests/hydration/compiled/client/return.js +2 -2
- package/tests/hydration/compiled/client/streaming.js +34 -40
- package/tests/hydration/compiled/client/switch.js +25 -25
- package/tests/hydration/compiled/client/track-async-serialization.js +41 -41
- package/tests/hydration/compiled/client/try.js +15 -15
- package/tests/hydration/compiled/client/typed-text.js +8 -19
- package/tests/hydration/compiled/server/basic.js +6 -6
- package/tests/hydration/compiled/server/events.js +13 -61
- package/tests/hydration/compiled/server/for.js +23 -31
- package/tests/hydration/compiled/server/fragment-cursor.js +214 -366
- package/tests/hydration/compiled/server/head.js +6 -6
- package/tests/hydration/compiled/server/hmr.js +1 -1
- package/tests/hydration/compiled/server/html.js +1 -1
- package/tests/hydration/compiled/server/if-children.js +9 -9
- package/tests/hydration/compiled/server/if.js +5 -5
- package/tests/hydration/compiled/server/mixed-control-flow.js +4 -4
- package/tests/hydration/compiled/server/portal.js +1 -1
- package/tests/hydration/compiled/server/reactivity.js +9 -9
- package/tests/hydration/compiled/server/streaming.js +9 -9
- package/tests/hydration/compiled/server/switch.js +4 -4
- package/tests/hydration/compiled/server/track-async-serialization.js +16 -16
- package/tests/hydration/compiled/server/try.js +4 -4
- package/tests/hydration/compiled/server/typed-text.js +1 -1
- package/tests/hydration/components/fragment-cursor.tsrx +60 -0
- package/tests/hydration/components/track-async-serialization.tsrx +2 -2
- package/tests/hydration/fragment-cursor.test.js +34 -1
- package/tests/hydration/track-async-serialization.test.js +1 -1
- package/tests/server/basic.components.test.tsrx +3 -3
- package/tests/server/basic.test.tsrx +23 -0
- package/tests/server/track-async-serialization.test.tsrx +6 -6
- package/tests/utils/tracked-types.test.js +3 -3
- package/types/index.d.ts +8 -8
- package/types/server.d.ts +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,167 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1486](https://github.com/Ripple-TS/ripple/pull/1486)
|
|
8
|
+
[`304ba6c`](https://github.com/Ripple-TS/ripple/commit/304ba6c2d9098752396fff6c2545e3ef2546381c)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: a static component,
|
|
10
|
+
template `@if`, or template `@for` followed by a static element sibling inserts
|
|
11
|
+
before that element instead of before a `<!>` placeholder of its own: the
|
|
12
|
+
element is part of the template and never moves, so the compiled template holds
|
|
13
|
+
no comment node for it and the client reuses the element's variable where
|
|
14
|
+
hydration steps to the sibling. The `RippleArray` statics (`from`, `of`,
|
|
15
|
+
`fromAsync`) lower to standalone runtime functions, so a bundle that never
|
|
16
|
+
constructs a `RippleArray` drops the array proxy instead of keeping it through
|
|
17
|
+
property assignments on the constructor's compiled form (the server's
|
|
18
|
+
`fromAsync` lowering previously named a function that did not exist).
|
|
19
|
+
|
|
20
|
+
- [#1487](https://github.com/Ripple-TS/ripple/pull/1487)
|
|
21
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1)
|
|
22
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: smaller production
|
|
23
|
+
bundles without a runtime cost. The compiler lowers a static `onBlur`-style
|
|
24
|
+
handler (an event its name keeps off delegation) to a direct `listen` call with
|
|
25
|
+
the DOM name and phase resolved at compile time, packs the locals a hoisted
|
|
26
|
+
`@if`/`@switch` captures under positional keys, writes template strings without
|
|
27
|
+
attribute quotes or implied end tags where the parser reads them back the same,
|
|
28
|
+
gives a plain function no `_$_.scope()` call when its body never reads the
|
|
29
|
+
block, and omits `set_class`'s default trailing arguments. The runtime keeps its
|
|
30
|
+
hydration paths (template adoption, expression text, append cursor, streamed
|
|
31
|
+
boundaries) in a module `hydrate()` installs and its `trackAsync` machinery in a
|
|
32
|
+
module that registers with the runtime on first use, and the catch routing is
|
|
33
|
+
registered by the first boundary, so a client-only mount without `trackAsync`
|
|
34
|
+
ships neither and the core runtime no longer imports the boundary module; the
|
|
35
|
+
try boundary state, the root event ref and the template cache use short keys,
|
|
36
|
+
the keyed and reference list diffs share one patch helper, and symbol constants
|
|
37
|
+
carry no descriptions. The runtime's errors are thrown as in Svelte: the message
|
|
38
|
+
and a link to `https://ripple-ts.com/e/<code>` in development, the link alone in
|
|
39
|
+
production, so the message text stays out of production bundles; `set_class`
|
|
40
|
+
composes non-string values with its own clsx-style joiner instead of importing
|
|
41
|
+
`clsx`; hoisted render blocks store captured locals under positional keys; a
|
|
42
|
+
`template()` with no flags passes none; and the hash a `track()` call carries
|
|
43
|
+
encodes the same 32 bits in base 36. The Vite plugin leaves Vite's modulepreload
|
|
44
|
+
polyfill out of production builds unless `build.modulePreload` is configured.
|
|
45
|
+
|
|
46
|
+
- [#1487](https://github.com/Ripple-TS/ripple/pull/1487)
|
|
47
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1)
|
|
48
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - feat: build shapes.
|
|
49
|
+
`ripple({ ssr: false })` builds a client-only app: components compile without
|
|
50
|
+
the hydration cursor or `track()` serialization hashes (`hydration: false` on
|
|
51
|
+
the compiler), the runtime's hydration paths are compiled out through its
|
|
52
|
+
`HYDRATION` build constant, and `hydrate()` throws; `ssr: true` compiles every
|
|
53
|
+
module for the server. `prerender()` on `ripple/server` renders a component to
|
|
54
|
+
static HTML with every boundary settled and the CSS as text, and a `RenderRoute`
|
|
55
|
+
marked `prerender: true` is rendered through the built server entry at build
|
|
56
|
+
time into `<outDir>/client<path>/index.html`, which the node and bun adapters
|
|
57
|
+
now serve for a directory request before the server renders. The client build's
|
|
58
|
+
`index.html` template moves to the server output so a static handler never
|
|
59
|
+
serves its placeholders.
|
|
60
|
+
|
|
61
|
+
- [#1487](https://github.com/Ripple-TS/ripple/pull/1487)
|
|
62
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1)
|
|
63
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: a `class` expression
|
|
64
|
+
the compiler can prove to be a string writes through a string-only `set_class`,
|
|
65
|
+
so the clsx-style joiner ships only with a bundle that composes classes from
|
|
66
|
+
arrays or objects; templates in the SVG or MathML namespace parse through a
|
|
67
|
+
`template_ns` entry that an HTML-only bundle never loads; and the class joiner
|
|
68
|
+
is one module shared by the client and server renderers, so `ripple` no longer
|
|
69
|
+
depends on `clsx`. `ripple({ rootBoundary: false })` builds an app that renders
|
|
70
|
+
without the default root try/pending/catch boundary and leaves the boundary
|
|
71
|
+
runtime out of the bundle; a `rootBoundary` option on `mount()` or `hydrate()`
|
|
72
|
+
then throws. The `ripple` package declares `sideEffects: false`, and dynamic
|
|
73
|
+
attribute, style and spread helpers live in their own runtime module, so a
|
|
74
|
+
bundle that never sets an attribute dynamically drops them along with the
|
|
75
|
+
attribute tables they consult. The plugin's `ssr: false` and
|
|
76
|
+
`rootBoundary: false` rewrite the runtime's build-constant imports to literals
|
|
77
|
+
at transform time, which every bundler folds while tree-shaking.
|
|
78
|
+
|
|
79
|
+
- [#1484](https://github.com/Ripple-TS/ripple/pull/1484)
|
|
80
|
+
[`1ea71f1`](https://github.com/Ripple-TS/ripple/commit/1ea71f14fcee5a976ea81e2bedf5010251eaa70c)
|
|
81
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: a template `@if` that
|
|
82
|
+
closes the trailing run of an element's children (nothing rendered follows it)
|
|
83
|
+
never materializes an anchor node: the element's tail is its position for its
|
|
84
|
+
whole life. An `@if (outer === item.key)` in a `@for` body lowers to the loop's
|
|
85
|
+
selector like an attribute comparison, and a comparison against the item's key
|
|
86
|
+
reads the block's key (fixed for its life) rather than the item, so a change of
|
|
87
|
+
the outer value re-runs the ifs of its previous and next key alone and a
|
|
88
|
+
replaced item leaves its ifs untouched; comparisons against the same outer value
|
|
89
|
+
share one selector per loop. Event delegation reads the composed path only for a
|
|
90
|
+
nested root and looks the handler property up by one string, and `checked` is
|
|
91
|
+
compared against the element instead of a cached write.
|
|
92
|
+
|
|
93
|
+
- [#1487](https://github.com/Ripple-TS/ripple/pull/1487)
|
|
94
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1)
|
|
95
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - `trackReadOnly(value)`
|
|
96
|
+
replaces the `readOnly()` method on tracked and derived values: it returns a
|
|
97
|
+
derived that follows a tracked or writable derived, or a read-only derived as it
|
|
98
|
+
is. The method is removed, so `count.readOnly()` becomes `trackReadOnly(count)`,
|
|
99
|
+
imported from `ripple`. Dropping the prototype methods lets a bundle that never
|
|
100
|
+
takes a read-only view leave the code out.
|
|
101
|
+
- Updated dependencies
|
|
102
|
+
[[`304ba6c`](https://github.com/Ripple-TS/ripple/commit/304ba6c2d9098752396fff6c2545e3ef2546381c),
|
|
103
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1),
|
|
104
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1),
|
|
105
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1),
|
|
106
|
+
[`1ea71f1`](https://github.com/Ripple-TS/ripple/commit/1ea71f14fcee5a976ea81e2bedf5010251eaa70c),
|
|
107
|
+
[`b4abea0`](https://github.com/Ripple-TS/ripple/commit/b4abea0ab4830eed99adf14dc95a0ef214b24af1)]:
|
|
108
|
+
- @tsrx/ripple@0.2.2
|
|
109
|
+
|
|
110
|
+
## 0.4.2
|
|
111
|
+
|
|
112
|
+
### Patch Changes
|
|
113
|
+
|
|
114
|
+
- [#1478](https://github.com/Ripple-TS/ripple/pull/1478)
|
|
115
|
+
[`1032539`](https://github.com/Ripple-TS/ripple/commit/10325392e4b1ec7fba78b8ddaf57bc5376adaab1)
|
|
116
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Faster buffered server
|
|
117
|
+
rendering. Static text and attribute values are emitted with characters above
|
|
118
|
+
U+00FF as numeric character references (raw-text elements such as `<script>`
|
|
119
|
+
excluded), so a server response stays a one-byte string whenever its dynamic
|
|
120
|
+
data is Latin-1 too: a single static em dash no longer widens the whole body to
|
|
121
|
+
two bytes per character, which halved the flatten, byte-length and UTF-8 encode
|
|
122
|
+
cost of a page. The runtime text escaper checks for `&` and `<` with two
|
|
123
|
+
single-character searches instead of a regex test.
|
|
124
|
+
|
|
125
|
+
- [#1481](https://github.com/Ripple-TS/ripple/pull/1481)
|
|
126
|
+
[`e9382ed`](https://github.com/Ripple-TS/ripple/commit/e9382ed7538779aeb8671b8e3f3fdfd3a897b85a)
|
|
127
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Cheaper text-only elements
|
|
128
|
+
and typed loop items. An element whose only child is a typed text expression
|
|
129
|
+
(`<td>{row.name}</td>`) is cloned without a placeholder text node and written
|
|
130
|
+
through the element (`set_text_content`): the first write creates the text node
|
|
131
|
+
with `textContent`, later writes update it in place, and hydration adopts the
|
|
132
|
+
server-rendered text with no cursor descent, which removes a DOM read and a text
|
|
133
|
+
node per cell from every list row. A keyed `@for` key callback reads the item
|
|
134
|
+
directly instead of unwrapping it. Type inference now follows a binding's
|
|
135
|
+
declared type through property writes (`items.value = next` no longer hides
|
|
136
|
+
`track<Row[]>()` from the loop item) and through array and tuple indexing
|
|
137
|
+
(`row.queries[0].elapsed`), so those reads lower to direct text updates in one
|
|
138
|
+
render block per row.
|
|
139
|
+
|
|
140
|
+
- [#1483](https://github.com/Ripple-TS/ripple/pull/1483)
|
|
141
|
+
[`5de359e`](https://github.com/Ripple-TS/ripple/commit/5de359e430391b0e1609795b42d26161fd5c2ff9)
|
|
142
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: a list item without a
|
|
143
|
+
tracked of its own (a plain list's item, or a local keyed item) is created
|
|
144
|
+
through a lean first run (`run_branch`) instead of the generic block runner:
|
|
145
|
+
fewer checks and no re-run bookkeeping per item.
|
|
146
|
+
|
|
147
|
+
- [#1482](https://github.com/Ripple-TS/ripple/pull/1482)
|
|
148
|
+
[`0030be0`](https://github.com/Ripple-TS/ripple/commit/0030be0aa3c7f1d2ce40500dc57ea980b69c69ec)
|
|
149
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - perf: cheaper keyed lists. A
|
|
150
|
+
`@for` or `@if` that trails template siblings appends into its parent element
|
|
151
|
+
instead of inserting before a `<!>` placeholder. A list item whose updates live
|
|
152
|
+
in one render block carries that block on the item block itself (`_$_.item`),
|
|
153
|
+
and a keyed item that only its render block reads is held as it is instead of in
|
|
154
|
+
a tracked, re-running its block directly when the key's item is replaced. Leaf
|
|
155
|
+
text is written without a DOM read, from the value the render block last wrote.
|
|
156
|
+
A keyed diff that re-lays most of its items walks the range front to back
|
|
157
|
+
instead of appending every item at the end, about half the reorder cost in
|
|
158
|
+
Chromium and far less right after a layout flush.
|
|
159
|
+
- Updated dependencies
|
|
160
|
+
[[`1032539`](https://github.com/Ripple-TS/ripple/commit/10325392e4b1ec7fba78b8ddaf57bc5376adaab1),
|
|
161
|
+
[`e9382ed`](https://github.com/Ripple-TS/ripple/commit/e9382ed7538779aeb8671b8e3f3fdfd3a897b85a),
|
|
162
|
+
[`0030be0`](https://github.com/Ripple-TS/ripple/commit/0030be0aa3c7f1d2ce40500dc57ea980b69c69ec)]:
|
|
163
|
+
- @tsrx/ripple@0.2.1
|
|
164
|
+
|
|
3
165
|
## 0.4.1
|
|
4
166
|
|
|
5
167
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
"description": "Ripple is an elegant TypeScript UI framework",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Dominic Gannaway",
|
|
6
|
-
"version": "0.4.
|
|
6
|
+
"version": "0.4.3",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"sideEffects": false,
|
|
8
9
|
"module": "src/runtime/index-client.js",
|
|
9
10
|
"main": "src/runtime/index-client.js",
|
|
10
11
|
"repository": {
|
|
@@ -54,6 +55,12 @@
|
|
|
54
55
|
"./internal/client": {
|
|
55
56
|
"default": "./src/runtime/internal/client/index.js"
|
|
56
57
|
},
|
|
58
|
+
"./internal/client/hydration-enabled": {
|
|
59
|
+
"default": "./src/runtime/internal/client/hydration-enabled.js"
|
|
60
|
+
},
|
|
61
|
+
"./internal/client/root-boundary-enabled": {
|
|
62
|
+
"default": "./src/runtime/internal/client/root-boundary-enabled.js"
|
|
63
|
+
},
|
|
57
64
|
"./internal/client-types": {
|
|
58
65
|
"types": "./src/runtime/internal/client/types.d.ts"
|
|
59
66
|
},
|
|
@@ -76,12 +83,11 @@
|
|
|
76
83
|
"#public": "./types/index.d.ts"
|
|
77
84
|
},
|
|
78
85
|
"dependencies": {
|
|
79
|
-
"clsx": "^2.1.1",
|
|
80
86
|
"csstype": "^3.2.3",
|
|
81
87
|
"devalue": "^5.9.2",
|
|
82
88
|
"esm-env": "^1.2.2",
|
|
83
89
|
"@tsrx/core": "^0.2.0",
|
|
84
|
-
"@tsrx/ripple": "0.2.
|
|
90
|
+
"@tsrx/ripple": "0.2.2"
|
|
85
91
|
},
|
|
86
92
|
"devDependencies": {
|
|
87
93
|
"@types/estree": "^1.0.8",
|
package/src/constants.js
CHANGED
|
@@ -6,6 +6,10 @@ export const IS_INDEXED = 1 << 3;
|
|
|
6
6
|
// `__anchor` (sibling semantics, no `<!>` wrapper). Distinct from IS_CONTROLLED,
|
|
7
7
|
// which renders inside a parent element.
|
|
8
8
|
export const ROOT_CONTROLLED = 1 << 4;
|
|
9
|
+
// A keyed @for whose item is read only by the render block its item block
|
|
10
|
+
// carries: items are held as they are, not in a tracked, and a replaced item
|
|
11
|
+
// re-runs its block directly (see the runtime's `item`).
|
|
12
|
+
export const LOCAL_ITEMS = 1 << 7;
|
|
9
13
|
export const TEMPLATE_SVG_NAMESPACE = 1 << 5;
|
|
10
14
|
export const TEMPLATE_MATHML_NAMESPACE = 1 << 6;
|
|
11
15
|
|
package/src/jsx-runtime.d.ts
CHANGED
|
@@ -55,7 +55,8 @@ type NullableStyleProperties<T> = { [Property in keyof T]: T[Property] | null };
|
|
|
55
55
|
|
|
56
56
|
/** JSX attributes live under Ripple so editor hovers identify their framework. */
|
|
57
57
|
declare namespace Ripple {
|
|
58
|
-
type ClassValue =
|
|
58
|
+
type ClassValue =
|
|
59
|
+
string | number | boolean | null | undefined | ClassValue[] | { [key: string]: unknown };
|
|
59
60
|
|
|
60
61
|
/** Inline CSS styles. Values keep their units; null and undefined remove a property. */
|
|
61
62
|
interface CSSProperties
|
package/src/runtime/array.js
CHANGED
|
@@ -24,7 +24,7 @@ export class RippleArray {
|
|
|
24
24
|
* @returns {RippleArray<U>}
|
|
25
25
|
*/
|
|
26
26
|
static from(arrayLike, mapFn, thisArg) {
|
|
27
|
-
return
|
|
27
|
+
return ripple_array_from(safe_scope(), arrayLike, mapFn, thisArg);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
/**
|
|
@@ -33,7 +33,7 @@ export class RippleArray {
|
|
|
33
33
|
* @returns {RippleArray<U>}
|
|
34
34
|
*/
|
|
35
35
|
static of(...items) {
|
|
36
|
-
return
|
|
36
|
+
return ripple_array_of(safe_scope(), ...items);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
/**
|
|
@@ -44,11 +44,14 @@ export class RippleArray {
|
|
|
44
44
|
* @returns {Promise<RippleArray<U>>}
|
|
45
45
|
*/
|
|
46
46
|
static async fromAsync(arrayLike, mapFn, thisArg) {
|
|
47
|
-
return
|
|
47
|
+
return ripple_array_from_async(safe_scope(), arrayLike, mapFn, thisArg);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
+
* The compiled form of `new RippleArray(...)`. Each static below is its own
|
|
53
|
+
* function so a bundle that never uses one drops it (and the proxy it would
|
|
54
|
+
* create) instead of keeping a function that carries them all.
|
|
52
55
|
* @template T
|
|
53
56
|
* @param {Block} block
|
|
54
57
|
* @param {...T} elements
|
|
@@ -59,6 +62,7 @@ export function ripple_array(block, ...elements) {
|
|
|
59
62
|
}
|
|
60
63
|
|
|
61
64
|
/**
|
|
65
|
+
* `RippleArray.from(...)`
|
|
62
66
|
* @template T
|
|
63
67
|
* @param {Block} block
|
|
64
68
|
* @param {ArrayLike<T> | Iterable<T>} arrayLike
|
|
@@ -66,23 +70,25 @@ export function ripple_array(block, ...elements) {
|
|
|
66
70
|
* @param {*} [thisArg]
|
|
67
71
|
* @returns {RippleArray<T>}
|
|
68
72
|
*/
|
|
69
|
-
|
|
73
|
+
export function ripple_array_from(block, arrayLike, mapFn, thisArg) {
|
|
70
74
|
var elements = mapFn ? Array.from(arrayLike, mapFn, thisArg) : Array.from(arrayLike);
|
|
71
75
|
return array_proxy({ elements, block, from_static: true });
|
|
72
|
-
}
|
|
76
|
+
}
|
|
73
77
|
|
|
74
78
|
/**
|
|
79
|
+
* `RippleArray.of(...)`
|
|
75
80
|
* @template T
|
|
76
81
|
* @param {Block} block
|
|
77
82
|
* @param {...T} items
|
|
78
83
|
* @returns {RippleArray<T>}
|
|
79
84
|
*/
|
|
80
|
-
|
|
85
|
+
export function ripple_array_of(block, ...items) {
|
|
81
86
|
var elements = Array.of(...items);
|
|
82
87
|
return array_proxy({ elements, block, from_static: true });
|
|
83
|
-
}
|
|
88
|
+
}
|
|
84
89
|
|
|
85
90
|
/**
|
|
91
|
+
* `RippleArray.fromAsync(...)`
|
|
86
92
|
* @template T
|
|
87
93
|
* @param {Block} block
|
|
88
94
|
* @param {ArrayLike<T> | Iterable<T>} arrayLike
|
|
@@ -90,9 +96,9 @@ ripple_array.of = function (block, ...items) {
|
|
|
90
96
|
* @param {any} [thisArg]
|
|
91
97
|
* @returns {Promise<RippleArray<T>>}
|
|
92
98
|
*/
|
|
93
|
-
|
|
99
|
+
export async function ripple_array_from_async(block, arrayLike, mapFn, thisArg) {
|
|
94
100
|
var elements = mapFn
|
|
95
101
|
? await Array.fromAsync(arrayLike, mapFn, thisArg)
|
|
96
102
|
: await Array.fromAsync(arrayLike);
|
|
97
103
|
return array_proxy({ elements, block, from_static: true });
|
|
98
|
-
}
|
|
104
|
+
}
|
|
@@ -6,6 +6,9 @@ import { init_operations } from './internal/client/operations.js';
|
|
|
6
6
|
import { render_component } from './internal/client/component.js';
|
|
7
7
|
import { try_block } from './internal/client/try.js';
|
|
8
8
|
import { remove_styles } from './internal/client/css.js';
|
|
9
|
+
import { install_hydration } from './internal/client/hydrate.js';
|
|
10
|
+
import { hydration_disabled, root_boundary_disabled } from './internal/client/errors.js';
|
|
11
|
+
import { ROOT_BOUNDARY } from 'ripple/internal/client/root-boundary-enabled';
|
|
9
12
|
import { normalize_children } from './element.js';
|
|
10
13
|
import {
|
|
11
14
|
hydrate_next,
|
|
@@ -82,8 +85,10 @@ export function mount(component, options) {
|
|
|
82
85
|
// Requesting a frame otherwise makes the browser attach layout to the
|
|
83
86
|
// mounted tree before the app's next update, which slows a teardown that
|
|
84
87
|
// would have preceded the first paint.
|
|
85
|
-
if (
|
|
86
|
-
|
|
88
|
+
if (HYDRATION) {
|
|
89
|
+
if (document.querySelector('style[data-ripple-ssr]') !== null) {
|
|
90
|
+
requestAnimationFrame(remove_styles);
|
|
91
|
+
}
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
let props = options.props ?? {};
|
|
@@ -100,15 +105,18 @@ export function mount(component, options) {
|
|
|
100
105
|
// The app appends into the emptied target; a root that keeps inserting
|
|
101
106
|
// relative to its anchor materializes one (see `resolve_anchor`).
|
|
102
107
|
/** @type {AppendIntoAnchor} */
|
|
103
|
-
const anchor = { parent: target, into: true };
|
|
108
|
+
const anchor = { parent: target, into: true, tail: false };
|
|
104
109
|
|
|
105
110
|
/** @type {import('./internal/client/events.js').RootTargetRef | null} */
|
|
106
111
|
let events_ref = handle_root_events(target);
|
|
107
112
|
|
|
108
113
|
const root_boundary = options.rootBoundary;
|
|
114
|
+
if (!ROOT_BOUNDARY && root_boundary != null && root_boundary !== false) {
|
|
115
|
+
root_boundary_disabled();
|
|
116
|
+
}
|
|
109
117
|
|
|
110
118
|
const _root = root(() => {
|
|
111
|
-
if (root_boundary === false) {
|
|
119
|
+
if (!ROOT_BOUNDARY || root_boundary === false) {
|
|
112
120
|
render_component(component, anchor, props);
|
|
113
121
|
return;
|
|
114
122
|
}
|
|
@@ -144,7 +152,11 @@ export function mount(component, options) {
|
|
|
144
152
|
* @returns {() => void}
|
|
145
153
|
*/
|
|
146
154
|
export function hydrate(component, options) {
|
|
155
|
+
if (!HYDRATION) {
|
|
156
|
+
hydration_disabled();
|
|
157
|
+
}
|
|
147
158
|
init_operations();
|
|
159
|
+
install_hydration();
|
|
148
160
|
requestAnimationFrame(remove_styles);
|
|
149
161
|
|
|
150
162
|
let props = options.props ?? {};
|
|
@@ -152,7 +164,7 @@ export function hydrate(component, options) {
|
|
|
152
164
|
props = normalize_props(props);
|
|
153
165
|
}
|
|
154
166
|
const target = options.target;
|
|
155
|
-
const was_hydrating = hydrating;
|
|
167
|
+
const was_hydrating = HYDRATION && hydrating;
|
|
156
168
|
const previous_hydrate_node = hydrate_node;
|
|
157
169
|
let anchor = target.firstChild;
|
|
158
170
|
|
|
@@ -176,9 +188,12 @@ export function hydrate(component, options) {
|
|
|
176
188
|
|
|
177
189
|
const root_boundary = options.rootBoundary;
|
|
178
190
|
const marker = /** @type {Comment} */ (anchor);
|
|
191
|
+
if (!ROOT_BOUNDARY && root_boundary != null && root_boundary !== false) {
|
|
192
|
+
root_boundary_disabled();
|
|
193
|
+
}
|
|
179
194
|
|
|
180
195
|
_root = root(() => {
|
|
181
|
-
if (root_boundary === false && marker.data === HYDRATION_START) {
|
|
196
|
+
if ((!ROOT_BOUNDARY || root_boundary === false) && marker.data === HYDRATION_START) {
|
|
182
197
|
// The root boundary's own hydration walk: consume the `<!--[-->`
|
|
183
198
|
// marker and render against it, as `try_block` does for the root.
|
|
184
199
|
hydrate_next();
|
|
@@ -215,13 +230,15 @@ export { Context } from './internal/client/context.js';
|
|
|
215
230
|
export {
|
|
216
231
|
flush_sync as flushSync,
|
|
217
232
|
track,
|
|
218
|
-
|
|
233
|
+
track_read_only as trackReadOnly,
|
|
219
234
|
untrack,
|
|
220
235
|
tick,
|
|
221
236
|
is_tracked_pending as trackPending,
|
|
222
237
|
peek_tracked as peek,
|
|
223
238
|
} from './internal/client/runtime.js';
|
|
224
239
|
|
|
240
|
+
export { track_async as trackAsync } from './internal/client/track-async.js';
|
|
241
|
+
|
|
225
242
|
export { snapshot } from './proxy.js';
|
|
226
243
|
|
|
227
244
|
export { RippleArray } from './array.js';
|
|
@@ -271,3 +288,4 @@ export {
|
|
|
271
288
|
bindOffsetWidth,
|
|
272
289
|
bindOffsetHeight,
|
|
273
290
|
} from './internal/client/bindings.js';
|
|
291
|
+
import { HYDRATION } from 'ripple/internal/client/hydration-enabled';
|