Ember components to build drag-and-drop multi-column grids powered by gridstack.js
- Ember.js v3.12 or above
- Ember CLI v2.13 or above
- Node.js v10 or above
Installation
ember install ember-gridstack
Used to construct a grid-stack layout
{{grid-stack}}
can take an options
object attribute to configure the grid. All gridstack grid options are valid and take the form data-gs-{option}
. However, when using {{grid-stack}}
the data-gs
is omitted.
Example:
The full list of options can be found here: https://github.com/troolee/gridstack.js/tree/master/doc#grid-attributes
All gridstack events can be handled as Ember actions. They take the form on{Eventname}
.
Example:
The full list of events can found here: https://github.com/troolee/gridstack.js/tree/master/doc#events
The {{grid-stack}}
component uses the block form to yield {{grid-stack-item}}
components. In addition, {{grid-stack}}
yields a reference to itself in the case inner components need the reference or would like to listen to events triggered on the grid element.
Example:
Used to construct a grid item inside a {{grid-stack}}
component
{{grid-stack-item}}
can take an options
object attribute to configure the grid item. All gridstack item options are valid and take the form data-gs-{option}
. However, when using {{grid-stack-item}}
the data-gs
is omitted.
Example:
The full list of options can be found here: https://github.com/troolee/gridstack.js/tree/master/doc#item-attributes
The {{grid-stack-item}}
component uses the block form to yield the content of the item. In addition, {{grid-stack-item}}
yields a reference to itself in the case inner components need the reference or would like to listen to events triggered on the grid.
Example:
//custom-component.js
export default Ember.Component.extend({
didInsertElement() {
this._super(...arguments);
this.parentContainer.element.addEventListener('resizestop', () => {
//handle resize
});
}
});
For touch support do the following
By default, the bower dependencies for Gridstack will be installed automatically.