I'm doing a drag and drop plugin with a colleague, but we're having a problem. When we instantiate the plugin it runs normally, but if we want to call some function of this plugin in the variable in which it was instantiated we always have to instantiate it again, which has generated bugs.
I instantiate the plugin:
var dad = $('.dad').dad();
And then I want to call the function to getPosition
to know the final order of the items.
var ordem = dad.getPosition();
But it says getPosition is not a function on the console. The only way to make it work is by instantiating the plugin again.
var ordem = dad.dad().getPosition();
The code for the plugin follows.
$(function(){
function O_dad(){
var self=this;
this.x=0;
this.y=0;
this.target=false;
this.clone=false;
this.placeholder=false;
this.cloneoffset={x:0,y:0};
this.move=function(e){
self.x=e.pageX;
self.y=e.pageY;
if (self.clone!=false && self.target!=false){
self.clone.css({top:self.y-self.cloneoffset.y,left:self.x-self.cloneoffset.x});
}else{
}
};
$(window).on('mousemove',function(e){
self.move(e)
});
}
$.prototype.dad=function(opts){
var me=this;
$(this).each(function(){
var mouse;
mouse=new O_dad();
var target,active,callback,daddy,childrenClass,jQclass,cloneClass;
childrenClass='dads-children';
cloneClass='dads-children-clone';
jQclass='.dads-children';
daddy=$(this);
daddy.addClass('dad-container');
if ( typeof opts != "undefined" && typeof opts.target !== 'undefined'){
target=daddy.find(opts.target);
}else{
target=daddy.children();
}
if ( typeof opts != "undefined" && typeof opts.callback !== 'undefined'){
callback=opts.callback;
}else{
callback=false;
}
me.addDropzone=function(selector,func){
$(selector).on('mouseenter',function(){
if (mouse.target!=false) {
mouse.placeholder.css({display: 'none'});
mouse.target.css({display: 'none'});
$(this).addClass('active');
}
}).on('mouseup',function(){
if (mouse.target!=false) {
mouse.placeholder.css({display: 'block'});
mouse.target.css({display: 'block'});
func(mouse.target);
children_replace();
}
$(this).removeClass('active');
}).on('mouseleave',function(){
if (mouse.target!=false){
mouse.placeholder.css({display: 'block'});
mouse.target.css({display: 'block'});
}
$(this).removeClass('active');
});
};
me.getPosition=function(){
var positionArray = [];
$(this).find(jQclass).each(function(){
positionArray[$(this).attr('data-dad-id')]=parseInt($(this).attr('data-dad-position'));
});
return positionArray;
};
$(document).on('mouseup',function(){
children_replace();
});
function children_replace(){
if (mouse.target!=false && mouse.clone!=false){
if (callback!=false){
callback(mouse.target);
}
var appear=mouse.target;
var desapear=mouse.clone;
var holder=mouse.placeholder;
var bLeft =0;Math.floor(parseFloat(daddy.css('border-left-width')));
var bTop =0;Math.floor(parseFloat(daddy.css('border-top-width')));
if ($.contains(daddy[0],mouse.target[0])){
mouse.clone.animate({top:mouse.target.offset().top-daddy.offset().top-bTop,left:mouse.target.offset().left-daddy.offset().left-bLeft},300,function(){
appear.css({visibility:'visible'}).removeClass('active');
desapear.remove();
});
}else{
mouse.clone.fadeOut(300,function(){
desapear.remove();
})
}
holder.remove();
mouse.clone=false;
mouse.placeholder=false;
mouse.target=false;
update_position(daddy);
}
$("html,body").removeClass('dad-noSelect');
}
function children_update(obj){
if (mouse.target!=false && mouse.clone!=false) {
var newplace, origin;
origin = $('<span style="display:none"></span>');
newplace = $('<span style="display:none"></span>');
if (obj.prevAll().hasClass('active')){
obj.after(newplace);
}else{
obj.before(newplace);
}
mouse.target.before(origin);
newplace.before(mouse.target);
//update placeholder
mouse.placeholder.css({
top:mouse.target.offset().top-daddy.offset().top,
left:mouse.target.offset().left-daddy.offset().left,
width: mouse.target.outerWidth()-10,
height: mouse.target.outerHeight()-10
});
//origin.before(obj);
origin.remove();
newplace.remove();
}
}
var order = 1;
target.addClass(childrenClass).each(function(){
if($(this).data('dad-id')==undefined){
$(this).attr('data-dad-id',order);
}
$(this).attr('data-dad-position',order);
order++;
});
function update_position(e){
var order = 1;
e.find(jQclass).each(function(){
$(this).attr('data-dad-position',order);
order++;
});
}
daddy.find(jQclass).on('mousedown touchstart',function(e){
if (mouse.target==false && e.which==1 && active==true){
// GET TARGET
mouse.target=$(this);
// ADD CLONE
mouse.clone=mouse.target.clone();
mouse.target.css({visibility:'hidden'}).addClass('active');
mouse.clone.addClass(cloneClass);
daddy.append(mouse.clone);
// ADD PLACEHOLDER
mouse.placeholder=$('<div></div>');
mouse.placeholder.addClass('dads-children-placeholder');
mouse.placeholder.css({
top:mouse.target.offset().top-daddy.offset().top,
left:mouse.target.offset().left-daddy.offset().left,
width: mouse.target.outerWidth()-10,
height: mouse.target.outerHeight()-10,
lineHeight: mouse.target.height()-18+'px'
}).text('drop here');
daddy.append(mouse.placeholder);
// GET OFFSET FOR CLONE
var difx,dify;
var bLeft =Math.floor(parseFloat(daddy.css('border-left-width')));
var bTop =Math.floor(parseFloat(daddy.css('border-top-width')));
difx=mouse.x-mouse.target.offset().left+daddy.offset().left+bLeft;
dify=mouse.y-mouse.target.offset().top+daddy.offset().top+bTop;
mouse.cloneoffset.x=difx;
mouse.cloneoffset.y=dify;
// REMOVE THE CHILDREN DAD CLASS AND SET THE POSITION ON SCREEN
mouse.clone.removeClass(childrenClass).css({
position:'absolute',
top:mouse.y-mouse.cloneoffset.y,
left:mouse.x-mouse.cloneoffset.x
});
// UNABLE THE TEXT SELECTION AND SET THE GRAB CURSOR
$("html,body").addClass('dad-noSelect');
}
}).on('mouseenter',function(){
children_update($(this));
});
});
return this;
};
});