You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
5.1 KiB
JavaScript
140 lines
5.1 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/api/config',
|
|
'/common/hyperscript.js',
|
|
'/common/common-feedback.js',
|
|
'/common/common-interface.js',
|
|
'/common/common-hash.js',
|
|
'/common/textFit.min.js',
|
|
'/customize/messages.js',
|
|
'/customize/application_config.js',
|
|
'/common/outer/local-store.js',
|
|
'/customize/pages.js'
|
|
], function ($, Config, h, Feedback, UI, Hash, TextFit, Msg, AppConfig, LocalStore, Pages) {
|
|
var urlArgs = Config.requireConf.urlArgs;
|
|
|
|
var isAvailableType = function (x) {
|
|
if (!Array.isArray(AppConfig.availablePadTypes)) { return true; }
|
|
return AppConfig.availablePadTypes.indexOf(x) !== -1;
|
|
};
|
|
|
|
var checkRegisteredType = function (x) {
|
|
// Return true if we're registered or if the app is not registeredOnly
|
|
if (LocalStore.isLoggedIn()) { return true; }
|
|
if (!Array.isArray(AppConfig.registeredOnlyTypes)) { return true; }
|
|
return AppConfig.registeredOnlyTypes.indexOf(x) === -1;
|
|
};
|
|
|
|
return function () {
|
|
var icons = [
|
|
[ 'pad', Msg.type.pad],
|
|
[ 'code', Msg.type.code],
|
|
[ 'slide', Msg.type.slide],
|
|
[ 'sheet', Msg.type.sheet],
|
|
[ 'poll', Msg.type.poll],
|
|
[ 'kanban', Msg.type.kanban],
|
|
[ 'whiteboard', Msg.type.whiteboard],
|
|
[ 'drive', Msg.type.drive]
|
|
].filter(function (x) {
|
|
return isAvailableType(x[0]);
|
|
})
|
|
.map(function (x) {
|
|
var s = 'div.bs-callout.cp-callout-' + x[0];
|
|
var isEnabled = checkRegisteredType(x[0]);
|
|
//if (i > 2) { s += '.cp-more.cp-hidden'; }
|
|
var icon = AppConfig.applicationsIcon[x[0]];
|
|
var font = icon.indexOf('cptools') === 0 ? 'cptools' : 'fa';
|
|
var href = '/'+ x[0] +'/';
|
|
var attr = isEnabled ? { href: href } : {
|
|
onclick: function () {
|
|
var loginURL = Hash.hashToHref('', 'login');
|
|
var url = Hash.getNewPadURL(loginURL, { href: href });
|
|
window.location.href = url;
|
|
}
|
|
};
|
|
if (!isEnabled) {
|
|
s += '.cp-app-disabled';
|
|
attr.title = Msg.mustLogin;
|
|
}
|
|
return h('a', [
|
|
attr,
|
|
h(s, [
|
|
h('i.' + font + '.' + icon, {'aria-hidden': 'true'}),
|
|
h('div.pad-button-text', [ x[1] ])
|
|
])
|
|
]);
|
|
});
|
|
|
|
icons.forEach(function (a) {
|
|
setTimeout(function () {
|
|
TextFit($(a).find('.pad-button-text')[0], {minFontSize: 13, maxFontSize: 18});
|
|
});
|
|
});
|
|
UI.addTooltips();
|
|
|
|
var blocks = [
|
|
h('div.row.cp-index-section', [
|
|
h('div.col-sm-6',
|
|
h('img.img-fluid', {
|
|
src:'/customize/images/shredder.png',
|
|
alt:'',
|
|
'aria-hidden': 'true'
|
|
})
|
|
),
|
|
h('div.col-sm-6', [
|
|
h('h2', Msg.home_privacy_title),
|
|
h('p', Msg.home_privacy_text)
|
|
])
|
|
]),
|
|
h('div.row.cp-index-section',
|
|
h('div.col-sm-12', [
|
|
h('h2', Msg.home_host_title),
|
|
h('p'), Msg.home_host
|
|
])
|
|
),
|
|
h('div.row.cp-index-section', [
|
|
h('div.col-sm-6', [
|
|
h('h2', Msg.home_opensource_title),
|
|
Pages.setHTML(h('p'), Msg.home_opensource),
|
|
h('img.small-logo', {
|
|
src: '/customize/images/logo_AGPLv3.svg',
|
|
alt: 'APGL3 License Logo'
|
|
})
|
|
]),
|
|
h('div.col-sm-6', [
|
|
h('h2', Msg.home_support_title),
|
|
Pages.setHTML(h('span'), Msg.home_support),
|
|
Pages.crowdfundingButton(function () {
|
|
Feedback.send('HOME_SUPPORT_CRYPTPAD');
|
|
}),
|
|
])
|
|
])
|
|
];
|
|
|
|
return [
|
|
h('div#cp-main', [
|
|
Pages.infopageTopbar(),
|
|
h('div.container.cp-container', [
|
|
h('div.row.cp-home-hero', [
|
|
h('div.cp-title.col-md-7', [
|
|
h('img', {
|
|
src: '/customize/CryptPad_logo.svg?' + urlArgs,
|
|
'aria-hidden': 'true',
|
|
alt: ''
|
|
}),
|
|
h('h1', 'CryptPad'),
|
|
UI.setHTML(h('span.tag-line'), Msg.main_catch_phrase)
|
|
]),
|
|
h('div.col-md-5.cp-app-grid', [
|
|
icons,
|
|
])
|
|
]),
|
|
blocks
|
|
]),
|
|
Pages.infopageFooter(),
|
|
]),
|
|
];
|
|
};
|
|
});
|
|
|