js: reorganize Javascript file structure.

Move Javascript files from app/components/**/*.js back to app/javascript/src/javascripts/*.js.
This way Javascript files are in one place, which simplifies import paths and makes it
easier to see all Javascript at once.
This commit is contained in:
evazion
2022-02-08 13:43:50 -06:00
parent 37ad6f5a71
commit ef0d8151d8
11 changed files with 15 additions and 16 deletions

View File

@@ -1,22 +0,0 @@
class SourceDataComponent {
static initialize() {
$(document).on("click.danbooru", ".source-data-fetch", SourceDataComponent.fetchData);
}
static async fetchData(e) {
let url = $("#post_source").val();
let ref = $("#post_referer_url").val();
e.preventDefault();
if (/^https?:\/\//.test(url)) {
$(".source-data").addClass("loading");
await $.get("/source.js", { url: url, ref: ref });
$(".source-data").removeClass("loading");
}
}
}
$(document).ready(SourceDataComponent.initialize);
export default SourceDataComponent;