admin.aprsto/htdocs/public/assets/js/create-project.js
2025-02-02 17:15:45 -05:00

78 lines
2.4 KiB
JavaScript

(function () {
"use strict"
/* StartDate Picker */
flatpickr("#startDate", {
enableTime: true,
dateFormat: "Y-m-d H:i",
});
/* EndDate Picker */
flatpickr("#endDate", {
enableTime: true,
dateFormat: "Y-m-d H:i",
});
/* multi select with remove button */
const multipleCancelButton = new Choices(
'#assigned-team-members',
{
allowHTML: true,
removeItemButton: true,
}
);
/* quill snow editor */
var toolbarOptions = [
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
[{ 'font': [] }],
['bold', 'italic', 'underline', 'strike'], // toggled buttons
['blockquote', 'code-block'],
[{ 'header': 1 }, { 'header': 2 }], // custom button values
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
[{ 'script': 'sub' }, { 'script': 'super' }], // superscript/subscript
[{ 'indent': '-1' }, { 'indent': '+1' }], // outdent/indent
[{ 'direction': 'rtl' }], // text direction
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
[{ 'align': [] }],
['image', 'video'],
['clean'] // remove formatting button
];
var quill = new Quill('#project-descriptioin-editor', {
modules: {
toolbar: toolbarOptions
},
theme: 'snow'
});
/* filepond */
FilePond.registerPlugin(
FilePondPluginImagePreview,
FilePondPluginImageExifOrientation,
FilePondPluginFileValidateSize,
FilePondPluginFileEncode,
FilePondPluginImageEdit,
FilePondPluginFileValidateType,
FilePondPluginImageCrop,
FilePondPluginImageResize,
FilePondPluginImageTransform
);
/* multiple upload */
const MultipleElement = document.querySelector('.multiple-filepond');
FilePond.create(MultipleElement,);
/* passing unique values */
var textUniqueVals = new Choices('#choices-text-unique-values', {
allowHTML: true,
paste: false,
duplicateItemsAllowed: false,
editItems: true,
});
})();