DragItem

class webix.DragItem()

Dragitem mixin

References

mixins
AutoScroll(), DragOrder(), Touch().
helpers
assert(), delay(), extend().

Referenced by

mixins
Touch().
views
dataview(), list(), tree().

External references

Official documentation page.

Code

  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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
webix.DragItem={
    //helper - defines component's container as active zone for dragging and for dropping
    _initHandlers:function(obj, source, target){
        if (!source) webix.DragControl.addDrop(obj._contentobj,obj,true);
        if (!target) webix.DragControl.addDrag(obj._contentobj,obj);
        this.attachEvent("onDragOut",function(a,b){ this.$dragMark(a,b); });
        this.attachEvent("onBeforeAutoScroll",function(){
            var context = webix.DragControl.getContext();
            return !!(webix.DragControl._active && context && (context.to === this || this._auto_scroll_force));
        });
    },
    drag_setter:function(value){
        if (value){
            webix.extend(this, webix.AutoScroll, true);
            if (value == "order")
                webix.extend(this, webix.DragOrder, true);
            if (value == "inner")
                this._inner_drag_only = true;

            this._initHandlers(this, value == "source", value == "target");
            delete this.drag_setter;    //prevent double initialization
        }
        return value;
    },
    /*
        s - source html element
        t - target html element
        d - drop-on html element ( can be not equal to the target )
        e - native html event
    */
    //called when drag moved over possible target
    $dragIn:function(s,t,e){
        var id = this.locate(e) || null;
        var context = webix.DragControl._drag_context;

        //in inner drag mode - ignore dnd from other components
        if ((this._inner_drag_only || context.from._inner_drag_only) && context.from !== this) return false;

        var to = webix.DragControl.getMaster(t);
        //previous target
        var html = (this.getItemNode(id, e)||this._dataobj);
        //prevent double processing of same target
        if (html == webix.DragControl._landing) return html;
        context.target = id;
        context.to = to;

        if (this._auto_scroll_delay)
            this._auto_scroll_delay = window.clearTimeout(this._auto_scroll_delay);

        this._auto_scroll_delay = webix.delay(function(pos,id){
            this._drag_pause(id);
            this._auto_scroll(pos,id);
        }, this, [webix.html.pos(e), id], 250);

        if (!this.$dropAllow(context, e)  || !this.callEvent("onBeforeDragIn",[context, e])){
            context.to = context.target = null;
            if (this._auto_scroll_delay)
                this._auto_scroll_delay = window.clearTimeout(this._auto_scroll_delay);
            return null;
        }
        //mark target only when landing confirmed
        this.$dragMark(context,e);
        return html;
    },
    $dropAllow:function(){
        return true;
    },
    _drag_pause:function(id){
        //may be reimplemented in some components
        // tree for example
    },
    _target_to_id:function(target){
        return target && typeof target === "object" ? target.toString() : target;
    },
    //called when drag moved out from possible target
    $dragOut:function(s,t,n,e){
        var id = (this._viewobj.contains(n) ? this.locate(e): null) || null;
        var context = webix.DragControl._drag_context;

        //still over previous target
        if ((context.target||"").toString() == (id||"").toString()) return null;
        if (this._auto_scroll_delay){
            this._auto_scroll_force = null;
            this._auto_scroll_delay = window.clearTimeout(this._auto_scroll_delay);
        }

        //unmark previous target
        context.target = context.to = null;
        this.callEvent("onDragOut",[context,e]);
        return null;
    },
    //called when drag moved on target and button is released
    $drop:function(s,t,e){
        if (this._auto_scroll_delay)
            this._auto_scroll_delay = window.clearTimeout(this._auto_scroll_delay);

        var context = webix.DragControl._drag_context;
        //finalize context details
        context.to = this;
        var target = this._target_to_id(context.target);

        if (this.getBranchIndex){
            if (target){
                context.parent = this.getParentId(target);
                context.index = this.getBranchIndex(target);
            }
        } else
            context.index = target?this.getIndexById(target):this.count();

        //unmark last target
        this.$dragMark({}, e);

        if( context.from && context.from != context.to && context.from.callEvent ){
            context.from.callEvent("onBeforeDropOut", [context,e]);
        }

        if (!this.callEvent("onBeforeDrop",[context,e])) return;
        //moving
        this._context_to_move(context,e);

        this.callEvent("onAfterDrop",[context,e]);
    },
    _context_to_move:function(context,e){
        webix.assert(context.from, "Unsopported d-n-d combination");
        if (context.from){    //from different component
            var details = { parent: context.parent, mode: context.pos };
            context.from.move(context.source,context.index,context.to, details);
        }
    },
    _getDragItemPos: function(pos,e){
        if (this.getItemNode){
            var id = this.locate(e, true);
            return id?webix.html.offset(this.getItemNode(id)):null;
        }
    },
    //called when drag action started
    $drag:function(s,e){
        var id = this.locate(e, true);
        if (id){
            var list = [id];

            if (this.getSelectedId && !this._do_not_drag_selection){ //has selection model
                //if dragged item is one of selected - drag all selected
                var selection = this.getSelectedId(true, true);

                if (selection && selection.length > 1 && webix.PowerArray.find.call(selection,id)!=-1){
                    var hash = {};
                    var list = [];
                    for (var i=0;i<selection.length; i++)
                        hash[selection[i]]=true;
                    for (var i = 0; i<this.data.order.length; i++){
                        var hash_id = this.data.order[i];
                        if (hash[hash_id])
                            list.push(hash_id);
                    }
                }
            }
            //save initial dnd params
            var context = webix.DragControl._drag_context= { source:list, start:id };
            context.fragile = (this.addRowCss && webix.env.touch && ( webix.env.isWebKit || webix.env.isFF ));
            context.from = this;

            if (this.callEvent("onBeforeDrag",[context,e])){
                if (webix.Touch)
                    webix.Touch._start_context = null;

                //set drag representation
                return context.html||this.$dragHTML(this.getItem(id), e);
            }
        }
        return null;
    },
    $dragHTML:function(obj, e){
        return this._toHTML(obj);
    },
    $dragMark:function(context, ev){
        var target = null;
        if (context.target)
            target = this._target_to_id(context.target);

        //touch webkit will stop touchmove event if source node removed
        //datatable can't repaint rows without repainting
        if (this._marked && this._marked != target){
            if (!context.fragile) this.removeCss(this._marked, "webix_drag_over");
            this._marked = null;
        }

        if (!this._marked && target){
            this._marked = target;
            if (!context.fragile) this.addCss(target, "webix_drag_over");
            return target;
        }

        if (context.to){
            return true;
        }else
            return false;
    }
};