proscenium 0.19.0.beta6 → 0.19.0.beta7
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.
- checksums.yaml +4 -4
- data/README.md +3 -26
- data/lib/proscenium/builder.rb +11 -35
- data/lib/proscenium/bundled_gems.rb +37 -0
- data/lib/proscenium/css_module/transformer.rb +1 -1
- data/lib/proscenium/ext/proscenium +0 -0
- data/lib/proscenium/ext/proscenium.h +1 -7
- data/lib/proscenium/helper.rb +3 -9
- data/lib/proscenium/importer.rb +13 -11
- data/lib/proscenium/log_subscriber.rb +0 -12
- data/lib/proscenium/middleware/base.rb +10 -8
- data/lib/proscenium/middleware/esbuild.rb +1 -6
- data/lib/proscenium/middleware/ruby_gems.rb +23 -0
- data/lib/proscenium/middleware.rb +26 -22
- data/lib/proscenium/monkey.rb +3 -5
- data/lib/proscenium/phlex/asset_inclusions.rb +0 -1
- data/lib/proscenium/railtie.rb +0 -27
- data/lib/proscenium/registry/bundled_package.rb +29 -0
- data/lib/proscenium/registry/package.rb +95 -0
- data/lib/proscenium/registry/ruby_gem_package.rb +28 -0
- data/lib/proscenium/registry.rb +29 -0
- data/lib/proscenium/resolver.rb +23 -18
- data/lib/proscenium/ruby_gems.rb +67 -0
- data/lib/proscenium/side_load.rb +20 -63
- data/lib/proscenium/ui/flash/bun.lock +19 -0
- data/lib/proscenium/ui/flash/index.js +6 -2
- data/lib/proscenium/ui/flash/node_modules/dom-mutations/index.d.ts +33 -0
- data/lib/proscenium/ui/flash/node_modules/dom-mutations/index.js +44 -0
- data/lib/proscenium/ui/flash/node_modules/dom-mutations/license +9 -0
- data/lib/proscenium/ui/flash/node_modules/dom-mutations/package.json +59 -0
- data/lib/proscenium/ui/flash/node_modules/dom-mutations/readme.md +125 -0
- data/lib/proscenium/ui/flash/node_modules/sourdough-toast/LICENSE +20 -0
- data/lib/proscenium/ui/flash/node_modules/sourdough-toast/README.md +11 -0
- data/lib/proscenium/ui/flash/node_modules/sourdough-toast/package.json +44 -0
- data/lib/proscenium/ui/flash/node_modules/sourdough-toast/src/sourdough-toast.css +697 -0
- data/lib/proscenium/ui/flash/node_modules/sourdough-toast/src/sourdough-toast.js +537 -0
- data/lib/proscenium/ui/flash/package.json +11 -0
- data/lib/proscenium/ui/react-manager/index.jsx +3 -22
- data/lib/proscenium/ui/ujs/index.js +1 -1
- data/lib/proscenium/version.rb +1 -1
- data/lib/proscenium.rb +3 -4
- metadata +21 -3
- data/lib/proscenium/middleware/engines.rb +0 -41
@@ -0,0 +1,125 @@
|
|
1
|
+
# dom-mutations
|
2
|
+
|
3
|
+
> Observe changes to the DOM using an async iterable — A nicer API for [MutationObserver](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver)
|
4
|
+
|
5
|
+
This package only works in the browser.
|
6
|
+
|
7
|
+
## Install
|
8
|
+
|
9
|
+
```sh
|
10
|
+
npm install dom-mutations
|
11
|
+
```
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
```js
|
16
|
+
import domMutations from 'dom-mutations';
|
17
|
+
|
18
|
+
const target = document.querySelector('#unicorn');
|
19
|
+
|
20
|
+
for await (const mutation of domMutations(target, {childList: true})) {
|
21
|
+
console.log('Mutation:', mutation);
|
22
|
+
}
|
23
|
+
```
|
24
|
+
|
25
|
+
## API
|
26
|
+
|
27
|
+
### domMutations(target, options?) <sup>(default export)</sup>
|
28
|
+
|
29
|
+
Accepts the same arguments as [`MutationObserver#observe()`](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/observe#parameters) with an additional optional [`signal`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal) option to abort the observation. If the signal is triggered, the async iterable throws an [abort error](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort).
|
30
|
+
|
31
|
+
Returns an [`AsyncIterable`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols) that yields [`MutationRecord`](https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord) objects representing individual mutations.
|
32
|
+
|
33
|
+
### batchedDomMutations(target, options?) <sup>(named export)</sup>
|
34
|
+
|
35
|
+
Similar to `domMutations()`, but yields batches of [`MutationRecord`](https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord) objects, each batch representing a group of mutations captured together. This method is less convenient, but can be useful in some cases when you need to handle mutations together as a group.
|
36
|
+
|
37
|
+
```js
|
38
|
+
import {batchedDomMutations} from 'dom-mutations';
|
39
|
+
|
40
|
+
const target = document.querySelector('#unicorn');
|
41
|
+
|
42
|
+
for await (const mutations of batchedDomMutations(target, {childList: true})) {
|
43
|
+
console.log('Batch of mutations:', mutations);
|
44
|
+
}
|
45
|
+
```
|
46
|
+
|
47
|
+
## FAQ
|
48
|
+
|
49
|
+
### How do I stop the iteration?
|
50
|
+
|
51
|
+
Simply `return` or `break` in the loop body.
|
52
|
+
|
53
|
+
### How do I stop the iteration from the outside?
|
54
|
+
|
55
|
+
**Triggering the iterator to return**
|
56
|
+
|
57
|
+
```js
|
58
|
+
import domMutations from 'dom-mutations';
|
59
|
+
|
60
|
+
const target = document.querySelector('#unicorn');
|
61
|
+
|
62
|
+
const mutationIterator = domMutations(target, {childList: true})[Symbol.asyncIterator]();
|
63
|
+
|
64
|
+
(async () => {
|
65
|
+
for await (const mutation of mutationIterator) {
|
66
|
+
console.log('Mutation:', mutation);
|
67
|
+
}
|
68
|
+
})();
|
69
|
+
|
70
|
+
setTimeout(() => {
|
71
|
+
mutationIterator.return();
|
72
|
+
}, 10000);
|
73
|
+
```
|
74
|
+
|
75
|
+
**Using a variable**
|
76
|
+
|
77
|
+
This has the downside of not ending the iteration until the next mutation.
|
78
|
+
|
79
|
+
```js
|
80
|
+
import domMutations from 'dom-mutations';
|
81
|
+
|
82
|
+
const target = document.querySelector('#unicorn');
|
83
|
+
|
84
|
+
let shouldStop = false;
|
85
|
+
|
86
|
+
(async () => {
|
87
|
+
for await (const mutation of domMutations(target, {childList: true})) {
|
88
|
+
if (shouldStop) {
|
89
|
+
break;
|
90
|
+
}
|
91
|
+
|
92
|
+
console.log('Mutation:', mutation);
|
93
|
+
}
|
94
|
+
})();
|
95
|
+
|
96
|
+
setTimeout(() => {
|
97
|
+
shouldStop = true;
|
98
|
+
}, 10000);
|
99
|
+
```
|
100
|
+
|
101
|
+
**Using [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController)**
|
102
|
+
|
103
|
+
Unlike the above approaches, this will make the iterable throw an [abort error](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort).
|
104
|
+
|
105
|
+
```js
|
106
|
+
import domMutations from 'dom-mutations';
|
107
|
+
|
108
|
+
const target = document.querySelector('#unicorn');
|
109
|
+
const controller = new AbortController();
|
110
|
+
const {signal} = controller;
|
111
|
+
|
112
|
+
(async () => {
|
113
|
+
for await (const mutation of domMutations(target, {childList: true, signal})) {
|
114
|
+
console.log('Mutation:', mutation);
|
115
|
+
}
|
116
|
+
})();
|
117
|
+
|
118
|
+
setTimeout(() => {
|
119
|
+
controller.abort();
|
120
|
+
}, 10000);
|
121
|
+
```
|
122
|
+
|
123
|
+
## Related
|
124
|
+
|
125
|
+
- [request-animation-frames](https://github.com/sindresorhus/request-animation-frames) - Use `requestAnimationFrame` as an async iterable, in any JavaScript environment
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright Mikkel Malmberg
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<img src="example/toast.png" alt="Toast" width="120" />
|
2
|
+
|
3
|
+
# sourdough-toast
|
4
|
+
|
5
|
+
A plain JavaScript toast notification library inspired by [Sonner](https://sonner.emilkowal.ski).
|
6
|
+
|
7
|
+
[Demo and usage](https://sourdough-toast.vercel.app/example)
|
8
|
+
|
9
|
+
## License
|
10
|
+
|
11
|
+
MIT
|
@@ -0,0 +1,44 @@
|
|
1
|
+
{
|
2
|
+
"name": "sourdough-toast",
|
3
|
+
"version": "0.1.0",
|
4
|
+
"description": "Delicious Sourdough Toast",
|
5
|
+
"main": "src/sourdough-toast.js",
|
6
|
+
"files": [
|
7
|
+
"src"
|
8
|
+
],
|
9
|
+
"scripts": {
|
10
|
+
"build": "npm run css",
|
11
|
+
"start": "serve",
|
12
|
+
"dev": "five-server --open=false & npm run css:watch",
|
13
|
+
"css": "tailwindcss -i example/example.css -o example/example.compiled.css",
|
14
|
+
"css:watch": "npm run css -- -w",
|
15
|
+
"test": "playwright test",
|
16
|
+
"test:serve": "serve -l 3030"
|
17
|
+
},
|
18
|
+
"keywords": [],
|
19
|
+
"author": "Mikkel Malmberg (@mikker)",
|
20
|
+
"license": "MIT",
|
21
|
+
"devDependencies": {
|
22
|
+
"@playwright/test": "^1.42.1",
|
23
|
+
"@tailwindcss/cli": "^4.0.0-alpha.9",
|
24
|
+
"five-server": "^0.3.2",
|
25
|
+
"prettier": "^3.2.5",
|
26
|
+
"prettier-plugin-tailwindcss": "^0.5.12",
|
27
|
+
"serve": "^14.2.1",
|
28
|
+
"tailwindcss": "^4.0.0-alpha.9"
|
29
|
+
},
|
30
|
+
"repository": {
|
31
|
+
"type": "git",
|
32
|
+
"url": "git+https://github.com/mikker/sourdough-toast.git"
|
33
|
+
},
|
34
|
+
"bugs": {
|
35
|
+
"url": "https://github.com/mikker/sourdough-toast/issues"
|
36
|
+
},
|
37
|
+
"homepage": "https://github.com/mikker/sourdough-toast#readme",
|
38
|
+
"dependencies": {},
|
39
|
+
"prettier": {
|
40
|
+
"plugins": [
|
41
|
+
"prettier-plugin-tailwindcss"
|
42
|
+
]
|
43
|
+
}
|
44
|
+
}
|