mirror of https://github.com/xwiki-labs/cryptpad
244 lines
8.3 KiB
JavaScript
244 lines
8.3 KiB
JavaScript
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
|
||
//
|
||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
||
define([
|
||
'/common/hyperscript.js',
|
||
'/common/common-language.js',
|
||
'/common/common-util.js',
|
||
'/customize/application_config.js',
|
||
'/customize/messages.js',
|
||
'jquery',
|
||
'/api/config',
|
||
'optional!/api/instance',
|
||
], function (h, Language, Util, AppConfig, Msg, $, ApiConfig, Instance) {
|
||
var Pages = {};
|
||
|
||
Pages.setHTML = function (e, html) {
|
||
e.innerHTML = html;
|
||
return e;
|
||
};
|
||
|
||
Pages.externalLink = function (el, href) {
|
||
if (!el) { return el; }
|
||
el.setAttribute("rel", "noopener noreferrer");
|
||
el.setAttribute("target", "_blank");
|
||
if (typeof(href) === 'string') {
|
||
el.setAttribute("href", href);
|
||
}
|
||
return el;
|
||
};
|
||
|
||
// this rewrites URLS to point to the appropriate translation:
|
||
// French, German, or English as a default
|
||
var documentedLanguages = ['en', 'fr', 'de'];
|
||
Pages.localizeDocsLink = function (href) {
|
||
try {
|
||
var lang = Msg._getLanguage();
|
||
if (documentedLanguages.indexOf(lang) > 0) {
|
||
return href.replace('/en/', '/' + lang + '/');
|
||
}
|
||
} catch (err) {
|
||
console.error(err);
|
||
// if it fails just use the default href (English)
|
||
}
|
||
return href;
|
||
};
|
||
|
||
Pages.documentationLink = function (el, href) {
|
||
return Pages.externalLink(el, Pages.localizeDocsLink(href));
|
||
};
|
||
|
||
var accounts = Pages.accounts = {
|
||
donateURL: AppConfig.donateURL || "https://opencollective.com/cryptpad/",
|
||
upgradeURL: AppConfig.upgradeURL
|
||
};
|
||
|
||
Pages.areSubscriptionsAllowed = function () {
|
||
try {
|
||
return ApiConfig.allowSubscriptions && accounts.upgradeURL && !ApiConfig.restrictRegistration;
|
||
} catch (err) { return void console.error(err); }
|
||
};
|
||
|
||
var languageSelector = function () {
|
||
var languages = Msg._languages;
|
||
var selected = Msg._languageUsed;
|
||
var keys = Object.keys(languages).sort();
|
||
var options = keys.map(function (l) {
|
||
var attr = { value: l };
|
||
if (selected === l) { attr.selected = 'selected'; }
|
||
return h('option', attr, languages[l]);
|
||
});
|
||
var select = h('select', { 'aria-label': Msg.selectLanguage }, options);
|
||
$(select).change(function () {
|
||
Language.setLanguage($(select).val() || '', null, function () {
|
||
window.location.reload();
|
||
});
|
||
});
|
||
return select;
|
||
};
|
||
|
||
var footLink = function (ref, loc, text, icon) {
|
||
if (!ref) { return; }
|
||
var attrs = {
|
||
href: ref,
|
||
};
|
||
var iconName = '';
|
||
if (!/^\//.test(ref)) {
|
||
attrs.target = '_blank';
|
||
attrs.rel = 'noopener noreferrer';
|
||
}
|
||
if (loc) {
|
||
attrs['data-localization'] = loc;
|
||
text = Msg[loc];
|
||
}
|
||
if (icon) {
|
||
iconName = 'i.fa.fa-' + icon;
|
||
icon = h(iconName);
|
||
}
|
||
return h('a', attrs, [icon, text]);
|
||
};
|
||
|
||
let urlArgs = ApiConfig.requireConf && ApiConfig.requireConf.urlArgs;
|
||
Pages.versionString = Util.getVersionFromUrlArgs(urlArgs);
|
||
|
||
var customURLs = Pages.customURLs = {};
|
||
(function () {
|
||
var defaultURLs = {
|
||
source: 'https://github.com/cryptpad/cryptpad',
|
||
};
|
||
var l = Msg._getLanguage();
|
||
['imprint', 'privacy', 'terms', 'status', 'roadmap', 'source'].forEach(function (k) {
|
||
var value = AppConfig[k];
|
||
//console.log('links', k, value);
|
||
if (value === false) { return; }
|
||
if (value === true) {
|
||
customURLs[k] = defaultURLs[k];
|
||
return;
|
||
}
|
||
if (typeof(value) === 'string') {
|
||
customURLs[k] = value;
|
||
return;
|
||
}
|
||
if (typeof(value) === 'object') {
|
||
customURLs[k] = value[l] || value['default'];
|
||
}
|
||
});
|
||
var value = AppConfig.hostDescription;
|
||
Pages.hostDescription = (value && (value[l] || value.default)) || Msg.home_host;
|
||
|
||
Pages.Instance = {};
|
||
Object.keys(Instance).forEach(function (k) {
|
||
var value = Instance[k];
|
||
Pages.Instance[k] = value[l] || value.default || undefined;
|
||
});
|
||
|
||
var name;
|
||
try {
|
||
name = Pages.Instance.name || new URL('/', ApiConfig.httpUnsafeOrigin).host;
|
||
} catch (err) {
|
||
name = 'CryptPad';
|
||
}
|
||
Pages.Instance.name = name;
|
||
Pages.Instance.description = Pages.Instance.description || Msg.main_catch_phrase;
|
||
}());
|
||
|
||
// used for the about menu
|
||
Pages.imprintLink = footLink(customURLs.imprint, 'imprint');
|
||
Pages.privacyLink = footLink(customURLs.privacy, 'privacy');
|
||
Pages.termsLink = footLink(customURLs.terms, 'terms');
|
||
Pages.sourceLink = footLink(customURLs.source, 'footer_source');
|
||
Pages.docsLink = footLink('https://docs.cryptpad.org', 'docs_link');
|
||
Pages.roadmapLink = footLink(customURLs.roadmap, 'footer_roadmap');
|
||
|
||
|
||
Pages.infopageFooter = function () {
|
||
var donateButton;
|
||
if (!ApiConfig.removeDonateButton) {
|
||
donateButton = footLink('https://opencollective.com/cryptpad/contribute/', 'footer_donate', null, 'money'); // TODO migrate to forkawesome and use the OpenCollective icon
|
||
}
|
||
|
||
return h('footer.cp-footer', [
|
||
h('div.cp-footer-left', [
|
||
h('a', {href:"https://cryptpad.org"}, [
|
||
h('div.cp-logo-foot', [
|
||
h('img', {
|
||
src: '/customize/CryptPad_logo.svg',
|
||
"aria-hidden": true,
|
||
alt: ''
|
||
}),
|
||
h('span.logo-font', 'CryptPad')
|
||
])
|
||
]),
|
||
h('span.cp-footer-version', 'v' + Pages.versionString)
|
||
]),
|
||
h('div.cp-footer-center', [
|
||
h('div.cp-logo-btns', [
|
||
footLink('https://cryptpad.org', null, Msg.footer_website, 'link'),
|
||
donateButton,
|
||
])
|
||
]),
|
||
h('div.cp-footer-right', [
|
||
h('div.cp-footer-language', [
|
||
h('i.fa.fa-language', {'aria-hidden': 'true'}),
|
||
languageSelector()
|
||
])
|
||
])
|
||
]);
|
||
};
|
||
|
||
Pages.infopageTopbar = function () {
|
||
var rightLinks;
|
||
var username = window.localStorage.getItem('User_name');
|
||
var registerLink;
|
||
|
||
if (!ApiConfig.restrictRegistration) {
|
||
registerLink = h('a.nav-item.nav-link.cp-register-btn', { href: '/register/'}, [
|
||
h('i.fa.fa-user', {'aria-hidden':'true'}),
|
||
Msg.login_register
|
||
]);
|
||
}
|
||
|
||
if (username === null) {
|
||
rightLinks = [
|
||
h('a.nav-item.nav-link.cp-login-btn', { href: '/login/'}, [
|
||
h('i.fa.fa-sign-in', {'aria-hidden':'true'}),
|
||
Msg.login_login
|
||
]),
|
||
registerLink,
|
||
];
|
||
} else {
|
||
rightLinks = h('a.nav-item.nav-link.cp-user-btn', { href: '/drive/' }, [
|
||
h('i.fa.fa-user-circle', {'aria-hidden':'true'}),
|
||
" ",
|
||
username
|
||
]);
|
||
}
|
||
|
||
var isHome = ['/', '/index.html'].includes(window.location.pathname);
|
||
var homeLink = h('a.nav-item.nav-link.cp-back-home' /* .navbar-brand */, { href: '/index.html' }, [
|
||
h('i.fa.fa-arrow-left'),
|
||
h('img', {
|
||
src: '/customize/CryptPad_logo.svg',
|
||
"aria-hidden": true,
|
||
alt: ''
|
||
}),
|
||
Msg.homePage
|
||
]);
|
||
|
||
return h('nav.navbar.navbar-expand-lg',
|
||
[
|
||
!isHome? homeLink: undefined,
|
||
h('a.nav-item.nav-link', { href: '/features.html'}, [
|
||
h('i.fa.fa-info-circle'),
|
||
Pages.areSubscriptionsAllowed()? Msg.pricing: Msg.features
|
||
]),
|
||
h('a.nav-item.nav-link', { href: 'https://docs.cryptpad.org'},
|
||
[h('i.fa.fa-book', {'aria-hidden':'true'}),Msg.docs_link]),
|
||
].concat(rightLinks)
|
||
);
|
||
};
|
||
|
||
return Pages;
|
||
});
|