Forked from djodonnell/controllers.application\.js
Last active
March 19, 2021 02:59
-
-
Save Gaurav0/b9adfc02c351f881b05c7032d18812e7 to your computer and use it in GitHub Desktop.
Ember InteractJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Controller from '@ember/controller'; | |
import { action } from '@ember/object'; | |
export default class AnimationSimpleDivDrag extends Controller { | |
// initialise grid properties | |
dragCardPositionDelta = { dx: 0, dy: 0 }; | |
isDraggingCard = false; | |
constructor(...args) { | |
super(...args); | |
this.draggableCards = interact('.draggable-card'); | |
this.draggableCards.draggable({ | |
inertia: false, | |
listeners: { | |
start: this.dragStart.bind(this), | |
move: this.dragMove.bind(this), | |
end: this.dragEnd.bind(this) | |
} | |
}); | |
}; | |
@action | |
dragStart(event) { | |
this.isDraggingCard = true; | |
this.dragCardPositionDelta = { dx: 0, dy: 0 }; | |
}; | |
@action | |
dragMove(event) { | |
var target = event.target | |
// keep the dragged position in the data-x/data-y attributes | |
var x = (parseFloat(target.getAttribute('data-x')) || 0) + event.dx | |
var y = (parseFloat(target.getAttribute('data-y')) || 0) + event.dy | |
this.dragCardPositionDelta = { dx: x, dy: y }; | |
// translate the element | |
target.style.webkitTransform = | |
target.style.transform = | |
'translate(' + x + 'px, ' + y + 'px)' | |
// update the posiion attributes | |
target.setAttribute('data-x', x) | |
target.setAttribute('data-y', y) | |
}; | |
@action | |
dragEnd(event) { | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.17.1", | |
"EmberENV": { | |
"FEATURES": {}, | |
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false, | |
"_APPLICATION_TEMPLATE_WRAPPER": true, | |
"_JQUERY_INTEGRATION": true | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js", | |
"ember": "3.18.1", | |
"ember-template-compiler": "3.18.1", | |
"ember-testing": "3.18.1", | |
"interactjs": "https://cdn.jsdelivr.net/npm/[email protected]/dist/interact.min.js" | |
}, | |
"addons": { | |
"@glimmer/component": "1.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment