mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 11:23:02 +00:00
2ceac9a87d
* Add unshare action * Show shared state in bookmark list * Update tests * Reflect unread and shared state as CSS class
70 lines
2.2 KiB
JavaScript
70 lines
2.2 KiB
JavaScript
import { registerBehavior } from "./index";
|
|
|
|
class ConfirmButtonBehavior {
|
|
constructor(element) {
|
|
const button = element;
|
|
button.dataset.type = button.type;
|
|
button.dataset.name = button.name;
|
|
button.dataset.value = button.value;
|
|
button.removeAttribute("type");
|
|
button.removeAttribute("name");
|
|
button.removeAttribute("value");
|
|
button.addEventListener("click", this.onClick.bind(this));
|
|
this.button = button;
|
|
}
|
|
|
|
onClick(event) {
|
|
event.preventDefault();
|
|
|
|
const container = document.createElement("span");
|
|
container.className = "confirmation";
|
|
|
|
const icon = this.button.getAttribute("confirm-icon");
|
|
if (icon) {
|
|
const iconElement = document.createElementNS(
|
|
"http://www.w3.org/2000/svg",
|
|
"svg",
|
|
);
|
|
iconElement.style.width = "16px";
|
|
iconElement.style.height = "16px";
|
|
iconElement.innerHTML = `<use xlink:href="#${icon}"></use>`;
|
|
container.append(iconElement);
|
|
}
|
|
|
|
const question = this.button.getAttribute("confirm-question");
|
|
if (question) {
|
|
const questionElement = document.createElement("span");
|
|
questionElement.innerText = question;
|
|
container.append(question);
|
|
}
|
|
|
|
const cancelButton = document.createElement(this.button.nodeName);
|
|
cancelButton.type = "button";
|
|
cancelButton.innerText = question ? "No" : "Cancel";
|
|
cancelButton.className = "btn btn-link btn-sm mr-1";
|
|
cancelButton.addEventListener("click", this.reset.bind(this));
|
|
|
|
const confirmButton = document.createElement(this.button.nodeName);
|
|
confirmButton.type = this.button.dataset.type;
|
|
confirmButton.name = this.button.dataset.name;
|
|
confirmButton.value = this.button.dataset.value;
|
|
confirmButton.innerText = question ? "Yes" : "Confirm";
|
|
confirmButton.className = "btn btn-link btn-sm";
|
|
confirmButton.addEventListener("click", this.reset.bind(this));
|
|
|
|
container.append(cancelButton, confirmButton);
|
|
this.container = container;
|
|
|
|
this.button.before(container);
|
|
this.button.classList.add("d-none");
|
|
}
|
|
|
|
reset() {
|
|
setTimeout(() => {
|
|
this.container.remove();
|
|
this.button.classList.remove("d-none");
|
|
});
|
|
}
|
|
}
|
|
|
|
registerBehavior("ld-confirm-button", ConfirmButtonBehavior);
|