Skip to content

Commit

Permalink
Split up base.js into seperate modules
Browse files Browse the repository at this point in the history
Create a javascript file for each function. They are not related to each other.
  • Loading branch information
sascha-karnatz committed Aug 4, 2023
1 parent 05576ef commit 0b8d900
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 77 deletions.
8 changes: 6 additions & 2 deletions app/javascript/alchemy_admin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import "@hotwired/turbo-rails"

import Base from "alchemy_admin/base"
import Buttons from "alchemy_admin/buttons"
import GUI from "alchemy_admin/gui"
import translate from "alchemy_admin/i18n"
Expand All @@ -13,7 +12,10 @@ import ImageLoader from "alchemy_admin/image_loader"
import ImageCropper from "alchemy_admin/image_cropper"
import Initializer from "alchemy_admin/initializer"
import Datepicker from "alchemy_admin/datepicker"
import pictureSelector from "alchemy_admin/picture_selector"
import pleaseWaitOverlay from "alchemy_admin/please_wait_overlay"
import Sitemap from "alchemy_admin/sitemap"
import SelectBox from "alchemy_admin/select_box"
import Tinymce from "alchemy_admin/tinymce"
import PagePublicationFields from "alchemy_admin/page_publication_fields"

Expand All @@ -27,7 +29,6 @@ if (typeof window.Alchemy === "undefined") {

// Enhance the global Alchemy object with imported features
Object.assign(Alchemy, {
...Base,
Buttons,
...Dirty,
GUI,
Expand All @@ -40,6 +41,9 @@ Object.assign(Alchemy, {
Initializer,
IngredientAnchorLink,
Datepicker,
pictureSelector,
pleaseWaitOverlay,
SelectBox,
Sitemap,
Tinymce,
PagePublicationFields
Expand Down
75 changes: 0 additions & 75 deletions app/javascript/alchemy_admin/base.js

This file was deleted.

32 changes: 32 additions & 0 deletions app/javascript/alchemy_admin/picture_selector.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* Multiple picture select handler for the picture archive.
*/
export default function PictureSelector() {
const $selected_item_tools = $(".selected_item_tools")
const $picture_selects = $(".picture_tool.select input")

$picture_selects.on("change", function () {
if ($picture_selects.filter(":checked").size() > 0) {
$selected_item_tools.show()
} else {
$selected_item_tools.hide()
}

if (this.checked) {
$(this).parent().addClass("visible").removeClass("hidden")
} else {
$(this).parent().removeClass("visible").addClass("hidden")
}
})

$("a#edit_multiple_pictures").on("click", function (e) {
const $this = $(this)
const picture_ids = $("input:checkbox", "#picture_archive").serialize()
const url = $this.attr("href") + "?" + picture_ids

Alchemy.openDialog(url, {
title: $this.attr("title"),
size: "400x295"
})
})
}
19 changes: 19 additions & 0 deletions app/javascript/alchemy_admin/please_wait_overlay.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* To show the "Please wait" overlay.
* Pass false to hide it.
* @param {boolean,null} show
*/
export default function pleaseWaitOverlay(show) {
if (show == null) {
show = true
}
const $overlay = $("#overlay")
if (show) {
const spinner = new Alchemy.Spinner("medium")
spinner.spin($overlay)
$overlay.show()
} else {
$overlay.find(".spinner").remove()
$overlay.hide()
}
}
11 changes: 11 additions & 0 deletions app/javascript/alchemy_admin/select_box.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* Initializes all select tag with .alchemy_selectbox class as select2 instance
* Pass a jQuery scope to only init a subset of selectboxes.
* @param scope
*/
export default function SelectBox(scope) {
$("select.alchemy_selectbox", scope).select2({
minimumResultsForSearch: 7,
dropdownAutoWidth: true
})
}

0 comments on commit 0b8d900

Please sign in to comment.