Files
openfoodnetwork/app/webpacker/controllers/product_preview_controller.js
Gaetan Craig-Riou 64d3091db9 Add product preview modal
Plus open modal when clicking on "preview" link.
It's using event to communicate between stimulus controller :
https://stimulus.hotwired.dev/reference/controllers#cross-controller-coordination-with-events
2024-09-10 13:29:39 +10:00

10 lines
251 B
JavaScript

import { Controller } from "stimulus";
export default class extends Controller {
open() {
// dispatch "product-preview:open" event to trigger modal->open action
// see views/admin/product_v3/index.html.haml
this.dispatch("open");
}
}