Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
ember-drop-zone
Advanced tools
Ember-drop-zone is an Ember-cli addon that provides a drop-zone component.
ember install ember-drop-zone
Create a drop-zone using the {{drop-zone}}
component.
{{#drop-zone action=(action "doSomething")}}
drop items here...
{{/drop-zone}}
Then handle the action in your controller or component.
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
doSomething(droppedItem) {
// do something with `droppedItem`
}
}
});
By default the DropZoneComponent
component will extract string data from the event.dataTransfer
object.
The DropZoneComponent
be setup to enable dropping files onto it. First, you need to import the getFiles
method into your controller or component.
import getFiles from 'ember-drop-zone/utils/get-files';
export default Ember.Component.extend({
getFiles
});
Then assign the getFiles
method to the getData
method of the DropZoneComponent
. This will change the behavior of the DropZoneComponent
so that it will extract files from the event.dataTransfer
object instead of text.
{{#drop-zone action=(action "doSomething") getData=getFiles}}
Drop files here...
{{/drop-zone}}
You can use the DroppableMixin
to create your own drop-zone.
// my-drop-zone.js
import Ember from 'ember';
import DroppableMixin from 'ember-drop-zone/mixins/droppable';
export default Ember.Component.extend(DroppableMixin, {
drop(event) {
// do something...
}
});
You can use the DraggableMixin
to create a draggable component. Add the DraggableMixin
to a component that you want to make draggable.
import Ember from 'ember';
import DraggableMixin from 'ember-drop-zone/mixins/draggable';
export default Ember.Component.extend(DraggableMixin, {
// ...
});
By default the DraggableMixin
will look for a model
on the component and send
the id
and type
of that model encoded as JSON to the event.dataTransfer
Object.
git clone <repository-url>
this repositorycd ember-drop-zone
npm install
bower install
ember serve
npm test
(Runs ember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://ember-cli.com/.
FAQs
Ember drop zone
We found that ember-drop-zone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.