mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-08 01:12:49 +01:00
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
import { createElement } from "../../lib/skeleton/index.js";
|
|
import rxjs, { effect, preventDefault } from "../../lib/rx.js";
|
|
import { qs } from "../../lib/dom.js";
|
|
import { MODAL_RIGHT_BUTTON } from "../../components/modal.js";
|
|
import t from "../../locales/index.js";
|
|
|
|
export default function(render, removeLabel) {
|
|
return document.body.classList.contains("touch-yes")
|
|
? renderMobile(render, removeLabel)
|
|
: renderDesktop(render, removeLabel);
|
|
}
|
|
|
|
function renderDesktop(render, removeLabel) {
|
|
const $modal = createElement(`
|
|
<div>
|
|
<span style="white-space: nowrap;">
|
|
<span class="no-select">${t("Confirm by typing")} "</span>${removeLabel}<span class="no-select">"</span>
|
|
</span>
|
|
<form style="margin-top: 10px;">
|
|
<input class="component_input" type="text" autocomplete="new-password" value="">
|
|
<div class="modal-error-message"></div>
|
|
</form>
|
|
</div>
|
|
`);
|
|
const ret = new rxjs.Subject();
|
|
const isValid = () => $input.value === removeLabel;
|
|
const $input = qs($modal, "input");
|
|
const pressOK = render($modal, (id) => {
|
|
if (id !== MODAL_RIGHT_BUTTON) {
|
|
return;
|
|
}
|
|
else if (!isValid()) {
|
|
qs($modal, ".modal-error-message").textContent = t("Doesn't match");
|
|
return ret.toPromise();
|
|
}
|
|
ret.next();
|
|
ret.complete();
|
|
return ret.toPromise();
|
|
}).bind(null, MODAL_RIGHT_BUTTON);
|
|
|
|
$input.focus();
|
|
|
|
effect(rxjs.fromEvent(qs($modal, "form"), "submit").pipe(
|
|
preventDefault(),
|
|
rxjs.tap(pressOK),
|
|
));
|
|
|
|
return ret.toPromise();
|
|
}
|
|
|
|
function renderMobile(_, removeLabel) {
|
|
return new Promise((done) => {
|
|
const value = window.prompt(t("Confirm by typing") + ": " + removeLabel, "");
|
|
if (value !== removeLabel) {
|
|
return;
|
|
}
|
|
done(null);
|
|
});
|
|
}
|