fox-send/app/pages/legal.js

35 lines
1001 B
JavaScript
Raw Normal View History

const html = require('choo/html');
const raw = require('choo/html/raw');
2018-08-03 19:24:41 +00:00
const title = require('../templates/title');
module.exports = function(state) {
2018-02-16 20:56:53 +00:00
return html`
2018-10-16 23:53:33 +00:00
<main class="main page">
2018-08-03 19:24:41 +00:00
${title(state)}
<div class="title">${state.translate('legalHeader')}</div>
${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-10-16 23:53:33 +00:00
</main>
`;
};
2018-02-16 20:56:53 +00:00
function replaceLinks(str, urls) {
let i = 0;
const s = str.replace(
/<a>([^<]+)<\/a>/g,
(m, v) => `<a href="${urls[i++]}">${v}</a>`
);
return `<div class="description">${s}</div>`;
}