Skip to content

Commit 1adf5de

Browse files
committedFeb 27, 2024
Make work again
1 parent 054cdbe commit 1adf5de

File tree

13 files changed

+75
-14
lines changed

13 files changed

+75
-14
lines changed
 

‎lib/components_guide/wasm/examples/calendar/calendar_grid.ex

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ defmodule ComponentsGuide.Wasm.Examples.Calendar.Grid do
22
# Displays an HTML calendar grid for a given year and month.
33
# Uses Elixir’s Date, Date.Range, Calendar.ISO to grab all the data for each year.
44

5-
for year <- 1970..2100 do
6-
7-
end
5+
# for year <- 1970..2100 do
6+
# year_days = if Date.leap_year?(year), do: 366, else: 365
7+
# for year_day <- 1..year_days do
88

9+
# end
10+
# end
911

1012
# testw "leap_year?" do
1113
# assert call(:leap_year?, 2000) = Calendar.ISO.leap_year?(2000)

‎lib/components_guide/wasm/examples/color_picker/lab_swatch.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ defmodule ComponentsGuide.Wasm.Examples.LabSwatch do
4848
# @last_changed_component = @component_l
4949
# end
5050

51-
wasm F32 do
51+
Orb.__append_body F32 do
5252
ColorConversion.funcp()
5353

5454
func l_changed(new_value: F32) do

‎lib/components_guide/wasm/examples/examples.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ defmodule ComponentsGuide.Wasm.Examples do
2727

2828
# Check equality to each weekday as a i32 e.g. `Mon\0`
2929
inline for {day_i32!, index!} <- Enum.with_index(@weekdays_i32, 1) do
30-
Orb.__append_body do
30+
wasm do
3131
if I32.eq(i, day_i32!), do: return(index!)
3232
end
3333
end
@@ -83,7 +83,7 @@ defmodule ComponentsGuide.Wasm.Examples do
8383
@chunk2 = inline(do: @strings.charset_utf8.offset)
8484
end
8585

86-
func Orb.__append_body() do
86+
func wasm do
8787
@chunk1 = inline(do: @strings.application_wasm.offset)
8888
@chunk2 = 0x0
8989
end

‎lib/components_guide/wasm/examples/examples_format.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ defmodule ComponentsGuide.Wasm.Examples.Format do
7070

7171
Memory.pages(2)
7272

73-
wasm F32 do
73+
Orb.__append_body F32 do
7474
func format_f32(value: F32, str_ptr: I32.U8.UnsafePointer, precision: I32),
7575
digit: I32 do
7676
# TODO: handle -0

‎lib/components_guide/wasm/examples/examples_html.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ defmodule ComponentsGuide.Wasm.Examples.HTML do
4242
quote do
4343
import unquote(__MODULE__)
4444

45-
Orb.Orb.__append_body do
45+
Orb.__append_body do
4646
unquote(__MODULE__).funcp()
4747
end
4848
end
@@ -78,10 +78,10 @@ defmodule ComponentsGuide.Wasm.Examples.HTML do
7878
read_offset = read_offset + 1
7979

8080
inline for {char_to_match!, chars_out!} <- @escaped_html_table do
81-
Orb.__append_body do
81+
wasm do
8282
if I32.eq(char, char_to_match!) do
8383
inline for char_out! <- chars_out! do
84-
Orb.__append_body do
84+
wasm do
8585
write_offset[at!: bytes_written] = char_out!
8686
bytes_written = bytes_written + 1
8787
end

‎lib/components_guide/wasm/examples/string_builder.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ defmodule ComponentsGuide.Wasm.Examples.StringBuilder do
2727

2828
I32.global(bump_write_level: 0)
2929

30-
Orb.Orb.__append_body do
30+
Orb.__append_body do
3131
unquote(__MODULE__).funcp()
3232
end
3333
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
defmodule ComponentsGuide.Wasm.Examples.TemperatureConverter do
2+
use Orb
3+
4+
global do
5+
6+
end
7+
end

‎lib/components_guide/wasm/examples/url_encoded.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule ComponentsGuide.Wasm.Examples.URLEncoded do
2121

2222
import unquote(__MODULE__)
2323

24-
Orb.Orb.__append_body do
24+
Orb.__append_body do
2525
unquote(__MODULE__).funcp()
2626
end
2727
end

‎lib/components_guide_web/controllers/wasm_controller.ex

+6
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ defmodule ComponentsGuideWeb.WasmController do
6464
render(conn, :index, assigns)
6565
end
6666

