当前位置: 移动技术网 > IT编程>脚本编程>vue.js > 使用vue实现grid-layout功能实例代码

使用vue实现grid-layout功能实例代码

2018年02月03日  | 移动技术网IT编程  | 我要评论

重庆公务员,先烈事迹,广告公司名字

1.先clone项目到本地。

2.git reset --hard commit 命令可以使当前head指向某个commit。

完成html的基本布局

点击复制按钮来复制整个commit id。然后在项目根路径下运行 git reset 。用浏览器打开来预览效果,该插件的html主要结果如下:

<!-- 节点容器 -->
<div class="dragrid">
 <!-- 可拖拽的节点,使用translate控制位移 -->
 <div class="dragrid-item" style="transform: translate(0px, 0px)">
 <!-- 通过slot可以插入动态内容 -->
 <div class="dragrid-item-content">
  
 </div>
 <!-- 拖拽句柄 -->
 <div class="dragrid-drag-bar"></div>
 <!-- 缩放句柄 -->
 <div class="dragrid-resize-bar"></div>
 </div>
</div>

使用vue完成nodes简单排版

先切换commit,安装需要的包,运行如下命令:

git reset --hard 83842ea107e7d819761f25bf06bfc545102b2944
npm install
<!-- 启动,端口为7777,在package.json中可以修改 -->
npm start

这一步一个是搭建环境,这个直接看webpack.config.js配置文件就可以了。

另一个就是节点的排版(layout),主要思路是把节点容器看成一个网格,每个节点就可以通过横坐标(x)和纵坐标(y)来控制节点的位置,左上角坐标为(0, 0);通过宽(w)和高(h)来控制节点大小;每个节点还必须有一个唯一的id。这样节点node的数据结构就为:

{
 id: "uuid",
 x: 0,
 y: 0,
 w: 6,
 h: 8
}

其中w和h的值为所占网格的格数,例如容器是24格,且宽度为960px,每格宽度就为40px,则上面节点渲染为240px * 320px, 且在容器左上角。

来看一下dragrid.vue与之对应的逻辑:

computed: {
 cfg() {
 let cfg = object.assign({}, config);
 cfg.cellw = math.floor(this.containerwidth / cfg.col);
 cfg.cellh = cfg.cellw; // 1:1
 return cfg;
 }
},
methods: {
 getstyle(node) {
 return {
  width: node.w * this.cfg.cellw + 'px',
  height: node.h * this.cfg.cellh + 'px',
  transform: "translate("+ node.x * this.cfg.cellw +"px, "+ node.y * this.cfg.cellh +"px)"
 };
 }
}

其中cellw、cellh为每个格子的宽和高,这样计算节点的宽和高及位移就很容易了。

完成单个节点的拖拽

拖拽事件

1.使用mousedown、mousemove、mouseup来实现拖拽。

2.这些事件绑定在document上,只需要绑定一次就可以。

执行流程大致如下:

鼠标在拖拽句柄上按下, onmousedown 方法触发,在eventhandler中存储一些值之后,鼠标移动则触发 onmousemove 方法,第一次进入时 eventhandler.drag 为false,其中isdrag方法会根据位移来判断是否是拖拽行为(横向或纵向移动5像素),如果是拖拽行为,则将drag属性设置为true,同时执行 dragdrop.dragstart 方法(一次拖拽行为只会执行一次),之后鼠标继续移动,则就开始执行 dragdrop.drag 方法了。最后鼠标松开后,会执行 onmouseup 方法,将一些状态重置回初始状态,同时执行 dragdrop.dragend 方法。

拖拽节点

拖拽节点的逻辑都封装在dragdrop.js这个文件里,主要方法为 dragstart 、 drag 、 dragend 。

dragstart

在一次拖拽行为中,该方法只执行一次,因此适合做一些初始化工作,此时代码如下:

