all repos — litestore @ caa4649c94c27f6423822d2d0d615671969a7616

A minimalist nosql document store.

admin/js/components/htmldoc.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
(function(){
  'use strict';
  var app = window.LS || (window.LS = {});
  var u = app.utils;

  // HTMLDoc Module
  app.htmldoc = {vm: {}};
  app.htmldoc.vm.init = function() {
    var vm = this;
    vm.id = m.prop(m.route.param("id"));
    vm.content = Doc.get(vm.id()).then(function(content){
      return $("<div>").html(content.data).html();
    }, vm.flashError);
    vm.view = function(){
      m.route("/document/view/"+vm.id());
    };
    vm.links = m.prop([{action: vm.view, title: "View Source", icon: "code"}]);
  };
  app.htmldoc.main = function(){
    return m("article.row", [
      u.toolbar({links: app.htmldoc.vm.links()}), 
      m.trust(app.htmldoc.vm.content())
    ]);
  };

  u.layout(app.htmldoc);

}());