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 href = Hash . hashToHref ( '' , 'login' ) ;
var url = Hash . getNewPadURL ( href , { 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 ) ,
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 ( ) ;
/* / / XXX remove this commented code ?
var more = icons . length < 4 ? undefined : h ( 'div.bs-callout.cp-callout-more' , [
h ( 'div.cp-callout-more-lessmsg.cp-hidden' , [
"see less " ,
h ( 'i.fa.fa-caret-up' )
] ) ,
h ( 'div.cp-callout-more-moremsg' , [
"see more " ,
h ( 'i.fa.fa-caret-down' )
] ) ,
{
onclick : function ( ) {
if ( showingMore ) {
$ ( '.cp-more, .cp-callout-more-lessmsg' ) . addClass ( 'cp-hidden' ) ;
$ ( '.cp-callout-more-moremsg' ) . removeClass ( 'cp-hidden' ) ;
} else {
$ ( '.cp-more, .cp-callout-more-lessmsg' ) . removeClass ( 'cp-hidden' ) ;
$ ( '.cp-callout-more-moremsg' ) . addClass ( 'cp-hidden' ) ;
}
showingMore = ! showingMore ;
}
}
] ) ; * /
// XXX move this button to pages.js to make it available to other pages
var _link = h ( 'a' , {
href : "https://opencollective.com/cryptpad/" ,
target : '_blank' ,
rel : 'noopener' ,
} ) ;
var crowdFunding = h ( 'button' , [
Msg . crowdfunding _button
] ) ;
$ ( crowdFunding ) . click ( function ( ) {
_link . click ( ) ;
Feedback . send ( 'HOME_SUPPORT_CRYPTPAD' ) ;
} ) ;
// XXX
Msg . home _privacy _title = "Private by design" ;
Msg . home _privacy _text = "CryptPad is built to enable collaboration while keeping data private. All information including documents, chats, and files is encrypted and decrypted by your browser. This means nothing is readable outside of the session where you are logged in. Even the service administrators do not have access to your information." ;
Msg . home _host _title = "About this instance" ;
Msg . home _host = "This is an independent community instance of CryptPad." // existing key
Msg . home _opensource _title = "Open Source" ;
Msg . home _opensource = 'Anyone can host CryptPad and offer the service in a personal or professional capacity. The source code is available on <a href="https://github.com/xwiki-labs/cryptpad">Github</a>.' ;
Msg . home _support _title = "Support CryptPad" ;
Msg . home _support = "<p>CryptPad does not profit from user's data. This is part of a vision for online services that respect privacy. Instead of pretending to be \"free\" like the big platforms, CryptPad aims to build a sustainable model: funded willingly by users instead of making profits from personal information.</p><p>You can support the project by making a one-time or recurring donation through our Open Collective. Our budget is transparent and updates are published regularly. There are also a number of <a href=\"https://docs.cryptpad.fr/en/how_to_contribute.html\" rel=\"noopener noreferrer\" target=\"_blank\">non-financial ways to contribute</a>.</p>"
var blocks = [
h ( 'div.row.cp-index-section' , [
h ( 'div.col-sm-6' ,
h ( 'img.img-fluid' , {
src : '/customize/images/shredder.png' ,
alt : 'illustration, a shredder destroys a sheet of paper and antoher one reconstructs it'
} )
) ,
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 ) ,
crowdFunding
] )
] )
]
Msg . main _catch _phrase = "Collaboration suite,<br>encrypted and open-source" ; // XXX existing key
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 } ) ,
h ( 'h1' , 'CryptPad' ) ,
UI . setHTML ( h ( 'span.tag-line' ) , Msg . main _catch _phrase )
] ) ,
h ( 'div.col-md-5.cp-app-grid' , [
icons ,
// XXX remove this commented code?
//more
] )
] ) ,
blocks ,
// XXX remove this commented code?
/ * h ( ' d i v . r o w ' , [
h ( 'div.cp-crowdfunding' , [
crowdFunding
] )
] ) * /
] ) ,
] ) ,
Pages . infopageFooter ( ) ,
] ;
} ;
} ) ;