dragstart(el, offsetx, offsety) {
 // 要拖拽的节点
 const dragnode = utils.searchup(el, 'dragrid-item');
 // 容器
 const dragcontainer = utils.searchup(el, 'dragrid');
 // 拖拽实例
 const instance = cache.get(dragcontainer.getattribute('name'));
 // 拖拽节点
 const dragdrop = dragcontainer.queryselector('.dragrid-dragdrop');
 // 拖拽节点id
 const dragnodeid = dragnode.getattribute('dg-id');
 // 设置拖拽节点
 dragdrop.setattribute('style', dragnode.getattribute('style'));
 dragdrop.innerhtml = dragnode.innerhtml;
 instance.current = dragnodeid;
 const offset = utils.getoffset(el, dragnode, {offsetx, offsety});
 // 容器偏移
 const containeroffset = dragcontainer.getboundingclientrect();
 // 缓存数据
 this.offsetx = offset.offsetx;
 this.offsety = offset.offsety;
 this.dragrid = instance;
 this.dragelement = dragdrop;
 this.dragcontainer = dragcontainer;
 this.containeroffset = containeroffset;
}

1.参数el为拖拽句柄元素,offsetx为鼠标距离拖拽句柄的横向偏移,offsety为鼠标距离拖拽句柄的纵向偏移。

2.通过el可以向上递归查找到拖拽节点(dragnode),及拖拽容器(dragcontainer)。

3.dragdrop元素是真正鼠标控制拖拽的节点,同时与之对应的布局节点会变为占位节点(placeholder),视觉上显示为阴影效果。

4.设置拖拽节点其实就将点击的dragnode的innerhtml设置到dragdrop中,同时将样式也应用过去。

5.拖拽实例,其实就是dragrid.vue实例,它在created钩子函数中将其实例缓存到cache中,在这里根据name就可以从cache中得到该实例,从而可以调用该实例中的方法了。

6.instance.current = dragnodeid; 设置之后,dragdrop节点及placeholder节点的样式就应用了。

7.缓存数据中的offsetx、offsety是拖拽句柄相对于节点左上角的偏移。

drag

发生拖拽行为之后,鼠标move都会执行该方法,通过不断更新拖拽节点的样式来是节点发生移动效果。

drag(event) {
 const pagex = event.pagex, pagey = event.pagey;
 const x = pagex - this.containeroffset.left - this.offsetx,
  y = pagey - this.containeroffset.top - this.offsety;
 this.dragelement.style.csstext += ';transform:translate('+ x +'px, '+ y +'px)';
}

主要是计算节点相对于容器的偏移:鼠标距离页面距离-容器偏移-鼠标距离拽节点距离就为节点距离容器的距离。

dragend

主要是重置状态。逻辑比较简单,就不再细说了。

到这里已经单个节点已经可以跟随鼠标进行移动了。

使placeholder可以跟随拖拽节点运动

本节是要讲占位节点(placeholder阴影部分)跟随拖拽节点一起移动。主要思路是:

通过拖拽节点距离容器的偏移(drag方法中的x, y),可以将其转化为对应网格的坐标。

转化后的坐标如果发生变化,则更新占位节点的坐标。

drag方法中增加的代码如下:

// 坐标转换
const nodex = math.round(x / opt.cellw);
const nodey = math.round(y / opt.cellh);
let currentnode = this.dragrid.currentnode;
// 发生移动
if(currentnode.x !== nodex || currentnode.y !== nodey) {
 currentnode.x = nodex;
 currentnode.y = nodey;
}

nodes重排及上移

本节核心点有两个:

用一个二维数组来表示网格,这样节点的位置信息就可以在此二维数组中标记出来了。

nodes中只要某个节点发生变化,就要重新排版,要将每个节点尽可能地上移。

二维数组的构建

getarea(nodes) {
 let area = [];
 nodes.foreach(n => {
 for(let row = n.y; row < n.y + n.h; row++){
  let rowarr = area[row];
  if(rowarr === undefined){
  area[row] = new array();
  }
  for(let col = n.x; col < n.x + n.w; col++){
  area[row][col] = n.id;
  }
 }
 });
 return area;
}

按需可以动态扩展该二维数据,如果某行没有任何节点占位,则实际存储的是一个undefined值。否则存储的是节点的id值。

布局方法

dragird.vue中watch了nodes,发生变化后会调用layout方法,代码如下:

/**
 * 重新布局
 * 只要有一个节点发生变化,就要重新进行排版布局
 */
layout() {
 this.nodes.foreach(n => {
 const y = this.moveup(n);
 if(y < n.y){
  n.y = y;
 }
 });
},
// 向上查找节点可以冒泡到的位置
moveup(node) {
 let area = this.area;
 for(let row = node.y - 1; row > 0; row--){
 // 如果一整行都为空,则直接继续往上找
 if(area[row] === undefined) continue;
 for(let col = node.x; col < node.x + node.w; col++){
  // 改行如果有内容,则直接返回下一行
  if(area[row][col] !== undefined){
  return row + 1;
  }
 }
 }
 return 0;
}

