| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- var historyPlugin = require("./history");
- const PLUGIN_NAME = "History";
- /**
- * @type {{plugin: Function, plugin:name: string, markup: string}}
- */
- module.exports = {
- /**
- * @param ui
- * @param bs
- */
- "plugin": function (ui, bs) {
- ui.history = historyPlugin.init(ui, bs);
- },
- /**
- * Hooks
- */
- "hooks": {
- "markup": fileContent("history.html"),
- "client:js": fileContent("/history.client.js"),
- "templates": [
- getPath("/history.directive.html")
- ],
- "page": {
- path: "/history",
- title: PLUGIN_NAME,
- template: "history.html",
- controller: PLUGIN_NAME + "Controller",
- order: 3,
- icon: "list2"
- }
- },
- /**
- * Plugin name
- */
- "plugin:name": PLUGIN_NAME
- };
- /**
- * @param filepath
- * @returns {*}
- */
- function getPath (filepath) {
- return require("path").join(__dirname, filepath);
- }
- /**
- * @param filepath
- * @returns {*}
- */
- function fileContent (filepath) {
- return require("fs").readFileSync(getPath(filepath), "utf-8");
- }
|