opentiny / tiny-vue

TinyVue is an enterprise-class UI component library of OpenTiny community, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.
https://opentiny.design/tiny-vue
MIT License
1.53k stars 251 forks source link

✨ [Feature]: In the Grid component, you can configure the drag target when dragging rows. Now when dragging as a whole, if you want to copy the copy of a certain cell, the drag function will also be triggered, which feels unreasonable. #707

Closed David-TechNomad closed 9 months ago

David-TechNomad commented 10 months ago

What problem does this feature solve

✨ [Feature]: Grid组件,行拖拽的时候可以配置拖拽目标嘛,现在整体拖拽,如贵想复制某个cell的文案,也会触发拖拽功能,感觉不太合理

What does the proposed API look like

✨ [Feature]: Grid组件,行拖拽的时候可以配置拖拽目标嘛,现在整体拖拽,如贵想复制某个cell的文案,也会触发拖拽功能,感觉不太合理 image 比如想复制公司名称,但是也触发了拖拽功能

Issues-translate-bot commented 10 months ago

Bot detected the issue body's language is not English, translate it automatically.


Title: ✨ [Feature]: Grid component, you can configure the drag target when dragging rows. Now drag and drop as a whole. If you want to copy the copy of a cell, the drag function will also be triggered. It feels like Not very reasonable

David-TechNomad commented 10 months ago

希望可以在 drop-config 里可以配置handle属性比如:handle: '.drag-btn' 指定某一列触发拖拽行功能 。const dropConfig = ref({ plugin: Sortable, row: true, column: false, // 取消列拖拽 handle: '.drag-btn' })

Issues-translate-bot commented 10 months ago

Bot detected the issue body's language is not English, translate it automatically.


I hope that the handle attribute can be configured in drop-config, such as: handle: '.drag-btn' to specify a certain column to trigger the drag row function. const dropConfig = ref({ plugin: Sortable, row: true, column: false, //Cancel column dragging handle: '.drag-btn' })

zzcr commented 9 months ago
<template>
  <tiny-grid :row-class-name="rowClassName" :data="tableData" row-key :drop-config="dropConfig">
    <tiny-grid-column field="id" width="60"></tiny-grid-column>
    <tiny-grid-column field="name" title="触发源" width="100">
      <template #default>
        <div class="only-me-can-drag">拖拽触发源</div>
      </template>
    </tiny-grid-column>
    <tiny-grid-column field="name" title="公司名称"></tiny-grid-column>
    <tiny-grid-column field="employees" title="员工数"></tiny-grid-column>
    <tiny-grid-column field="createdDate" title="创建日期"></tiny-grid-column>
    <tiny-grid-column field="city" title="城市"></tiny-grid-column>
  </tiny-grid>
</template>

<script setup>
import { ref } from 'vue'
import { Grid as TinyGrid, GridColumn as TinyGridColumn } from '@opentiny/vue'
import Sortable from 'sortablejs'

const dropConfig = ref({
  plugin: Sortable,
  row: true,
  trigger: '.only-me-can-drag', // 触发源控制
  filter: '.row__drag-disable', // 根据行的类名来控制是否可以拖动
  onBeforeMove(type, row) {
    if (row.id === '8') return false // return false 时取消拖动
  },
  column: false // 取消列拖拽
})
const tableData = ref([
  {
    id: '1',
    name: 'GFD科技YX公司',
    city: '福州',
    employees: 800,
    createdDate: '2014-04-30 00:56:00'
  },
  {
    id: '2',
    name: 'WWW科技YX公司',
    city: '深圳',
    employees: 300,
    createdDate: '2016-07-08 12:36:22'
  },
  {
    id: '3',
    name: 'RFV有限责任公司',
    city: '中山',
    employees: 1300,
    createdDate: '2014-02-14 14:14:14'
  },
  {
    id: '4',
    name: 'TGB科技YX公司',
    city: '龙岩',
    employees: 360,
    createdDate: '2013-01-13 13:13:13'
  },
  {
    id: '5',
    name: 'YHN科技YX公司',
    city: '韶关',
    employees: 810,
    createdDate: '2012-12-12 12:12:12'
  },
  {
    id: '6',
    name: 'WSX科技YX公司',
    city: '黄冈',
    employees: 800,
    createdDate: '2011-11-11 11:11:11'
  },
  {
    id: '7',
    name: 'KBG物业YX公司',
    city: '赤壁',
    employees: 400,
    createdDate: '2016-04-30 23:56:00'
  },
  {
    id: '8',
    name: '可拖但不动',
    city: '厦门',
    employees: 540,
    createdDate: '2016-06-03 13:53:25'
  }
])

function rowClassName({ rowIndex }) {
  if (rowIndex < 5) {
    return 'row__drag-disable'
  }
}
</script>

<style scoped>
.tiny-grid :deep(.sortable-chosen) {
  background: #ceeea9 !important;
}
.tiny-grid :deep(.sortable-drag) {
  background: red !important;
}
.tiny-grid :deep(.row__drag-disable) {
  background: #f1f1f1 !important;
}
.only-me-can-drag {
  cursor: move;
}
.tiny-grid :deep(.row__drag-disable) .only-me-can-drag {
  cursor: not-allowed;
}
</style> 
zzcr commented 9 months ago

@David-TechNomad 看下这个例子哈

Issues-translate-bot commented 9 months ago

Bot detected the issue body's language is not English, translate it automatically.


@David-TechNomad Take a look at this example