Newer
Older
<div
@dragover.prevent="handleDragOver"
@drop.prevent="handleDrop"
class="grid"
>
:x="item.x"
:y="item.y"
:w="item.w"
:h="item.h"
import DragContainer from "./DragContainer.vue";
name: "Grid",
components: {
DragContainer,
},
posValidation: {
type: Function,
required: false,
},
value: {
type: Array,
required: true,
},
if (x < 0 || y < 0) return false;
if (x > this.cols) return false;
if (y > this.rows) return false;
for (let item of this.value) {
if (key === item.key) continue;
if (x >= item.x && x < item.x + item.w) {
if (y >= item.y && y < item.y + item.h) {
return false;
}
}
}
if (this.posValidation) return this.posValidation(x, y, key);
handleDragOver(event) {
let data = event.dataTransfer.getData("vueDrag/gridItem");
let element = JSON.parse(data);
let coords = this.getCoords(event.layerX, event.layerY);
let newPositionValid = true;
for (let x = coords.x; x < coords.x + element.w; x++) {
for (let y = coords.y; y < coords.y + element.h; y++) {
newPositionValid = this.positionAllowed(x, y, element.key);
if (!newPositionValid) break;
}
}
if (!newPositionValid) {
this.$refs.highlight.style.display = "none";
return;
}
this.$refs.highlight.style.display = "block";
this.$refs.highlight.style.gridColumnStart = coords.x + "";
this.$refs.highlight.style.gridRowStart = coords.y + "";
this.$refs.highlight.style.gridColumnEnd = "span " + element.w;
this.$refs.highlight.style.gridRowEnd = "span " + element.h;
},
let data = event.dataTransfer.getData("vueDrag/gridItem");
let element = JSON.parse(data);
console.log(element);
let coords = this.getCoords(event.layerX, event.layerY);
let newPositionValid = true;
for (let x = coords.x; x < coords.x + element.w; x++) {
for (let y = coords.y; y < coords.y + element.h; y++) {
newPositionValid = this.positionAllowed(x, y, element.key);
if (!newPositionValid) break;
}
}
if (!newPositionValid) return;
let valueCopy = structuredClone(this.value);
valueCopy.splice(
valueCopy.findIndex((i) => {
valueCopy.push(element);
this.$emit("input", valueCopy);
getCoords(x, y) {
return {
x: Math.ceil(x / (this.$el.offsetWidth / this.cols)),
y: Math.ceil(y / (this.$el.offsetHeight / this.rows)),
};
},
</script>
<style scoped>
#highlight {
background: darkgrey;
border: grey dashed 2px;
display: none;
transition: all 2s ease-in-out;
z-index: -1;
pointer-events: none;
user-select: none;
.grid {
display: grid;
grid-template-columns: repeat(v-bind(cols), 1fr);
grid-template-rows: repeat(v-bind(rows), 1fr);
width: 100%;
height: 100%;
min-width: 100px;
min-height: 100px;
gap: 1em;
}