Skip to content

Commit d07030c

Browse files
committedMay 4, 2024
WIP
1 parent 92d75f3 commit d07030c

31 files changed

+5382
-12
lines changed
 

‎gems.rb

+3
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@
2020

2121
gem "bake-test"
2222
gem "bake-test-external"
23+
24+
gem "sus-fixtures-async-http"
25+
gem "sus-fixtures-async-webdriver"
2326
end
File renamed without changes.

‎lib/live/element.rb

+11-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,19 @@ def initialize(id, **data)
2323

2424
# Generate a JavaScript string which forwards the specified event to the server.
2525
# @parameter details [Hash] The details associated with the forwarded event.
26-
def forward(details = nil)
26+
def forward_event(details = nil)
2727
if details
28-
"live.forward(#{JSON.dump(@id)}, event, #{JSON.dump(details)})"
28+
"live.forwardEvent(#{JSON.dump(@id)}, event, #{JSON.dump(details)})"
2929
else
30-
"live.forward(#{JSON.dump(@id)}, event)"
30+
"live.forwardEvent(#{JSON.dump(@id)}, event)"
31+
end
32+
end
33+
34+
def forward_form_event(details = nil)
35+
if details
36+
"live.forwardFormEvent(#{JSON.dump(@id)}, event, #{JSON.dump(details)})"
37+
else
38+
"live.forwardFormEvent(#{JSON.dump(@id)}, event)"
3139
end
3240
end
3341

‎lib/live/view.rb

+28-9
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,40 @@
99
module Live
1010
# Represents a single division of content on the page an provides helpers for rendering the content.
1111
class View < Element
12+
# Update the content of the client-side element by rendering this view.
13+
def update!(**options)
14+
rpc(:update, [@id, self.to_html, options])
15+
end
16+
1217
# Replace the content of the client-side element by rendering this view.
13-
def replace!
14-
rpc(:replace, [@id, self.to_html])
18+
# @parameter selector [String] The CSS selector to replace.
19+
# @parameter node [String] The HTML to replace.
20+
def replace(selector, node, **options)
21+
rpc(:replace, [selector, node.to_s, options])
22+
end
23+
24+
# Prepend to the content of the client-side element by appending the specified element.
25+
# @parameter selector [String] The CSS selector to prepend to.
26+
# @parameter node [String] The HTML to prepend.
27+
def prepend(selector, node, **options)
28+
rpc(:prepend, [selector, node.to_s, options])
1529
end
1630

1731
# Append to the content of the client-side element by appending the specified element.
18-
# @parameter node [Live::Element] The element to append.
19-
def append!(element)
20-
rpc(:append, [@id, element.to_html])
32+
# @parameter selector [String] The CSS selector to append to.
33+
# @parameter node [String] The HTML to prepend.
34+
def append(selector, node, **options)
35+
rpc(:append, [selector, node.to_s, options])
2136
end
2237

23-
# Prepend to the content of the client-side element by appending the specified element.
24-
# @parameter node [Live::Element] The element to prepend.
25-
def prepend!(element)
26-
rpc(:prepend, [@id, element.to_html])
38+
# Remove the specified element from the client-side element.
39+
# @parameter selector [String] The CSS selector to remove.
40+
def remove(selector, **options)
41+
rpc(:remove, [selector, options])
42+
end
43+
44+
def dispatch_event(selector, type, **options)
45+
rpc(:dispatch_event, [selector, event, options])
2746
end
2847

2948
# Render the element.

‎test/live/.website/index.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Live Test</title>
5+
<script type="importmap">
6+
{
7+
"imports": {
8+
"live": "/node_modules/@socketry/live/Live.js",
9+
"morphdom": "/node_modules/morphdom/dist/morphdom-esm.js"
10+
}
11+
}
12+
</script>
13+
</head>
14+
<body>
15+
<div class="live" id="test" data-class="TestTag"></div>
16+
<script type="module">
17+
import {Live} from 'live';
18+
// Use the Live module here
19+
let live = Live.start();
20+
</script>
21+
</body>
22+
</html>

‎test/live/.website/node_modules/.package-lock.json

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/live/.website/node_modules/@socketry/live/Live.js

+214
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/live/.website/node_modules/@socketry/live/package.json

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)