2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
|
|
|
const raw = require('choo/html/raw');
|
2019-01-29 22:08:54 +01:00
|
|
|
const modal = require('./modal');
|
2018-10-25 04:07:10 +02:00
|
|
|
|
2019-01-29 22:08:54 +01:00
|
|
|
module.exports = function(state, emit) {
|
2018-10-25 04:07:10 +02:00
|
|
|
return html`
|
2019-02-22 22:31:54 +01:00
|
|
|
<main class="main">
|
2019-01-29 22:08:54 +01:00
|
|
|
${state.modal && modal(state, emit)}
|
2018-11-16 21:39:36 +01:00
|
|
|
<div
|
|
|
|
class="flex flex-col items-center bg-white m-6 px-6 py-8 border border-grey-light md:border-none md:px-12 md:py-16 shadow w-full md:h-full"
|
|
|
|
>
|
|
|
|
<h1 class="text-2xl text-center">${state.translate('legalHeader')}</h1>
|
2019-01-24 21:31:20 +01:00
|
|
|
${raw(
|
|
|
|
replaceLinks(state.translate('legalNoticeTestPilot'), [
|
|
|
|
'https://testpilot.firefox.com/terms',
|
|
|
|
'https://testpilot.firefox.com/privacy',
|
|
|
|
'https://testpilot.firefox.com/experiments/send'
|
|
|
|
])
|
|
|
|
)}
|
|
|
|
${raw(
|
|
|
|
replaceLinks(state.translate('legalNoticeMozilla'), [
|
|
|
|
'https://www.mozilla.org/privacy/websites/',
|
|
|
|
'https://www.mozilla.org/about/legal/terms/mozilla/'
|
|
|
|
])
|
|
|
|
)}
|
2018-11-16 21:39:36 +01:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
`;
|
2018-10-25 04:07:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
function replaceLinks(str, urls) {
|
|
|
|
let i = 0;
|
|
|
|
const s = str.replace(
|
|
|
|
/<a>([^<]+)<\/a>/g,
|
|
|
|
(m, v) => `<a class="text-blue" href="${urls[i++]}">${v}</a>`
|
|
|
|
);
|
2018-11-02 10:27:59 +01:00
|
|
|
return `<p class="mt-10 max-w-md leading-normal">${s}</p>`;
|
2018-10-25 04:07:10 +02:00
|
|
|
}
|