67+
@articles ["custom_elements"]
68+
69+
def show(conn, %{"id" => article}) when article in @articles do
70+
render(conn, article <> ".html")
71+
end
72+
6773
def module(conn, %{"module" => name}) when is_map_key(@modules, name) do
6874
mod = @modules[name]
6975

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# WebAssembly Custom Elements
2+
3+
## MemoryIO
4+
5+
```js
6+
const utf8Encoder = new TextEncoder();
7+
const utf8Decoder = new TextDecoder();
8+
9+
export class MemoryIO {
10+
constructor(exports) {
11+
this.memoryBytes = new Uint8Array(exports.memory.buffer);
12+
this.alloc = exports.alloc;
13+
}
14+
15+
readString(ptr) {
16+
const { memoryBytes } = this;
17+
18+
// Search for null-terminating byte.
19+
const endPtr = memoryBytes.indexOf(0, ptr);
20+
// Get subsection of memory between start and end, and decode it as UTF-8.
21+
return utf8Decoder.decode(memoryBytes.subarray(ptr, endPtr));
22+
}
23+
24+
writeStringAt(stringValue, memoryOffset) {
25+
const { memoryBytes } = this;
26+
27+
stringValue = stringValue.toString();
28+
const bytes = utf8Encoder.encode(stringValue);
29+
utf8Encoder.encodeInto(stringValue, memoryBytes.subarray(memoryOffset));
30+
memoryBytes[memoryOffset + bytes.length] = 0x0;
31+
return bytes.byteLength;
32+
}
33+
34+
writeString(stringValue) {
35+
const { memoryBytes, alloc } = this;
36+
37+
stringValue = stringValue.toString();
38+
const bytes = utf8Encoder.encode(stringValue);
39+
const strPtr = alloc(bytes.length + 1);
40+
utf8Encoder.encodeInto(stringValue, memoryBytes.subarray(strPtr));
41+
memoryBytes[strPtr + bytes.length] = 0x0;
42+
return Object.freeze([strPtr, bytes.byteLength]);
43+
}
44+
}
45+
```

‎lib/components_guide_web/router.ex

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ defmodule ComponentsGuideWeb.Router do
9999
get("/calendar", CalendarController, :index)
100100

101101
get("/wasm", WasmController, :index)
102+
get("/wasm/:id", WasmController, :show)
102103
get("/wasm/module/:module", WasmController, :module)
103104
live("/wasm/http-server", WasmHTTPServerLive)
104105

‎mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ defmodule ComponentsGuide.MixProject do
6868
{:redix, "~> 1.1"},
6969
{:benchee, "~> 1.0", only: :dev},
7070
{:orb, "~> 0.0.31"},
71-
{:silver_orb, "~> 0.0.5"},
71+
{:silver_orb, "~> 0.0.6"},
7272
# {:orb, path: "../../Collected/orb", override: true},
7373
# {:silver_orb, path: "../../Collected/silver_orb", override: true},
7474
# {:wasmex, "~> 0.8.3"},

‎mix.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"redix": {:hex, :redix, "1.2.3", "3036e7c6080c42e1bbaa9168d1e28e367b01e8960a640a899b8ef8067273cb5e", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:nimble_options, "~> 0.5.0 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "14e2bca8a03fad297a78a3d201032df260ee5f0e0ef9c173c0f9ca5b3e0331b7"},
5353
"rustler": {:hex, :rustler, "0.29.1", "880f20ae3027bd7945def6cea767f5257bc926f33ff50c0d5d5a5315883c084d", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:toml, "~> 0.6", [hex: :toml, repo: "hexpm", optional: false]}], "hexpm", "109497d701861bfcd26eb8f5801fe327a8eef304f56a5b63ef61151ff44ac9b6"},
5454
"rustler_precompiled": {:hex, :rustler_precompiled, "0.6.2", "d2218ba08a43fa331957f30481d00b666664d7e3861431b02bd3f4f30eec8e5b", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:rustler, "~> 0.23", [hex: :rustler, repo: "hexpm", optional: true]}], "hexpm", "b9048eaed8d7d14a53f758c91865cc616608a438d2595f621f6a4b32a5511709"},
55-
"silver_orb": {:hex, :silver_orb, "0.0.5", "285542457ecb0256e241b706ff7f4c31c6688172c90f76ca8606f65feb1d4bd1", [:mix], [{:orb, "~> 0.0.26", [hex: :orb, repo: "hexpm", optional: false]}], "hexpm", "c0d69a70981497016ebc3d80c09bc3dec0976ecf2f12c68b8b1c650a286cbeef"},
55+
"silver_orb": {:hex, :silver_orb, "0.0.6", "de75fd44b5a9a598676cc62bcfaf286aa7da4009d5beede18aa0dca6963e9c2c", [:mix], [{:orb, "~> 0.0.33", [hex: :orb, repo: "hexpm", optional: false]}], "hexpm", "eb5a69b6c1b3c498bb0512161b61abd949157b448da78aefdd0cbc9d880edea7"},
5656
"sleeplocks": {:hex, :sleeplocks, "1.1.2", "d45aa1c5513da48c888715e3381211c859af34bee9b8290490e10c90bb6ff0ca", [:rebar3], [], "hexpm", "9fe5d048c5b781d6305c1a3a0f40bb3dfc06f49bf40571f3d2d0c57eaa7f59a5"},
5757
"statistex": {:hex, :statistex, "1.0.0", "f3dc93f3c0c6c92e5f291704cf62b99b553253d7969e9a5fa713e5481cd858a5", [:mix], [], "hexpm", "ff9d8bee7035028ab4742ff52fc80a2aa35cece833cf5319009b52f1b5a86c27"},
5858
"tailwind": {:hex, :tailwind, "0.2.1", "83d8eadbe71a8e8f67861fe7f8d51658ecfb258387123afe4d9dc194eddc36b0", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "e8a13f6107c95f73e58ed1b4221744e1eb5a093cd1da244432067e19c8c9a277"},

0 commit comments

Comments
 (0)