2019-02-28 23:28:18 +01:00
|
|
|
const html = require('choo/html');
|
|
|
|
const assets = require('../../common/assets');
|
|
|
|
|
|
|
|
module.exports = function(state) {
|
2020-07-29 18:53:47 +02:00
|
|
|
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
|
2019-02-28 23:28:18 +01:00
|
|
|
return html`
|
|
|
|
<div
|
|
|
|
id="download-complete"
|
2019-09-09 19:34:55 +02:00
|
|
|
class="flex flex-col items-center justify-center h-full w-full bg-white p-2 dark:bg-grey-90"
|
2019-02-28 23:28:18 +01:00
|
|
|
>
|
2019-06-14 20:30:43 +02:00
|
|
|
<h1 class="text-center text-3xl font-bold my-2">
|
2019-02-28 23:28:18 +01:00
|
|
|
${state.translate('downloadFinish')}
|
|
|
|
</h1>
|
2022-04-12 15:58:58 +02:00
|
|
|
<svg class="my-8 h-48 text-primary">
|
|
|
|
<use xlink:href="${assets.get('completed.svg')}#Page-1" />
|
|
|
|
</svg>
|
2020-07-29 18:53:47 +02:00
|
|
|
<p
|
|
|
|
class="text-grey-80 leading-normal dark:text-grey-40 ${state.user
|
|
|
|
.loggedIn
|
|
|
|
? 'hidden'
|
|
|
|
: ''}"
|
|
|
|
>
|
2019-03-04 23:13:18 +01:00
|
|
|
${state.translate('trySendDescription')}
|
2019-02-28 23:28:18 +01:00
|
|
|
</p>
|
2019-03-01 20:05:43 +01:00
|
|
|
<p class="my-5">
|
2019-02-28 23:28:18 +01:00
|
|
|
<a href="/" class="btn rounded-lg flex items-center mt-4" role="button"
|
2020-07-29 18:53:47 +02:00
|
|
|
>${state.translate(btnText)}</a
|
2019-02-28 23:28:18 +01:00
|
|
|
>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
};
|