mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 19:26:21 +00:00
20 lines
442 B
JavaScript
20 lines
442 B
JavaScript
|
import { Controller } from '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])
|
||
|
}
|
||
|
}
|