Files
iTop/node_modules/tom-select/dist/cjs/plugins/remove_button/plugin.js
2025-11-13 16:43:49 +01:00

61 lines
2.5 KiB
JavaScript

"use strict";
/**
* Plugin: "remove_button" (Tom Select)
* Copyright (c) contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
* ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = default_1;
const vanilla_ts_1 = require("../../vanilla.js");
const utils_ts_1 = require("../../utils.js");
function default_1(userOptions) {
const options = Object.assign({
label: '×',
title: 'Remove',
className: 'remove',
append: true
}, userOptions);
//options.className = 'remove-single';
var self = this;
// override the render method to add remove button to each item
if (!options.append) {
return;
}
var html = '<a href="javascript:void(0)" class="' + options.className + '" tabindex="-1" title="' + (0, utils_ts_1.escape_html)(options.title) + '">' + options.label + '</a>';
self.hook('after', 'setupTemplates', () => {
var orig_render_item = self.settings.render.item;
self.settings.render.item = (data, escape) => {
var item = (0, vanilla_ts_1.getDom)(orig_render_item.call(self, data, escape));
var close_button = (0, vanilla_ts_1.getDom)(html);
item.appendChild(close_button);
(0, utils_ts_1.addEvent)(close_button, 'mousedown', (evt) => {
(0, utils_ts_1.preventDefault)(evt, true);
});
(0, utils_ts_1.addEvent)(close_button, 'click', (evt) => {
if (self.isLocked)
return;
// propagating will trigger the dropdown to show for single mode
(0, utils_ts_1.preventDefault)(evt, true);
if (self.isLocked)
return;
if (!self.shouldDelete([item], evt))
return;
self.removeItem(item);
self.refreshOptions(false);
self.inputState();
});
return item;
};
});
}
;
//# sourceMappingURL=plugin.js.map