get /slide/ up to par with other prototypes

* use messages.js for some translatable elements
* style alerts
* infer document name from content
* present, forget, rename, import, and export buttons
pull/1/head
ansuz 8 years ago
parent 269eba3c47
commit f1619f4a0f

@ -4,30 +4,41 @@
<meta content="text/html; charset=utf-8" http-equiv="content-type"/> <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script data-main="main" src="/bower_components/requirejs/require.js"></script> <script data-main="main" src="/bower_components/requirejs/require.js"></script>
<link rel="icon" type="image/png"
href="/customize/main-favicon.png"
data-main-favicon="/customize/main-favicon.png"
data-alt-favicon="/customize/alt-favicon.png"
id="favicon" />
<link rel="stylesheet" href="/customize/main.css" />
<style> <style>
html, body{ html, body{
height: 100%;
width: 100%;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
overflow: hidden; overflow: hidden;
box-sizing: border-box; box-sizing: border-box;
position: relative;
} }
#bar { #bar > button {
height: 40px; margin: 5px;
} }
textarea{ textarea{
width: 100%; width: 100%;
height: calc(100vh - 40px); min-height: 90%;
max-width: 100%;
max-height: 100vh; display: block;
position: relative;
font-size: 18px; font-size: 25px;
background-color: #073642; background-color: #073642;
color: #839496; color: #DDD;
overflow-x: hidden; overflow-x: hidden;
/* disallow textarea resizes */ /* disallow textarea resizes */
resize: none; resize: none;
border: 0px;
} }
textarea[disabled] { textarea[disabled] {
background-color: #275662; background-color: #275662;
@ -58,19 +69,23 @@
text-align: center; text-align: center;
} }
#content p, #content ul, #content ol{ h1 { font-size: 40px; }
font-size: 23px; h2 { font-size: 37px; }
} h3 { font-size: 34px; }
h4 { font-size: 31px; }
h5 { font-size: 27px; }
h6 { font-size: 24px; }
#content p,
#content ul,
#content ol {
font-size: 26px;
}
</style> </style>
</head> </head>
<body> <body>
<div id="bar"> <div id="bar"></div>
<button id="present">presentation mode
</button>
</div>
<textarea></textarea> <textarea></textarea>
<div id="modal"> <div id="modal">
<div id="content"></div> <div id="content"></div>