布局方法layout中遍历所有节点,moveup方法返回该节点纵向可以上升到的位置坐标,如果比实际坐标小,则进行上移。moveup方法默认从上一行开始找,直到发现二维数组中存放了值(改行已经有元素了),则返回此时行数加1。

到这里,拖拽节点移动时,占位节点会尽可能地上移,如果只有一个节点,那么占位节点一直在最上面移动。

相关节点的下移

拖拽节点移动时,与拖拽节点发生碰撞的节点及其下发的节点,都先下移一定距离,这样拖拽节点就可以移到相应位置,最后节点都会发生上一节所说的上移。

请看dragrid.vue中的overlap方法:

overlap(node) {
 // 下移节点
 this.nodes.foreach(n => {
 if(node !== n && n.y + n.h > node.y) {
  n.y += node.h;
 }
 });
}

n.y + n.h > node.y 表示可以与拖拽节点发生碰撞,以及在拖拽节点下方的节点。

在dragdrop.drag中会调用该方法。

注意目前该方法会有问题,没有考虑到如果碰撞节点比较高,则 n.y += node.h 并没有将该节点下沉到拖拽节点下方,从而拖拽节点会叠加上去。后面会介绍解决方法。

缩放

上面的思路都理解之后,缩放其实也是一样的,主要还是要进行坐标转换,坐标发生变化后,就会调用overlap方法。

resize(event) {
 const opt = this.dragrid.cfg;
 // 之前
 const x1 = this.currentnode.x * opt.cellw + this.offsetx,
  y1 = this.currentnode.y * opt.cellh + this.offsety;
 // 之后
 const x2 = event.pagex - this.containeroffset.left,
  y2 = event.pagey - this.containeroffset.top;
 // 偏移
 const dx = x2 - x1, dy = y2 - y1;
 // 新的节点宽和高
 const w = this.currentnode.w * opt.cellw + dx,
  h = this.currentnode.h * opt.cellh + dy;
 // 样式设置
 this.dragelement.style.csstext += ';width:' + w + 'px;height:' + h + 'px;';
 // 坐标转换
 const nodew = math.round(w / opt.cellw);
 const nodeh = math.round(h / opt.cellh);
 let currentnode = this.dragrid.currentnode;
 // 发生移动
 if(currentnode.w !== nodew || currentnode.h !== nodeh) {
  currentnode.w = nodew;
  currentnode.h = nodeh;
  this.dragrid.overlap(currentnode);
 }
}

根据鼠标距拖拽容器的距离的偏移,来修改节点的大小(宽和高),其中x1为鼠标点击后距离容器的距离,x2为移动一段距离之后距离容器的距离,那么差值dx就为鼠标移动的距离,dy同理。

到这里,插件的核心逻辑基本上已经完成了。

[fix]解决碰撞位置靠上的大块,并没有下移的问题

overlap修改为:

overlap(node) {
 let offsetupy = 0;
 // 碰撞检测,查找一起碰撞节点里面,位置最靠上的那个
 this.nodes.foreach(n => {
 if(node !== n && this.checkhit(node, n)){
  const value = node.y - n.y;
  offsetupy = value > offsetupy ? value : offsetupy;
 }
 });
 // 下移节点
 this.nodes.foreach(n => {
 if(node !== n && n.y + n.h > node.y) {
  n.y += (node.h + offsetupy);
 }
 });
}

offsetupy 最终存放的是与拖拽节点发生碰撞的所有节点中,位置最靠上的节点与拖拽节点之间的距离。然后再下移过程中会加上该offsetupy值,确保所有节点下移到拖拽节点下方。

这个插件的核心逻辑就说到这里了,读者可以自己解决如下一些问题:

  1. 缩放限制,达到最小宽度就不能再继续缩放了。
  2. 拖拽控制滚动条。
  3. 拖拽边界的限制。
  4. 向下拖拽,达到碰撞节点1/2高度就发生换位。

总结

以上所述是小编给大家介绍的使用vue实现grid-layout功能,希望对大家有所帮助

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网