mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
143 lines
3.7 KiB
JavaScript
143 lines
3.7 KiB
JavaScript
/*!
|
|
* jquery.fancytree.debug.js
|
|
*
|
|
* Miscellaneous debug extensions.
|
|
* (Extension module for jquery.fancytree.js: https://github.com/mar10/fancytree/)
|
|
*
|
|
* Copyright (c) 2008-2017, Martin Wendt (http://wwWendt.de)
|
|
*
|
|
* Released under the MIT license
|
|
* https://github.com/mar10/fancytree/wiki/LicenseInfo
|
|
*
|
|
* @version 2.23.0
|
|
* @date 2017-05-27T20:09:38Z
|
|
*/
|
|
|
|
;(function($, window, document, undefined) {
|
|
|
|
"use strict";
|
|
|
|
// prevent duplicate loading
|
|
// if ( $.ui.fancytree && $.ui.fancytree.version ) {
|
|
// $.ui.fancytree.warn("Fancytree: duplicate include");
|
|
// return;
|
|
// }
|
|
|
|
|
|
/* *****************************************************************************
|
|
* Private functions and variables
|
|
*/
|
|
var i,
|
|
HOOK_NAMES = "nodeClick nodeCollapseSiblings".split(" "),
|
|
EVENT_NAMES = "activate beforeActivate".split(" "),
|
|
HOOK_NAME_MAP = {},
|
|
EVENT_NAME_MAP = {};
|
|
|
|
for(i=0; i<HOOK_NAMES.length; i++){ HOOK_NAME_MAP[HOOK_NAMES[i]] = true; }
|
|
for(i=0; i<EVENT_NAMES.length; i++){ EVENT_NAME_MAP[EVENT_NAMES[i]] = true; }
|
|
|
|
/* *****************************************************************************
|
|
* Extension code
|
|
*/
|
|
$.ui.fancytree.registerExtension({
|
|
name: "tracecalls",
|
|
version: "2.23.0",
|
|
// Default options for this extension.
|
|
options: {
|
|
logTarget: null, // optional redirect logging to this <div> tag
|
|
traceEvents: false, // `true`or list of hook names
|
|
traceHooks: false // `true`or list of event names
|
|
},
|
|
// Overide virtual methods for this extension.
|
|
// `this` : is this Fancytree object
|
|
// `this._super`: the virtual function that was overridden (member of prev. extension or Fancytree)
|
|
treeInit: function(ctx){
|
|
var tree = ctx.tree;
|
|
|
|
// Bind init-handler to apply cookie state
|
|
tree.$div.bind("fancytreeinit", function(event){
|
|
tree.debug("COOKIE " + document.cookie);
|
|
});
|
|
// Init the tree
|
|
this._superApply(arguments);
|
|
},
|
|
nodeClick: function(ctx) {
|
|
if(this.options.tracecalls.traceHooks){
|
|
this.debug();
|
|
}
|
|
},
|
|
nodeCollapseSiblings: function(ctx) {
|
|
},
|
|
nodeDblclick: function(ctx) {
|
|
},
|
|
nodeKeydown: function(ctx) {
|
|
},
|
|
nodeLoadChildren: function(ctx, source) {
|
|
},
|
|
nodeOnFocusInOut: function(ctx) {
|
|
},
|
|
nodeRemoveChildMarkup: function(ctx) {
|
|
},
|
|
nodeRemoveMarkup: function(ctx) {
|
|
},
|
|
nodeRender: function(ctx, force, deep, collapsed, _recursive) {
|
|
},
|
|
nodeRenderStatus: function(ctx) {
|
|
},
|
|
nodeRenderTitle: function(ctx, title) {
|
|
},
|
|
nodeSetActive: function(ctx, flag, callOpts) {
|
|
},
|
|
nodeSetExpanded: function(ctx, flag, callOpts) {
|
|
},
|
|
nodeSetFocus: function(ctx) {
|
|
},
|
|
nodeSetSelected: function(ctx, flag, callOpts) {
|
|
},
|
|
nodeSetStatus: function(ctx, status, message, details) {
|
|
},
|
|
nodeToggleExpanded: function(ctx) {
|
|
},
|
|
nodeToggleSelected: function(ctx) {
|
|
},
|
|
treeClear: function(ctx) {
|
|
},
|
|
treeCreate: function(ctx) {
|
|
},
|
|
treeDestroy: function(ctx) {
|
|
},
|
|
// treeInit: function(ctx) {
|
|
// },
|
|
treeLoad: function(ctx, source) {
|
|
},
|
|
treeSetFocus: function(ctx, flag) {
|
|
}
|
|
});
|
|
|
|
}(jQuery, window, document));
|
|
|
|
|
|
|
|
/* *****************************************************************************
|
|
* Fancytree extension: profiler
|
|
*/
|
|
;(function($, window, document, undefined) {
|
|
$.ui.fancytree.registerExtension({
|
|
name: "profiler",
|
|
version: "2.23.0",
|
|
// Default options for this extension
|
|
options: {
|
|
prefix: ""
|
|
},
|
|
// Overide virtual methods for this extension
|
|
nodeRender: function(ctx, force, deep, collapsed){
|
|
// ctx.tree.debug("**** PROFILER nodeRender");
|
|
var s = this.options.prefix + "render '" + ctx.node + "'";
|
|
/*jshint expr:true */
|
|
window.console && window.console.time && window.console.time(s);
|
|
this._superApply(arguments);
|
|
window.console && window.console.timeEnd && window.console.timeEnd(s);
|
|
}
|
|
});
|
|
}(jQuery, window, document));
|