You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+46-32
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,25 @@
4
4
5
5
This gem adds a simple way to automatically register custom elements in your `importmap-rails` app. No build step required!
6
6
7
+
## Table of Contents
8
+
9
+
<details>
10
+
<summary>Click to expand</summary>
11
+
12
+
-[Rails support](#rails-support)
13
+
-[Installation](#installation)
14
+
-[Generators](#generators)
15
+
-[Documentation](#documentation)
16
+
-[Contributing](#contributing)
17
+
-[License](#license)
18
+
19
+
</details>
20
+
21
+
## Rails support
22
+
23
+
* Supports Rails 7.0, 7.1, 7.2 & 8.0
24
+
* Supports `importmap-rails` 1 and 2
25
+
7
26
## Installation
8
27
9
28
Add this line to your application's Gemfile:
@@ -14,74 +33,67 @@ gem "custom_elements-rails"
14
33
15
34
Install the gem:
16
35
17
-
```bash
36
+
```console
18
37
$ bundle install
19
38
```
20
39
21
40
Run the initial setup:
22
41
23
-
```bash
42
+
```console
24
43
$ rails custom_elements:install
25
44
```
26
45
27
46
This will setup and edit add the following files:
28
47
29
-
```
48
+
```graphql
30
49
app/javascript
31
50
├── application.js
32
51
└── custom_elements
33
52
├── hello_element.js
34
53
└── index.js
35
54
```
36
55
37
-
The `<app-hello>` custom element can be used in the views now.
56
+
The `<app-hello>` custom element can be used in views now.
38
57
39
-
You can generate a new custom element with `rails g custom_element abc`.
58
+
You can generate a new custom element `<app-demo>`with `rails generate custom_element demo`.
40
59
41
-
## How it works
60
+
###How It Works
42
61
43
-
The setup will add a JS function call `eagerDefineCustomElementsFrom` that parses the importmap rendered by the `importmap-rails` gem.
44
-
It registers custom elements with `customElements.define(...)` in the browser's registry based on the filenames in the `custom_elements` folder automatically.
62
+
The `custom_elements-rails` gem uses `eagerDefineCustomElementsFrom` to automatically register [custom elements](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements) in the `custom_elements` folder. It parses the importmap generated by `importmap-rails` and registers custom elements using the `customElements.define(...)` API.
45
63
46
-
```
47
-
custom_elements/hello_element.js // will register <app-hello> automatically
48
-
```
49
-
50
-
Your `*_element.js` files have to `export default` custom elements for this to work properly.
64
+
> [!IMPORTANT]
65
+
> Make sure your `*_element.js` files use `export default` to define the custom elements.
51
66
52
67
### Naming Convention for Custom Elements
53
68
54
69
When defining custom elements from files, their filenames are used to generate the element names automatically. The following rules and examples clarify how file paths are converted to custom element names:
55
70
56
71
#### Usage
57
72
58
-
Register all files in the `custom_elements` folder as custom elements using a prefix (e.g., `app`):
73
+
Register all files in the `custom_elements` folder as custom elements:
- A [configurable prefix](#documentation) is added to the beginning of each custom element name.
79
91
80
-
## Add a custom element with the built-in generator
92
+
## Generators
81
93
82
94
This gem adds a generator to generate new custom elements with:
83
95
84
-
```bash
96
+
```console
85
97
$ rails generate custom_element test
86
98
```
87
99
@@ -102,13 +114,13 @@ export default class extends HTMLElement {
102
114
103
115
which in turn will register a `<app-test></app-test>` custom element automatically in your app.
104
116
105
-
```bash
117
+
```console
106
118
$ rails generate custom_element test
107
119
```
108
120
109
121
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:
110
122
111
-
```bash
123
+
```console
112
124
$ rails generate custom_element test attribute1
113
125
```
114
126
@@ -136,13 +148,15 @@ export default class extends HTMLElement {
136
148
137
149
`eagerDefineCustomElementsFrom(under, options)`
138
150
139
-
Currently supported `options`:
151
+
Currently supported optional `options`:
140
152
141
-
*`prefix`: The custom elements namespace/prefix.
153
+
*`prefix`: The custom elements namespace. (default: "app")
142
154
143
155
## Contributing
144
156
145
-
TODO
157
+
1. Fork the repository.
158
+
2. Create a feature branch.
159
+
3. Submit a pull request with a detailed description of changes.
0 commit comments