Skip to content

Commit 8f915c0

Browse files
committed
Document generating bridge components
1 parent e88d9f4 commit 8f915c0

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To make a new Stimulus controller, run:
4848
php artisan stimulus:make hello_controller
4949
```
5050

51-
This should create the file for you using a scaffolding to get the controller ready for you. When using Vite, it will also regenerate the `resources/js/controllers/index.js` file to register your newly created Stimulus controller automatically.
51+
This should create the controller for you. When using Vite, it will also regenerate the `resources/js/controllers/index.js` file to register your newly created Stimulus controller automatically.
5252

5353
There's also a hint comment on how you may use the controller in the DOM, something like this:
5454

@@ -60,6 +60,28 @@ export default class extends Controller {
6060
connect() {
6161
}
6262
}
63+
64+
### Making a new Hotwire Native Bridge Component
65+
66+
You may use the same `stimulus:make` command to generate a Hotwire Native Bridge component by passing the `--bridge=` option with the name of the native component. For instance, if you're working on a native Toast component, you may create it like:
67+
68+
```bash
69+
php artisan stimulus:make bridge/toast_controller --bridge=toast
70+
```
71+
72+
This should create a file for you using the bridge scaffolding. When using Vite, it will also generate the `resources/js/controllers/index.js` file to register your newly created Stimulus Bridge Component automatically.
73+
74+
Like regular Stimulus controllers, there's also a hint comment on how you may use the controller in the DOM:
75+
76+
```js
77+
import { BridgeComponent, BridgeElement } from "@hotwired/hotwire-native-bridge"
78+
79+
// Connects to data-controller="bridge--toast"
80+
export default class extends BridgeComponent {
81+
static component = "toast"
82+
83+
//
84+
}
6385
```
6486

6587
### Regenerate the Manifest

0 commit comments

Comments
 (0)