mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:36:22 +00:00
19 lines
452 B
JavaScript
19 lines
452 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
import bsCustomFileInput from "bs-custom-file-input";
|
|
|
|
document.addEventListener("turbolinks:load", () => {
|
|
bsCustomFileInput.init();
|
|
});
|
|
|
|
export default class extends Controller {
|
|
static targets = ["preview", "input"];
|
|
|
|
connect() {
|
|
}
|
|
|
|
update(event = undefined) {
|
|
if (!this.hasPreviewTarget) return;
|
|
|
|
this.previewTarget.src = window.URL.createObjectURL(this.inputTarget.files[0])
|
|
}
|
|
}
|