Skip to content

Commit 622aeaf

Browse files
authored
Add observed attributes generator (#8)
Support observedAttributes with the generator.
1 parent cf574dd commit 622aeaf

File tree

5 files changed

+47
-7
lines changed

5 files changed

+47
-7
lines changed

Gemfile

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ gemspec
66

77
gem "importmap-rails"
88
gem "propshaft"
9-
109
gem "puma"
11-
1210
gem "sqlite3", "~> 1.4"
13-
14-
# Start debugger with binding.b [https://github.com/ruby/debug]
15-
# gem "debug", ">= 1.0.0"
11+
gem "debug", ">= 1.0.0"
1612
gem "capybara"
1713
gem "selenium-webdriver"

Gemfile.lock

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ GEM
103103
connection_pool (2.4.1)
104104
crass (1.0.6)
105105
date (3.3.4)
106+
debug (1.9.2)
107+
irb (~> 1.10)
108+
reline (>= 0.3.8)
106109
drb (2.2.1)
107110
erubi (1.12.0)
108111
globalid (1.2.1)
@@ -229,6 +232,7 @@ DEPENDENCIES
229232
appraisal
230233
capybara
231234
custom_elements-rails!
235+
debug (>= 1.0.0)
232236
importmap-rails
233237
propshaft
234238
puma

README.md

+31-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Your `*_element.js` files have to `export default` custom elements for this to w
5252
> [!WARNING]
5353
> Only single word elements are supported currently. See https://github.com/codergeek121/custom_elements-rails/issues/1
5454
55-
## Add a custom element
55+
## Add a custom element with the built-in generator
5656

5757
This gem adds a generator to generate new custom elements with:
5858

@@ -73,11 +73,40 @@ export default class extends HTMLElement {
7373
console.log("test_element.js")
7474
}
7575
}
76-
7776
```
7877

7978
which in turn will register a `<app-test></app-test>` custom element automatically in your app.
8079

80+
```bash
81+
$ rails generate custom_element test
82+
```
83+
84+
To observe changes in your custom element's attributes, you need to set a static array of attribute names. The generator also supports setting those automatically:
85+
86+
```bash
87+
$ rails generate custom_element test attribute1
88+
```
89+
90+
will generate
91+
92+
```javascript
93+
export default class extends HTMLElement {
94+
static observedAttributes = ["attribute1"]
95+
96+
constructor() {
97+
super()
98+
}
99+
100+
connectedCallback() {
101+
console.log("test_element.js")
102+
}
103+
104+
get attribute1() {
105+
return this.getAttribute("attribute1")
106+
}
107+
}
108+
```
109+
81110
## Documentation
82111

83112
`eagerDefineCustomElementsFrom(under, options)`

lib/generators/custom_element_generator.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
class CustomElementGenerator < Rails::Generators::NamedBase
22
source_root File.expand_path("templates", __dir__)
33

4+
argument :attributes, type: :array, default: [], banner: "Observed attributes"
5+
46
def copy_custom_element
57
template "custom_element.js", "app/javascript/custom_elements/#{file_name}_element.js"
68
end
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
export default class extends HTMLElement {
2+
<% if attributes.any? %>
3+
static observedAttributes = <%= attributes.map { _1.name } %>
4+
<% end %>
25
constructor() {
36
super()
47
}
58

69
connectedCallback() {
710
console.log("<%= file_name %>")
811
}
12+
<% attributes.each do |attribute| -%>
13+
14+
get <%= attribute.name %>() {
15+
return this.getAttribute("<%= attribute.name %>")
16+
}
17+
<% end -%>
918
}

0 commit comments

Comments
 (0)