antosdk-apps/Booklet/build/debug/main.js

668 lines
16 KiB
JavaScript
Raw Normal View History

2019-11-24 20:33:14 +01:00
(function() {
var Book, Booklet, BookletChapter, BookletEntry, BookletFile, BookletFolder, BookletSection;
Booklet = class Booklet extends this.OS.GUI.BaseApplication {
constructor(args) {
super("Booklet", args);
}
main() {
2019-11-26 22:35:25 +01:00
var me;
me = this;
this.tree = this.find("toc-ui");
this.currentToc = void 0;
2019-11-28 23:11:46 +01:00
this.emux = false;
2019-11-28 18:35:55 +01:00
this.on("treeselect", function(e) {
2019-11-28 23:11:46 +01:00
console.log(e.treepath);
2019-11-28 18:35:55 +01:00
if ((me.currentToc === e) || (e === void 0) || (e.treepath === 0)) {
2019-11-28 23:11:46 +01:00
return me.reloadEditor();
2019-11-28 18:35:55 +01:00
}
return me.open(e);
2019-11-26 22:35:25 +01:00
});
2019-11-24 20:33:14 +01:00
this.initEditor();
2019-11-26 22:35:25 +01:00
this.resizeContent();
2019-11-28 18:35:55 +01:00
this.tree.contextmenuHandler = function(e, m) {
2019-11-26 22:35:25 +01:00
var menus;
menus = me.contextMenu();
if (!menus) {
return;
}
m.set("items", menus);
m.set("onmenuselect", function(evt) {
return me[evt.item.data.dataid]();
});
return m.show(e);
};
2019-11-28 18:35:55 +01:00
return this.editor.codemirror.on("change", function() {
2019-11-28 23:11:46 +01:00
if (me.emux) {
return;
}
2019-11-28 18:35:55 +01:00
if (!me.currentToc) {
return;
}
return me.currentToc.descFile.dirty = true;
});
2019-11-26 22:35:25 +01:00
}
newChapter() {
2019-11-28 18:35:55 +01:00
var ch;
if (!(this.currentToc && this.currentToc.type === "book")) {
return this.error(__("No book selected"));
}
ch = new BookletChapter(this.book);
2019-11-28 23:11:46 +01:00
this.displayToc();
return ch.treepath = ch.path;
2019-11-28 18:35:55 +01:00
}
newSection() {
var sec;
if (!(this.currentToc && this.currentToc.type === "chapter")) {
return this.error(__("No chapter selected"));
}
sec = new BookletSection(this.currentToc);
2019-11-28 23:11:46 +01:00
this.displayToc();
return sec.treepath = sec.path;
2019-11-28 18:35:55 +01:00
}
newFile() {
var file;
if (!(this.currentToc && this.currentToc.type === "section")) {
return this.error(__("No section selected"));
}
file = new BookletFile(this.currentToc);
2019-11-28 23:11:46 +01:00
this.displayToc();
return file.treepath = file.path;
}
delete() {
var fn, me;
me = this;
if (!this.currentToc) {
return this.error(__("No entrie select"));
}
fn = function() {
me.currentToc = void 0;
me.displayToc();
return me.reloadEditor();
};
return this.currentToc.remove().then(function() {
me.notify(__("Entrie deleted"));
return fn();
}).catch(function(e) {
me.error(e);
return fn();
});
2019-11-26 22:35:25 +01:00
}
contextMenu() {
if (!this.currentToc) {
return void 0;
}
switch (this.currentToc.type) {
case "book":
return [
{
text: __("New chapter"),
dataid: "newChapter"
},
{
text: __("Delete book"),
2019-11-28 23:11:46 +01:00
dataid: "delete"
2019-11-26 22:35:25 +01:00
}
];
case "chapter":
return [
{
text: __("New section"),
dataid: "newSection"
},
{
text: __("Delete chapter"),
2019-11-28 23:11:46 +01:00
dataid: "delete"
2019-11-26 22:35:25 +01:00
}
];
case "section":
return [
{
text: __("New file"),
dataid: "newFile"
},
{
text: __("Delete section"),
2019-11-28 23:11:46 +01:00
dataid: "delete"
}
];
case "file":
return [
{
text: __("Delete file"),
dataid: "delete"
2019-11-26 22:35:25 +01:00
}
];
}
return void 0;
2019-11-24 20:33:14 +01:00
}
initEditor() {
var markarea, me;
markarea = this.find("markarea");
this.container = this.find("mycontainer");
this.previewOn = false;
this.editormux = false;
me = this;
this.editor = new SimpleMDE({
element: markarea,
autofocus: true,
tabSize: 4,
indentWithTabs: true,
toolbar: [
"bold",
"italic",
"heading",
"|",
"quote",
"code",
"unordered-list",
"ordered-list",
"|",
"link",
"image",
"table",
"horizontal-rule",
"|",
{
name: "preview",
className: "fa fa-eye no-disable",
action: function(e) {
me.previewOn = !me.previewOn;
return SimpleMDE.togglePreview(e);
}
}
]
});
//if(self.previewOn) toggle the highlight
//{
// var container = self._scheme.find(self,"Text")
// .$element.getElementsByClassName("editor-preview");
// if(container.length == 0) return;
// var codes = container[0].getElementsByTagName('pre');
// codes.forEach(function(el){
// hljs.highlightBlock(el);
// });
// //console.log(code);
//}
this.on("hboxchange", function(e) {
return me.resizeContent();
});
this.bindKey("ALT-N", function() {
return me.actionFile(`${me.name}-New`);
});
2019-11-28 18:35:55 +01:00
this.bindKey("ALT-O", function() {
2019-11-24 20:33:14 +01:00
return me.actionFile(`${me.name}-Open`);
});
2019-11-28 18:35:55 +01:00
return this.bindKey("CTRL-S", function() {
return me.actionFile(`${me.name}-Save`);
});
2019-11-24 20:33:14 +01:00
}
2019-11-26 22:35:25 +01:00
reloadEditor() {
2019-11-28 18:35:55 +01:00
if (this.currentToc === void 0) {
this.editor.value("");
return this.scheme.set("apptitle", this.name);
}
this.editor.value(this.currentToc.descFile.cache || "");
return this.scheme.set("apptitle", `Booklet - ${this.currentToc.descFile.path}`);
2019-11-26 22:35:25 +01:00
}
saveContext() {
2019-11-28 18:35:55 +01:00
if (!this.currentToc) {
return;
}
return this.currentToc.descFile.cache = this.editor.value();
2019-11-24 20:33:14 +01:00
}
resizeContent() {
var cheight, children, statusbar, titlebar, toolbar;
children = ($(this.container)).children();
titlebar = (($(this.scheme)).find(".afx-window-top"))[0];
toolbar = children[1];
statusbar = children[4];
cheight = ($(this.scheme)).height() - ($(titlebar)).height() - ($(toolbar)).height() - ($(statusbar)).height() - 40;
return ($(children[2])).css("height", cheight + "px");
}
menu() {
var me, menu;
me = this;
menu = [
{
text: "__(File)",
child: [
{
text: "__(New booklet)",
dataid: `${this.name}-New`,
shortcut: "A-N"
},
{
text: "__(Open a booklet)",
dataid: `${this.name}-Open`,
shortcut: "A-O"
2019-11-28 18:35:55 +01:00
},
{
text: "__(Save a booklet)",
dataid: `${this.name}-Save`,
shortcut: "C-S"
2019-11-24 20:33:14 +01:00
}
],
onmenuselect: function(e) {
return me.actionFile(e.item.data.dataid);
}
}
];
return menu;
}
actionFile(e) {
2019-11-26 22:35:25 +01:00
var me;
me = this;
switch (e) {
case `${this.name}-Open`:
return this.openDialog("FileDiaLog", function(d, f) {
2019-11-28 18:35:55 +01:00
return console.log(`${d}/${f}`.asFileHandler());
2019-11-26 22:35:25 +01:00
}, __("Open file"), {
mimes: me.meta().mimes
});
case `${this.name}-New`:
return this.openDialog("FileDiaLog", function(d, f) {
2019-11-28 18:35:55 +01:00
return me.newAt(`${d}/${f}`);
2019-11-26 22:35:25 +01:00
}, __("Open file"), {
2019-11-28 18:35:55 +01:00
mimes: ['dir'],
file: {
basename: __("BookName")
}
2019-11-26 22:35:25 +01:00
});
2019-11-28 18:35:55 +01:00
case `${this.name}-Save`:
2019-11-28 23:11:46 +01:00
if (!me.book) {
return;
}
if (me.currentToc) {
me.saveContext();
}
me.displayToc();
return me.book.save().then(function() {
return me.notify(__("Book saved"));
}).catch(function(e) {
return me.error(__("Can't save the book : {0}", e));
});
2019-11-26 22:35:25 +01:00
}
}
2019-11-28 18:35:55 +01:00
open(toc) {
2019-11-28 23:11:46 +01:00
this.emux = true;
2019-11-28 18:35:55 +01:00
this.saveContext();
this.currentToc = toc;
this.reloadEditor();
2019-11-28 23:11:46 +01:00
this.displayToc();
return this.emux = false;
2019-11-28 18:35:55 +01:00
}
2019-11-26 22:35:25 +01:00
newAt(folder) {
2019-11-28 18:35:55 +01:00
this.tree.set("selectedItem", false);
2019-11-26 22:35:25 +01:00
this.book = new Book(folder);
2019-11-28 18:35:55 +01:00
this.book.treepath = this.book.path;
this.currentToc = void 0;
this.reloadEditor();
2019-11-26 22:35:25 +01:00
return this.displayToc();
}
displayToc() {
2019-11-28 18:35:55 +01:00
this.book.toc();
return this.tree.set("data", this.book);
2019-11-24 20:33:14 +01:00
}
};
Booklet.dependencies = ["mde/simplemde.min"];
this.OS.register("Booklet", Booklet);
BookletEntry = class BookletEntry {
2019-11-26 22:35:25 +01:00
constructor() {
2019-11-28 18:35:55 +01:00
this.name = "Untitled";
2019-11-24 20:33:14 +01:00
}
save() {}
remove() {}
toc() {}
2019-11-28 18:35:55 +01:00
updateName() {
var t;
if (!this.descFile.dirty) {
return this.name;
}
2019-11-28 23:11:46 +01:00
t = (new RegExp("^\s*#+(.*)\n", "g")).exec(this.descFile.cache);
2019-11-28 18:35:55 +01:00
if (!(t && t.length === 2)) {
return this.name;
2019-11-26 22:35:25 +01:00
}
2019-11-28 18:35:55 +01:00
return this.name = t[1].trim();
2019-11-26 22:35:25 +01:00
}
2019-11-28 23:11:46 +01:00
remove() {
var me;
me = this;
return new Promise(function(r, e) {
var f;
f = me.path.asFileHandler();
return f.meta(function(d) {
if (d.error) {
if (!me.parent) {
return r();
}
return me.parent.removeChild(me).then(function() {
return r();
}).catch(function(msg) {
return e(msg);
});
} else {
return f.remove(function(ret) {
if (ret.error) {
return e(ret.error);
}
if (!me.parent) {
return r();
}
return me.parent.removeChild(me).then(function() {
return r();
}).catch(function(msg) {
return e(msg);
});
});
}
});
});
}
2019-11-24 20:33:14 +01:00
};
BookletFolder = class BookletFolder extends BookletEntry {
2019-11-28 18:35:55 +01:00
constructor(type, path1, hasMeta) {
2019-11-26 22:35:25 +01:00
super();
2019-11-28 18:35:55 +01:00
this.type = type;
this.path = path1;
this.hasMeta = hasMeta;
2019-11-28 23:11:46 +01:00
this.cnt = 0;
2019-11-28 18:35:55 +01:00
this.nodes = [];
if (this.hasMeta) {
this.metaFile = `${this.path}/meta.json`.asFileHandler();
}
2019-11-28 23:11:46 +01:00
this.descFile = `${this.path}/INTRO.md`.asFileHandler();
2019-11-24 20:33:14 +01:00
}
2019-11-28 18:35:55 +01:00
add(chap) {
chap.parent = this;
2019-11-28 23:11:46 +01:00
this.nodes.push(chap);
if (this.hasMeta && this.metaFile) {
this.metaFile.dirty = true;
}
if (chap.metaFile && chap.hasMeta) {
chap.metaFile.dirty = true;
}
return this.cnt = this.cnt + 1;
}
removeChild(child) {
var me;
me = this;
//v.treepath = v.path for v in @nodes if @nodes
return new Promise(function(r, e) {
me.nodes.splice(me.nodes.indexOf(child), 1);
if (!(me.hasMeta && me.metaFile)) {
//if me.nodes.includes child
return r();
}
me.metaFile.dirty = true;
return me.updateMeta().then(function() {
return r();
}).catch(function(msg) {
return e(msg);
});
});
2019-11-24 20:33:14 +01:00
}
size() {
2019-11-28 18:35:55 +01:00
return this.nodes.length;
2019-11-24 20:33:14 +01:00
}
2019-11-28 18:35:55 +01:00
mkdir() {
var me;
2019-11-26 22:35:25 +01:00
me = this;
2019-11-28 18:35:55 +01:00
return new Promise(function(r, e) {
var dir;
dir = me.path.asFileHandler();
return dir.meta(function(d) {
var bname;
if (!d.error) {
return r();
}
bname = dir.basename;
dir = dir.parent().asFileHandler();
return dir.mk(bname, function(result) {
if (result.error) {
e(__("Error when create directory: {0}", result.error));
2019-11-26 22:35:25 +01:00
}
2019-11-28 18:35:55 +01:00
return r();
2019-11-26 22:35:25 +01:00
});
});
2019-11-28 18:35:55 +01:00
});
2019-11-26 22:35:25 +01:00
}
2019-11-28 18:35:55 +01:00
mkdirs() {
var me;
me = this;
return new Promise(function(r, e) {
var i, j, len, list, ref, v;
list = [];
2019-11-28 23:11:46 +01:00
if (me.type !== 'section') {
2019-11-28 18:35:55 +01:00
ref = me.nodes;
for (i = j = 0, len = ref.length; j < len; i = ++j) {
2019-11-24 20:33:14 +01:00
v = ref[i];
2019-11-28 18:35:55 +01:00
list[i] = v;
2019-11-24 20:33:14 +01:00
}
2019-11-28 18:35:55 +01:00
}
return me.mkdir().then(function() {
var fn;
fn = function(l) {
var el;
if (l.length === 0) {
return r();
}
el = (l.splice(0, 1))[0];
return el.mkdirs().then(function() {
return fn(l);
2019-11-28 23:11:46 +01:00
}).catch(function(msg) {
return e(msg);
2019-11-28 18:35:55 +01:00
});
};
return fn(list);
2019-11-28 23:11:46 +01:00
}).catch(function(msg) {
return e(msg);
});
});
}
updateMeta() {
var me;
me = this;
return new Promise(function(r, e) {
var entries, i, j, len, ref, v;
if (!me.metaFile.dirty) {
return r();
}
entries = [];
ref = me.nodes;
for (i = j = 0, len = ref.length; j < len; i = ++j) {
v = ref[i];
entries[i] = v.path;
}
me.metaFile.cache = entries;
return me.metaFile.write("object", function(d) {
if (d.error) {
return e(d.error);
}
me.metaFile.dirty = false;
console.log("saved " + me.metaFile.path);
return r();
});
});
}
update() {
var me;
me = this;
return new Promise(function(r, e) {
return me.updateMeta().then(function() {
if (!me.descFile.dirty) {
return r();
}
return me.descFile.write("text/plain", function(d) {
if (d.error) {
return e(d.error);
}
me.descFile.dirty = false;
console.log("saved " + me.descFile.path);
return r();
});
}).catch(function(msg) {
return e(msg);
2019-11-28 18:35:55 +01:00
});
});
2019-11-24 20:33:14 +01:00
}
2019-11-28 23:11:46 +01:00
updateAll() {
var me;
me = this;
return new Promise(function(r, e) {
var i, j, len, list, ref, v;
list = [];
ref = me.nodes;
for (i = j = 0, len = ref.length; j < len; i = ++j) {
v = ref[i];
list[i] = v;
}
return me.update().then(function() {
var fn;
fn = function(l) {
var el;
if (l.length === 0) {
return r();
}
el = (l.splice(0, 1))[0];
return el.updateAll().then(function() {
return fn(l);
}).catch(function(msg) {
return e(msg);
});
};
return fn(list);
}).catch(function(msg) {
return e(msg);
});
2019-11-28 18:35:55 +01:00
});
2019-11-24 20:33:14 +01:00
}
toc() {
2019-11-28 18:35:55 +01:00
var j, len, ref, v;
this.updateName();
ref = this.nodes;
for (j = 0, len = ref.length; j < len; j++) {
v = ref[j];
v.toc();
2019-11-26 22:35:25 +01:00
}
2019-11-28 18:35:55 +01:00
return this;
2019-11-26 22:35:25 +01:00
}
2019-11-24 20:33:14 +01:00
};
2019-11-28 18:35:55 +01:00
Book = class Book extends BookletFolder {
constructor(path) {
super('book', path, true);
2019-11-24 20:33:14 +01:00
}
2019-11-28 23:11:46 +01:00
save() {
var me;
me = this;
return new Promise(function(r, e) {
return me.mkdirs().then(function() {
return me.updateAll().then(function() {
return r();
}).catch(function(msg) {
return e(msg);
});
}).catch(function(msg) {
return e(msg);
});
});
}
2019-11-28 18:35:55 +01:00
};
2019-11-24 20:33:14 +01:00
2019-11-28 18:35:55 +01:00
BookletChapter = class BookletChapter extends BookletFolder {
constructor(book) {
var path;
2019-11-28 23:11:46 +01:00
path = `${book.path}/c_${book.cnt}`;
2019-11-28 18:35:55 +01:00
super('chapter', path, true);
book.add(this);
2019-11-24 20:33:14 +01:00
}
2019-11-28 18:35:55 +01:00
};
2019-11-26 22:35:25 +01:00
2019-11-28 18:35:55 +01:00
BookletSection = class BookletSection extends BookletFolder {
constructor(chapter) {
var path;
2019-11-28 23:11:46 +01:00
path = `${chapter.path}/s_${chapter.cnt}`;
super("section", path, true);
2019-11-28 18:35:55 +01:00
chapter.add(this);
2019-11-24 20:33:14 +01:00
}
};
BookletFile = class BookletFile extends BookletEntry {
constructor(section) {
2019-11-26 22:35:25 +01:00
super();
2019-11-24 20:33:14 +01:00
this.section = section;
2019-11-28 23:11:46 +01:00
this.hasMeta = false;
this.type = "file";
this.path = `${this.section.path}/f_${this.section.cnt}.md`;
2019-11-26 22:35:25 +01:00
this.descFile = this.path.asFileHandler();
2019-11-28 23:11:46 +01:00
this.section.add(this);
2019-11-24 20:33:14 +01:00
}
2019-11-28 23:11:46 +01:00
updateAll() {
var me;
2019-11-26 22:35:25 +01:00
me = this;
2019-11-28 23:11:46 +01:00
return new Promise(function(r, e) {
if (!me.descFile.dirty) {
return r();
}
return me.descFile.write("text/plain", function(d) {
if (d.error) {
return e(d.error);
2019-11-28 18:35:55 +01:00
}
2019-11-28 23:11:46 +01:00
me.descFile.dirty = false;
console.log("saved" + me.descFile.path);
return r();
2019-11-28 18:35:55 +01:00
});
2019-11-28 23:11:46 +01:00
});
2019-11-26 22:35:25 +01:00
}
2019-11-24 20:33:14 +01:00
toc() {
2019-11-28 18:35:55 +01:00
this.updateName();
return this;
2019-11-24 20:33:14 +01:00
}
};
}).call(this);