@ -1,14 +1,17 @@
define([ define([
'/api/config?cb=' + Math.random().toString(16).substring(2), '/api/config?cb=' + Math.random().toString(16).substring(2),
'/customize/messages.js',
'/bower_components/chainpad-netflux/chainpad-netflux.js', '/bower_components/chainpad-netflux/chainpad-netflux.js',
'/bower_components/chainpad-crypto/crypto.js', '/bower_components/chainpad-crypto/crypto.js',
'/bower_components/textpatcher/TextPatcher.amd.js', '/bower_components/textpatcher/TextPatcher.amd.js',
'/common/cryptpad-common.js', '/common/cryptpad-common.js',
'/slide/slide.js', '/slide/slide.js',
'/bower_components/file-saver/FileSaver.min.js',
'/bower_components/jquery/dist/jquery.min.js', '/bower_components/jquery/dist/jquery.min.js',
'/customize/pad.js' '/customize/pad.js'
], function (Config, Realtime, Crypto, TextPatcher, Cryptpad, Slide) { ], function (Config, Messages, Realtime, Crypto, TextPatcher, Cryptpad, Slide) {
var $ = window.jQuery; var $ = window.jQuery;
var saveAs = window.saveAs;
/* /*
TODO TODO
@ -21,6 +24,8 @@ define([
* ui hint for escaping presentation mode * ui hint for escaping presentation mode
*/ */
Cryptpad.styleAlerts();
var secret = Cryptpad.getSecrets(); var secret = Cryptpad.getSecrets();
var module = window.APP = { var module = window.APP = {
@ -28,20 +33,26 @@ define([
Slide: Slide, Slide: Slide,
}; };
var userName = module.userName = Crypto.rand64(8);
var initializing = true; var initializing = true;
var $textarea = $('textarea'); var $textarea = $('textarea');
var suggestName = function () {
var title = '';
var patt = /^#\s+(.*)\s*$/;
$textarea.val().split("\n").some(function (line) {
if (!patt.test(line)) { return; }
line.replace(patt, function (a, b) {
title = b;
});
return true;
});
return title;
};
var $modal = $('#modal'); var $modal = $('#modal');
var $content = $('#content'); var $content = $('#content');
Slide.setModal($modal, $content); Slide.setModal($modal, $content);
var $present = $('#present').click(function () {
Slide.show(true, $textarea.val());
Cryptpad.log("Hit ESC to exit presentation mode");
});
var config = module.config = { var config = module.config = {
initialState: '', initialState: '',
websocketURL: Config.websocketURL, websocketURL: Config.websocketURL,
@ -54,6 +65,17 @@ define([
setEditable(false); setEditable(false);
var onLocal = config.onLocal = function () {
if (initializing) { return; }
var content = canonicalize($textarea.val());
module.patchText(content);
Slide.update(content);
};
var Button = function (opt) {
return $('<button>', opt);
};
var onInit = config.onInit = function (info) { var onInit = config.onInit = function (info) {
window.location.hash = info.channel + secret.key; window.location.hash = info.channel + secret.key;
$(window).on('hashchange', function() { $(window).on('hashchange', function() {
@ -73,6 +95,105 @@ define([
} }
}); });
}); });
var $bar = $('#bar');
var $present = Button({
id: 'present',
'class': 'present button action',
title: 'enter presentation mode',
})
.text("PRESENT")
.click(function () {
Slide.show(true, $textarea.val());
Cryptpad.log("Hit ESC to exit presentation mode");
});
var $forget = Button({
id: 'forget',
'class': 'forget button action',
title: Messages.forgetButtonTitle,
})
.text(Messages.forgetButton)
.click(function () {
var href = window.location.href;
Cryptpad.confirm(Messages.forgetPrompt, function (yes) {
if (!yes) { return; }
Cryptpad.forgetPad(href, function (err) {
if (err) {
console.log("unable to forget pad");
console.log(err);
return;
}
document.title = window.location.hash.slice(1,9);
});
});
});
var $rename = Button({
id: 'rename',
'class': 'rename button action',
title: Messages.renameButtonTitle,
})
.text(Messages.renameButton)
.click(function () {
var suggestion = suggestName();
Cryptpad.prompt(Messages.renamePrompt,
suggestion, function (title, ev) {
if (title === null) { return; }
Cryptpad.causesNamingConflict(title, function (err, conflicts) {
if (conflicts) {
Cryptpad.alert(Messages.renameConflict);
return;
}
Cryptpad.setPadTitle(title, function (err) {
if (err) {
console.log("unable to set pad title");
console.error(err);
return;
}
document.title = title;
});
});
});
});
var $import = Button({
id: 'import',
'class': 'import button action',
title: Messages.importButtonTitle,
})
.text(Messages.importButton)
.click(Cryptpad.importContent('text/plain', function (content, file) {
$textarea.val(content);
onLocal();
}));
var $export = Button({
id: 'export',
'class': 'export button action',
title: Messages.exportButtonTitle,
})
.text(Messages.exportButton)
.click(function () {
var text = $textarea.val();
var title = Cryptpad.fixFileName(suggestName()) + '.txt';
Cryptpad.prompt(Messages.exportPrompt, title, function (filename) {
if (filename === null) { return; }
var blob = new Blob([text], {
type: 'text/plain;charset=utf-8',
});
saveAs(blob, filename);
});
});
$bar
.append($present)
.append($forget)
.append($rename)
.append($import)
.append($export);
}; };
var onRemote = config.onRemote = function (info) { var onRemote = config.onRemote = function (info) {
@ -94,12 +215,6 @@ define([
Slide.update(content); Slide.update(content);
}; };
var onLocal = config.onLocal = function () {
if (initializing) { return; }
var content = canonicalize($textarea.val());
module.patchText(content);
Slide.update(content);
};
var onReady = config.onReady = function (info) { var onReady = config.onReady = function (info) {
var realtime = module.realtime = info.realtime; var realtime = module.realtime = info.realtime;
@ -108,6 +223,7 @@ define([
}); });
var content = canonicalize(realtime.getUserDoc()); var content = canonicalize(realtime.getUserDoc());
$textarea.val(content); $textarea.val(content);
Slide.update(content); Slide.update(content);
@ -118,7 +234,7 @@ define([
var onAbort = config.onAbort = function (info) { var onAbort = config.onAbort = function (info) {
$textarea.attr('disabled', true); $textarea.attr('disabled', true);
window.alert("Server Connection Lost"); Cryptpad.alert("Server Connection Lost");
}; };
var rt = Realtime.start(config); var rt = Realtime.start(config);
@ -127,6 +243,4 @@ define([
.forEach(function (evt) { .forEach(function (evt) {
$textarea.on(evt, onLocal); $textarea.on(evt, onLocal);
}); });
}); });

Loading…
Cancel
Save