Responsive draggable and resizable grid layout for VueJS. Its responsiveness is based on breakpoints (similar to Bootstrap).
It's based on https://github.com/STRML/react-grid-layout
- https://jsfiddle.net/w768wv2f/13/ - component wrapped inside of
grid-item
withheightFromChildren
prop used. - https://jsfiddle.net/w768wv2f/14/ - simple component wrapped inside slot with own height taken from layout.
- Clone project.
- run
$ npm run dev
npm install vue-responsive-grid-layout
import {VueResponsiveGridLayout, VueGridItem } from 'vue-responsive-grid-layout'
Vue.component('vue-responsive-grid-layout', VueResponsiveGridLayout)
Vue.component('vue-grid-item', VueGridItem)
FIX to responsivness
watch: {
layouts: {
handler: function(val, oldVal) {
this.prepareLayoutsFromProps(this.layouts);
},
deep: true
},
},
Layouts from props are deeply watched and currentLayout in component is synchronized with it.
It grants us ability to make layouts reactive and make the layouts possible to work with Vuex.
DEPREACTED
EDIT: FIX to Desynchronitizing
GridLayout has its own state now. Layouts from prop is taken only for the first time.
To change layout inside the component use switchLayout method.
Vue Responsive Grid Layout uses scoped slot inside to get some props.
<slot :containerWidth="containerWidth" :layout="currentLayout" :cols="currentCols">
You can use it to send containerWidth, currentLayout and cols for grid-items.
breakpoint: {
type: String,
required: false,
default: 'lg'
},
cols: {
type: Number,
required: false,
default: 12
},
rowHeight: {
required: false,
type: Number,
default: 10
},
layouts: {
type: Object,
required: true,
},
// ("horizontal" | "vertical")
compactType: {
type: String,
required: false,
default: "vertical"
},
preventCollision: {
type: Boolean,
required: false,
default: false
},
breakpoints: {
type: Object,
required: false,
default: () => { return { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 } }
},
colsAll: {
type: Object,
required: false,
default: () => { return { lg: 12, md: 6, sm: 4, xs: 2, xxs: 1 } }
},
initOnStart : {
type: Boolean,
required: false,
default: true
},
className : {
required: false,
type: String,
default: ""
},
providerSelector: {
required: false,
type: String
},
disabled: {
required: false,
type: Boolean,
default: false
},
makeUpdateOnWidthChange: {
required: false,
type: Boolean,
default: true
}
Actual breakpoint. Default is "lg".
Number of cols. Default is 12.
Layouts object for example:
{
"lg" : [
{ x: 0, y: 0, w: 1, h: 1, i: "1" },
{ x: 1, y: 0, w: 1, h: 1, i: "2" },
],
"md" : [
{ x: 0, y: 1, w: 1, h: 1, i: "1" },
{ x: 1, y: 1, w: 1, h: 1, i: "2" },
]
}
Type of compacting layout. Default "vertical"
.
verticalCompact - deleted
Grants option to choose compacting type.
Preventing collisions. Makes some grid items static.
Breakpoints object which define width for breakpoints.
Default { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 }
.
Height of one grid unit row for placeholder.
Defines cols for given breakpoints.
Default { lg: 12, md: 6, sm: 4, xs: 2, xxs: 1 }
.
Defines if GridLayout should be inited on start or wait for user to do that.
Helpful when we are waiting for data from API call.
Defines additional classes for grid layout.
Default css class is vue-responsive-grid-layout
.
Defines selector for width-provider. Default VueResponsiveGridLayout.
When disabled, layout is not updating its state with props.
When width is changed this props grants the updateLayout event call additionally
@layoutInit - deleted
There is no more this event. It's @layout-ready
now.
This event is emitted when layouts object from props is ready to initLayout()
.
This event is emitted when layouts object is empty or null. initLayout()
is not available.
This event is emitted when layout is inited, after initLayout()
function.
This event is emitted when layout is not inited due to error.
Grants information that layouts object was switched.
This event is emitted when there was an error with switching.
Event emitted after layout is synchronized.
This event is emitted when there was an error with synchronize.
Emitted after breakpoint is changed. It occurs when width is changed (window is resized etc.).
Emitted when layout is changed with onWidthChange()
Emitted after width of window is changed the.
Emitted after width changing is failed.
Grants information that all gridItems was height updated.
Emitted after there were errors with layout height updating.
Grants information that all gridItems was resized with resizeAllItems
.
Emitted after there were errors with layout resizing.
Emitted after width is get from width-provider.
Every time layout is updated it emits this event.
Function that runs initLayout when initOnStart
is true
.
We can use it for example: this.$refs.layout.initLayout()
.
Function that updates all grid-items height.
If heightFromChildren
prop is true on vue-grid-item
, height is updated based on DOM height.
Function resizes all grid-items width based on arguments.
- If mode is
false
and cols isfalse
, then every grid-item gets its defaultSize. - If mode is
true
and cols isfalse
, then every grid-item gets width of the whole component. - If cols is a number it makes every grid-item to get width represented by cols.
Function grants abbility to change layouts object to new one. It's good when we have more dashboards or something.
minW: {
type: Number,
default: 1
},
maxW: {
type: Number,
default: Infinity
},
minH: {
type: Number,
default: 1
},
maxH: {
type: Number,
default: 1
},
resizableProps : {
type: Object,
required: false
},
draggableCoreProps : {
type: Object,
required: false
},
noTouchAction : {
type: Boolean,
default: true,
},
touchAction: {
type: String,
default: 'none',
},
heightFromChildren: {
required: false,
type: Boolean,
default: false
},
containerWidth: {
required: true,
default: 0
},
cols: {
required: false,
type: Number,
default: 8,
},
rowHeight: {
required: false,
type: Number,
default: 10
},
margin: {
required: false,
type: Array,
default: () => [10, 10]
},
maxRows: {
required: false,
type: Number,
default: Infinity
},
containerPadding: {
required: false,
type:Array,
default: () => [5, 5]
},
x: {
type: Number,
required: true
},
y: {
type: Number,
required: true
},
w: {
type: Number,
required: true
},
h: {
type: Number,
required: true
},
i: {
type: String,
required: true
},
isDraggable: {
required: false,
type: Boolean,
default: true
},
isResizable: {
required: false,
type: Boolean,
default: true
},
static: {
required: false,
type: Boolean,
default: false
},
useCSSTransforms: {
required: false,
type: Boolean,
default: true
},
className: {
required: false,
type: String,
default: ""
},
dragContainerClass: {
required: false,
type: String,
default: "vue-grid-draggable-container"
},
handle: {
required: false,
type: String,
default: ""
},
cancel: {
required: false,
type: String,
default: ""
},
onDragStart: {
type: Function,
default: () => {}
},
onDrag: {
type: Function,
default: () => {}
},
onDragStop: {
type: Function,
default: () => {}
},
placeholder: {
type: Boolean,
default: false
},
usePercentages: {
required: false,
type: Boolean,
default: false
},
componentprops: {
type: Object,
required: false
},
component: {
required: false
},
defaultSize: {
required: false,
default: 2
},
canBeResizedWithAll: {
required: false,
default: true,
type: Boolean
}
Props for ResizableProps inside vue-grid-item
.
Props for DraggableCore inside vue-grid-item
.
If false, grantstouch-action: none; style to component. Preventing from scrolling on mobile devices.
Attention! : Be careful when using this prop. You can make scrolling off on mobile devices.
Define which touchAction are added. Default none;
Defines if height of grid-item should be based on component inside or not.
Width of container, it is needed to calculate the width of items.
Needed to calculate items width correctly.
Height of one grid unit.
Margin of grid-items.
Max number of rows.
Defines container padding.
Defines position (x, y) and size (w, h) in grid units.
Defines unique id of grid-item
Defines if grids are draggable or not.
Defines if grids are resizable.
Makes item static.
Uses transform css property for changing positions and size.
Defines additional class names for grid item.
Default:
- vue-grid-item
- [this.className]
- static
- vue-grid-resizable (if isResizable)
- vue-grid-resizable-resizing (if is resizing)
- vue-grid-draggable (if isDraggable)
- vue-grid-draggable-dragging (if is dragging)
- cssTransforms (if uses CSS transform)
Defines classes for dragContainer. Default vue-grid-draggable-container
.
Defines selector to dragging option.
Defines selector that should be turnedoff from dragging.
Callback function to handle draggingStart.
Callback function to handle dragging.
Callback function to handle draggingStop.
Property for placeholder grid-item.
Should be used on SSR (not tested hardly yet).
Props for component if it is given.
Name of component that should be rendered inside grid-item.
It is default size of grid-item given in grid units.
Needed when we want to resize all items to its default size for example.
When it is set to true. GridItem can be resized when calling resizeAllItems
.
Otherwise its not able to.
MIT