zhaojs
2023-06-27 0a0d605f68e0f02d518b9106b7433067a18b07c4
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
/**
 * ### Conditionalselect plugin
 *
 * This plugin allows defining a callback to allow or deny node selection by user input (activate node method).
 */
/*globals jQuery, define, exports, require, document */
(function (factory) {
    "use strict";
    if (typeof define === 'function' && define.amd) {
        define('jstree.conditionalselect', ['jquery','./jstree.js'], factory);
    }
    else if(typeof exports === 'object') {
        factory(require('jquery'), require('./jstree.js'));
    }
    else {
        factory(jQuery, jQuery.jstree);
    }
}(function ($, jstree, undefined) {
    "use strict";
 
    if($.jstree.plugins.conditionalselect) { return; }
 
    /**
     * a callback (function) which is invoked in the instance's scope and receives two arguments - the node and the event that triggered the `activate_node` call. Returning false prevents working with the node, returning true allows invoking activate_node. Defaults to returning `true`.
     * @name $.jstree.defaults.checkbox.visible
     * @plugin checkbox
     */
    $.jstree.defaults.conditionalselect = function () { return true; };
    $.jstree.plugins.conditionalselect = function (options, parent) {
        // own function
        this.activate_node = function (obj, e) {
            if(this.settings.conditionalselect.call(this, this.get_node(obj), e)) {
                return parent.activate_node.call(this, obj, e);
            }
        };
    };
 
}));