drop.chapril.org-firefoxsend/app/templates/passwordInput/index.js

88 lines
2.3 KiB
JavaScript
Raw Normal View History

const html = require('choo/html');
2018-02-16 21:56:53 +01:00
module.exports = function(file, state, emit) {
const loading = state.settingPassword;
const pwd = file.hasPassword;
const formClass = pwd
2018-02-16 21:56:53 +01:00
? 'passwordInput'
: 'passwordInput passwordInput--hidden';
const inputClass = loading || pwd ? 'input' : 'input input--noBtn';
let btnClass = 'inputBtn inputBtn--hidden';
if (loading) {
btnClass = 'inputBtn inputBtn--loading';
} else if (pwd) {
btnClass = 'inputBtn';
}
const action = pwd
2018-02-16 21:56:53 +01:00
? state.translate('changePasswordButton')
: state.translate('addPasswordButton');
return html`
2018-02-16 21:56:53 +01:00
<div>
<form
2018-02-16 21:56:53 +01:00
class="${formClass}"
onsubmit=${setPassword}
data-no-csrf>
<input id="password-input"
${loading ? 'disabled' : ''}
2018-02-16 21:56:53 +01:00
class="${inputClass}"
maxlength="32"
autocomplete="off"
type="password"
oninput=${inputChanged}
2018-02-16 21:56:53 +01:00
placeholder="${
pwd
2018-02-16 21:56:53 +01:00
? passwordPlaceholder(file.password)
: state.translate('unlockInputPlaceholder')
}">
<input type="submit"
id="password-btn"
${loading ? 'disabled' : ''}
2018-02-16 21:56:53 +01:00
class="${btnClass}"
value="${loading ? '' : action}">
</form>
2018-02-16 21:56:53 +01:00
<div class="passwordInput__msg">${message(
loading,
pwd,
2018-02-16 21:56:53 +01:00
state.translate('passwordIsSet')
)}</div>
</div>
`;
function inputChanged() {
2018-02-16 21:56:53 +01:00
const pwdmsg = document.querySelector('.passwordInput__msg');
if (pwdmsg) {
pwdmsg.textContent = '';
}
const resetInput = document.getElementById('password-input');
const resetBtn = document.getElementById('password-btn');
if (resetInput.value.length > 0) {
resetBtn.classList.remove('inputBtn--hidden');
resetInput.classList.remove('input--noBtn');
} else {
resetBtn.classList.add('inputBtn--hidden');
resetInput.classList.add('input--noBtn');
}
}
2018-02-16 21:56:53 +01:00
function setPassword(event) {
event.preventDefault();
const password = document.getElementById('password-input').value;
if (password.length > 0) {
emit('password', { password, file });
}
return false;
}
};
2018-02-16 21:56:53 +01:00
function passwordPlaceholder(password) {
return password ? password.replace(/./g, '●') : '●●●●●●●●●●●●';
}
function message(loading, pwd, deflt) {
if (loading || !pwd) {
2018-02-16 21:56:53 +01:00
return '';
}
return deflt;
}