drop.chapril.org-firefoxsend/app/ui/signupDialog.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
/* global LIMITS */
const html = require('choo/html');
const { bytes, platform } = require('../utils');
2019-02-12 20:50:06 +01:00
const { canceledSignup, submittedSignup } = require('../metrics');
2018-10-25 04:07:10 +02:00
2019-02-12 20:50:06 +01:00
module.exports = function(trigger) {
2018-10-25 04:07:10 +02:00
return function(state, emit, close) {
const hidden = platform() === 'android' ? 'hidden' : '';
let submitting = false;
2018-10-25 04:07:10 +02:00
return html`
<send-signup-dialog class="flex flex-col p-4">
2018-10-25 04:07:10 +02:00
<p class="p-8">
${state.translate('accountBenefitTitle')}
2018-11-02 10:27:59 +01:00
<ul class="my-2 leading-normal">
2018-10-25 04:07:10 +02:00
<li>${state.translate('accountBenefitLargeFiles', {
size: bytes(LIMITS.MAX_FILE_SIZE)
})}</li>
<li>${state.translate('accountBenefitExpiry')}</li>
<li>${state.translate('accountBenefitSync')}</li>
</ul>
</p>
<form
onsubmit=${submitEmail}
data-no-csrf>
<input
id="email-input"
type="text"
class="${hidden} border rounded w-full px-2 py-1 h-12 mb-4 text-lg text-grey-darker leading-loose"
placeholder=${state.translate('emailEntryPlaceholder')} />
2018-10-25 04:07:10 +02:00
<input
class="hidden"
id="email-submit"
type="submit" />
2018-10-25 04:07:10 +02:00
</form>
2019-02-11 22:48:06 +01:00
<label class="btn rounded-lg w-full flex flex-no-shrink items-center justify-center" for="email-submit">
2018-10-25 04:07:10 +02:00
${state.translate('signInMenuOption')}
</label>
<button
2019-01-18 09:09:17 +01:00
class="my-4 text-blue hover:text-blue-dark focus:text-blue-darker font-medium"
2018-10-25 04:07:10 +02:00
title="${state.translate('deletePopupCancel')}"
2019-02-12 20:50:06 +01:00
onclick=${cancel}>${state.translate('deletePopupCancel')}
2018-10-25 04:07:10 +02:00
</button>
</send-signup-dialog>`;
2018-10-25 04:07:10 +02:00
function emailish(str) {
if (!str) {
return false;
}
// just check if it's the right shape
const a = str.split('@');
return a.length === 2 && a.every(s => s.length > 0);
}
2019-02-12 20:50:06 +01:00
function cancel(event) {
canceledSignup({ trigger });
close(event);
}
2018-10-25 04:07:10 +02:00
function submitEmail(event) {
event.preventDefault();
if (submitting) {
return;
}
submitting = true;
2018-10-25 04:07:10 +02:00
const el = document.getElementById('email-input');
const email = el.value;
2019-02-12 20:50:06 +01:00
submittedSignup({ trigger });
emit('login', emailish(email) ? email : null);
2018-10-25 04:07:10 +02:00
}
};
};