sortableTable.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. {{define "component/sortableTableTrigger"}}
  2. <a-icon type="drag" class="sortable-icon" style="cursor: move;" @mouseup="mouseUpHandler" @mousedown="mouseDownHandler"
  3. @click="clickHandler" />
  4. {{end}}
  5. {{define "component/sortableTable"}}
  6. <script>
  7. const DRAGGABLE_ROW_CLASS = 'draggable-row';
  8. const findParentRowElement = (el) => {
  9. if (!el || !el.tagName) {
  10. return null;
  11. } else if (el.classList.contains(DRAGGABLE_ROW_CLASS)) {
  12. return el;
  13. } else if (el.parentNode) {
  14. return findParentRowElement(el.parentNode);
  15. } else {
  16. return null;
  17. }
  18. }
  19. Vue.component('a-table-sortable', {
  20. data() {
  21. return {
  22. sortingElementIndex: null,
  23. newElementIndex: null,
  24. };
  25. },
  26. props: {
  27. 'data-source': {
  28. type: undefined,
  29. required: false,
  30. },
  31. 'customRow': {
  32. type: undefined,
  33. required: false,
  34. }
  35. },
  36. inheritAttrs: false,
  37. provide() {
  38. const sortable = {}
  39. Object.defineProperty(sortable, "setSortableIndex", {
  40. enumerable: true,
  41. get: () => this.setCurrentSortableIndex,
  42. });
  43. Object.defineProperty(sortable, "resetSortableIndex", {
  44. enumerable: true,
  45. get: () => this.resetSortableIndex,
  46. });
  47. return {
  48. sortable,
  49. }
  50. },
  51. render: function (createElement) {
  52. return createElement('a-table', {
  53. class: {
  54. 'ant-table-is-sorting': this.isDragging(),
  55. },
  56. props: {
  57. ...this.$attrs,
  58. 'data-source': this.records,
  59. customRow: (record, index) => this.customRowRender(record, index),
  60. },
  61. on: this.$listeners,
  62. nativeOn: {
  63. drop: (e) => this.dropHandler(e),
  64. },
  65. scopedSlots: this.$scopedSlots,
  66. }, this.$slots.default,)
  67. },
  68. created() {
  69. this.$memoSort = {};
  70. },
  71. methods: {
  72. isDragging() {
  73. const currentIndex = this.sortingElementIndex;
  74. return currentIndex !== null && currentIndex !== undefined;
  75. },
  76. resetSortableIndex(e, index) {
  77. this.sortingElementIndex = null;
  78. this.newElementIndex = null;
  79. this.$memoSort = {};
  80. },
  81. setCurrentSortableIndex(e, index) {
  82. this.sortingElementIndex = index;
  83. },
  84. dragStartHandler(e, index) {
  85. if (!this.isDragging()) {
  86. e.preventDefault();
  87. return;
  88. }
  89. const hideDragImage = this.$el.cloneNode(true);
  90. hideDragImage.id = "hideDragImage-hide";
  91. hideDragImage.style.opacity = 0;
  92. e.dataTransfer.setDragImage(hideDragImage, 0, 0);
  93. },
  94. dragStopHandler(e, index) {
  95. const hideDragImage = document.getElementById('hideDragImage-hide');
  96. if (hideDragImage) hideDragImage.remove();
  97. this.resetSortableIndex(e, index);
  98. },
  99. dragOverHandler(e, index) {
  100. if (!this.isDragging()) {
  101. return;
  102. }
  103. e.preventDefault();
  104. const currentIndex = this.sortingElementIndex;
  105. if (index === currentIndex) {
  106. this.newElementIndex = null;
  107. return;
  108. }
  109. const row = findParentRowElement(e.target);
  110. if (!row) {
  111. return;
  112. }
  113. const rect = row.getBoundingClientRect();
  114. const offsetTop = e.pageY - rect.top;
  115. if (offsetTop < rect.height / 2) {
  116. this.newElementIndex = Math.max(index - 1, 0);
  117. } else {
  118. this.newElementIndex = index;
  119. }
  120. },
  121. dropHandler(e) {
  122. if (this.isDragging()) {
  123. this.$emit('onsort', this.sortingElementIndex, this.newElementIndex);
  124. }
  125. },
  126. customRowRender(record, index) {
  127. const parentMethodResult = this.customRow?.(record, index) || {};
  128. const newIndex = this.newElementIndex;
  129. const currentIndex = this.sortingElementIndex;
  130. return {
  131. ...parentMethodResult,
  132. attrs: {
  133. ...(parentMethodResult?.attrs || {}),
  134. draggable: true,
  135. },
  136. on: {
  137. ...(parentMethodResult?.on || {}),
  138. dragstart: (e) => this.dragStartHandler(e, index),
  139. dragend: (e) => this.dragStopHandler(e, index),
  140. dragover: (e) => this.dragOverHandler(e, index),
  141. },
  142. class: {
  143. ...(parentMethodResult?.class || {}),
  144. [DRAGGABLE_ROW_CLASS]: true,
  145. ['dragging']: this.isDragging() ? (newIndex === null ? index === currentIndex : index === newIndex) : false,
  146. },
  147. };
  148. }
  149. },
  150. computed: {
  151. records() {
  152. const newIndex = this.newElementIndex;
  153. const currentIndex = this.sortingElementIndex;
  154. if (!this.isDragging() || newIndex === null || currentIndex === newIndex) {
  155. return this.dataSource;
  156. }
  157. if (this.$memoSort.newIndex === newIndex) {
  158. return this.$memoSort.list;
  159. }
  160. let list = [...this.dataSource];
  161. list.splice(newIndex, 0, list.splice(currentIndex, 1)[0]);
  162. this.$memoSort = {
  163. newIndex,
  164. list,
  165. };
  166. return list;
  167. }
  168. }
  169. });
  170. Vue.component('a-table-sort-trigger', {
  171. template: `{{template "component/sortableTableTrigger"}}`,
  172. props: {
  173. 'item-index': {
  174. type: undefined,
  175. required: false
  176. }
  177. },
  178. inject: ['sortable'],
  179. methods: {
  180. mouseDownHandler(e) {
  181. if (this.sortable) {
  182. this.sortable.setSortableIndex(e, this.itemIndex);
  183. }
  184. },
  185. mouseUpHandler(e) {
  186. if (this.sortable) {
  187. this.sortable.resetSortableIndex(e, this.itemIndex);
  188. }
  189. },
  190. clickHandler(e) {
  191. e.preventDefault();
  192. },
  193. }
  194. })
  195. </script>
  196. <style>
  197. @media only screen and (max-width: 767px) {
  198. .sortable-icon {
  199. display: none;
  200. }
  201. }
  202. .ant-table-is-sorting .draggable-row td {
  203. background-color: #ffffff !important;
  204. }
  205. .dark .ant-table-is-sorting .draggable-row td {
  206. background-color: var(--dark-color-surface-100) !important;
  207. }
  208. .ant-table-is-sorting .dragging td {
  209. background-color: rgb(232 244 242) !important;
  210. color: rgba(0, 0, 0, 0.3);
  211. }
  212. .dark .ant-table-is-sorting .dragging td {
  213. background-color: var(--dark-color-table-hover) !important;
  214. color: rgba(255, 255, 255, 0.3);
  215. }
  216. .ant-table-is-sorting .dragging {
  217. opacity: 1;
  218. box-shadow: 1px -2px 2px #008771;
  219. transition: all 0.2s;
  220. }
  221. .ant-table-is-sorting .dragging .ant-table-row-index {
  222. opacity: 0.3;
  223. }
  224. </style>
  225. {{end}}