app/js/modules.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
(function(){ 'use strict'; var app = window.LS || (window.LS = {}); var u = LS.utils; // Info Module app.info = {vm: {}}; app.info.vm.init = function() { this.content = Info.get(); }; app.info.main = function(){ var info = app.info.vm.content(); var infolist = m("dl", [ m("dt", "Version"), m("dd", info.version), m("dt", "Size"), m("dd", info.size), m("dt", "Total Documents"), m("dd", info.total_documents), m("dt", "Total Tags"), m("dd", info.total_tags) ]); var taglist = m("ul", info.tags.map(function(tag){ var key = Object.keys(tag)[0]; return m("li", [m("a", {href: "/tags/"+key, config: m.route}, key+" ("+tag[key]+")")]); }) ); var v = m(".row", [ m(".col-md-6", [u.panel({title: "Datastore Information", content: infolist})]), m(".col-md-6", [u.panel({title: "Tags", content: taglist})]) ]); return v; }; // Tags Module app.tags = {vm: {}}; app.tags.vm.init = function(){ this.id = m.route.param("id"); this.docs = Doc.getByTag(this.id); }; app.tags.main = function(){ var docs = app.tags.vm.docs(); var title = m("h2", ["Tag: ", m("em", docs.tags)]); var table = m("table.table.table-bordered.table-hover", [ m("thead", [ m("tr", [ m("th", "ID"), m("th", "Created"), m("th", "Modified"), m("th", "Tags") ]) ]), m("tbody", [ docs.results.map(function(d){ return m("tr", [ m("td", u.doclink(d.id)), m("td", u.date(d.created)), m("td", u.date(d.modified)), m("td", d.tags.map(function(t){return u.taglink(t);})), ]); }) ]) ]); return m(".row", [ title, m("p", "Total: "+docs.total), table ]); }; app.document = {vm: {}}; app.document.vm.init = function() { var vm = this; this.id = m.route.param("id"); this.ext = this.id.match(/\.(.+)$/)[1]; this.getDoc = function(cb){ vm.doc = Doc.get(vm.id); vm.doc.then(function(doc){ vm.content = doc.data; }); }; this.getDoc(); this.state = "view"; switch (this.ext){ case 'js': this.mode = "javascript"; break; case 'css': this.mode = "css"; break; case 'html': this.mode = "html"; break; case 'json': this.mode = "json"; break; case 'md': this.mode = "markdown"; break; default: this.mode = "text"; } this.edit = function(){ vm.state = "edit"; vm.editor.setReadOnly(false); }; this.save = function(){ var doc = {}; doc.id = vm.doc().id; doc.tags = vm.doc().tags; doc.data = vm.editor.getValue(); Doc.put(doc).then(function(){ m.route(m.route()); }); }; this.cancel = function(){ vm.state = "view"; vm.editor.setReadOnly(true); m.route(m.route()); }; this.tools = function(){ switch (vm.state){ case "view": return [ {title: "Edit", icon: "edit", action: vm.edit} ]; default: return [ {title: "Save", icon: "save", action: vm.save}, {title: "Cancel", icon: "times-circle", action: vm.cancel} ]; } }; }; app.document.main = function(){ var vm = app.document.vm; var title = m("span",[vm.id, m("span.pull-right", vm.doc().tags.map(function(t){return u.taglink(t);}))]); return m("div", [ m(".row", [u.toolbar({links: vm.tools()})]), m(".row", [u.panel({title: title, content:app.editor.view(vm)})]) ]); }; // Guide Module app.guide = {vm: {}}; app.guide.vm.init = function() { this.id = m.route.param("id"); this.content = Page.get(this.id); }; app.guide.main = function(){ return m("article.row", m.trust(app.guide.vm.content())); }; u.layout(app.guide); u.layout(app.info); u.layout(app.tags); u.layout(app.document); }()); |