index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <template>
  2. <movable-area :style="[getAreaStyle]">
  3. <movable-view v-for="(item, index) in list" :animation="animation" :direction="direction" :key="item.key"
  4. :damping="damping" :x="item.x" :y="item.y" :disabled="longpress ? disabled : false"
  5. @longpress="handleLongpress" @touchstart="handleDragStart(index)" @change="handleMoving"
  6. @touchend="handleDragEnd" :style="[getViewStyle]" class="base-drag-wrapper"
  7. :class="{ active: activeIndex === index }">
  8. <view class="drag-item">
  9. <view @longpress="toggleEdit" :class="['tab-item']">
  10. <image v-if="item.isLock" :src="icons.lock" class="right-icon" />
  11. <image v-if="!item.isLock && isActiveEdit" @click="deleteTab(item)" :src="icons.edit"
  12. class="right-icon" />
  13. <image :src="item.iconUrl" class="icon" />
  14. <view>{{ item.name }}</view>
  15. </view>
  16. </view>
  17. </movable-view>
  18. </movable-area>
  19. </template>
  20. <script>
  21. import {
  22. QINIU_URL
  23. } from '@/common/constant'
  24. const ICONS = {
  25. lock: `${QINIU_URL}FgMCTZCySvEgLYgkzU65BUR4f4Ls`,
  26. edit: `${QINIU_URL}Fq3V1Zi5tKH7ibTwG1nO7N96CU8m`,
  27. add: `${QINIU_URL}FqLEWbMe8DcnQtNz6GdDDD87ObZK`,
  28. placeholder: `${QINIU_URL}FpKvfFNSDbx0d9RDwyGAQdFb7Kt6`
  29. }
  30. export default {
  31. props: {
  32. column: {
  33. type: Number,
  34. default: 3
  35. },
  36. value: {
  37. type: Array,
  38. default: () => []
  39. },
  40. width: {
  41. type: Number,
  42. default: 375
  43. },
  44. height: {
  45. type: String,
  46. default: '100px'
  47. },
  48. itemKey: {
  49. type: String,
  50. required: true
  51. },
  52. itemHeight: {
  53. type: String,
  54. default: '100px'
  55. },
  56. direction: {
  57. type: String,
  58. default: 'all',
  59. validator: value => {
  60. return ['all', 'vertical', 'horizontal', 'none'].includes(value);
  61. }
  62. },
  63. animation: {
  64. type: Boolean,
  65. default: true
  66. },
  67. damping: {
  68. type: Number,
  69. default: 20
  70. },
  71. longpress: {
  72. type: Boolean,
  73. default: true
  74. }
  75. },
  76. data() {
  77. const MAX_TAB_LEN = 4
  78. return {
  79. QINIU_URL,
  80. MAX_TAB_LEN,
  81. icons: ICONS,
  82. isActiveEdit: false,
  83. placeholderTab: {
  84. name: '',
  85. icon: ICONS.placeholder,
  86. isLock: false,
  87. isPlaceholder: true
  88. },
  89. list: [],
  90. disabled: true,
  91. activeIndex: -1,
  92. moveToIndex: -1,
  93. oldIndex: -1,
  94. tempDragInfo: {
  95. x: '',
  96. y: ''
  97. },
  98. cloneList: []
  99. };
  100. },
  101. computed: {
  102. getAreaStyle() {
  103. const width = this.getRealWidth(this.width);
  104. return {
  105. width: width + 'px',
  106. height: this.height !== 'auto' ? this.height : Math.round(this.list.length / this.column) * this
  107. .getItemHeight + 'px'
  108. };
  109. },
  110. getViewStyle() {
  111. const {
  112. itemHeight,
  113. getItemWidth
  114. } = this;
  115. return {
  116. width: getItemWidth + 'px',
  117. height: itemHeight
  118. };
  119. },
  120. getItemHeight() {
  121. return parseFloat(this.itemHeight);
  122. },
  123. getItemWidth() {
  124. if (this.column === 0) return;
  125. const width = this.getRealWidth(this.width);
  126. return (parseFloat(width) / this.column).toFixed(2);
  127. }
  128. },
  129. methods: {
  130. getMovableItem(tab) {
  131. return this.isActiveEdit && !tab.isLock && !tab.isPlaceholder
  132. },
  133. deleteTab(tab) {
  134. if (tab.isLock) return
  135. const index = this.list.findIndex(t => t.name === tab.name)
  136. if (index !== -1) {
  137. const removedTab = this.list.splice(index, 1)[0]
  138. this.cloneList.splice(index, 1)
  139. this.initList(this.cloneList);
  140. const endList = this.list.map(item => this.omit(item, ['x', 'y', 'key']));
  141. this.$emit('end', this.list, removedTab);
  142. }
  143. },
  144. addPlaceholders() {
  145. while (this.list.length < this.MAX_TAB_LEN) {
  146. this.list.push({
  147. ...this.placeholderTab
  148. })
  149. }
  150. },
  151. toggleEdit(e) {
  152. this.isActiveEdit = !this.isActiveEdit
  153. this.$emit('toggleEdit', this.isActiveEdit);
  154. },
  155. //获取实际的宽度
  156. getRealWidth(width) {
  157. let pxValue = uni.upx2px(width);
  158. // console.log(pxValue)
  159. // if (width.includes('%')) {
  160. // const windowWidth = uni.getSystemInfoSync().windowWidth;
  161. // width = windowWidth * (parseFloat(width) / 100);
  162. // }
  163. return pxValue;
  164. },
  165. initList(list = []) {
  166. const newList = this.deepCopy(list);
  167. this.list = newList.map((item, index) => {
  168. const [x, y] = this.getPosition(index);
  169. return {
  170. ...item,
  171. x,
  172. y,
  173. key: Math.random() + index
  174. };
  175. });
  176. this.cloneList = this.deepCopy(this.list);
  177. },
  178. //长按
  179. handleLongpress(index) {
  180. this.disabled = false;
  181. },
  182. //拖拽开始
  183. handleDragStart(index) {
  184. this.activeIndex = index;
  185. this.oldIndex = index;
  186. },
  187. //拖拽中
  188. handleMoving(e) {
  189. if (e.detail.source !== 'touch') return;
  190. const {
  191. x,
  192. y
  193. } = e.detail;
  194. Object.assign(this.tempDragInfo, {
  195. x,
  196. y
  197. });
  198. const currentX = Math.floor((x + this.getItemWidth / 2) / this.getItemWidth);
  199. const currentY = Math.floor((y + this.getItemHeight / 2) / this.getItemHeight);
  200. this.moveToIndex = Math.min(currentY * this.column + currentX, this.list.length - 1);
  201. if (this.oldIndex !== this.moveToIndex && this.oldIndex !== -1 && this.moveToIndex !== -1) {
  202. const newList = this.deepCopy(this.cloneList);
  203. newList.splice(this.moveToIndex, 0, ...newList.splice(this.activeIndex, 1));
  204. this.list.forEach((item, index) => {
  205. if (index !== this.activeIndex) {
  206. const itemIndex = newList.findIndex(val => val[this.itemKey] === item[this.itemKey]);
  207. [item.x, item.y] = this.getPosition(itemIndex);
  208. }
  209. });
  210. this.oldIndex = this.moveToIndex;
  211. }
  212. },
  213. //获取当前的位置
  214. getPosition(index) {
  215. const x = (index % this.column) * this.getItemWidth;
  216. const y = Math.floor(index / this.column) * this.getItemHeight;
  217. return [x, y];
  218. },
  219. //拖拽结束
  220. handleDragEnd(e) {
  221. if (this.disabled) return;
  222. if (this.moveToIndex !== -1 && this.activeIndex !== -1 && this.moveToIndex !== this.activeIndex) {
  223. this.cloneList.splice(this.moveToIndex, 0, ...this.cloneList.splice(this.activeIndex, 1));
  224. } else {
  225. this.$set(this.list[this.activeIndex], 'x', this.tempDragInfo.x);
  226. this.$set(this.list[this.activeIndex], 'y', this.tempDragInfo.y);
  227. }
  228. this.initList(this.cloneList);
  229. const endList = this.list.map(item => this.omit(item, ['x', 'y', 'key']));
  230. this.$emit('input', endList);
  231. this.$emit('end', endList);
  232. this.activeIndex = -1;
  233. this.oldIndex = -1;
  234. this.moveToIndex = -1;
  235. this.disabled = true;
  236. },
  237. deepCopy(source) {
  238. return JSON.parse(JSON.stringify(source));
  239. },
  240. /**
  241. * 排除掉obj里面的key值
  242. * @param {object} obj
  243. * @param {Array|string} args
  244. * @returns {object}
  245. */
  246. omit(obj, args) {
  247. if (!args) return obj;
  248. const newObj = {};
  249. const isString = typeof args === 'string';
  250. const keys = Object.keys(obj).filter(item => {
  251. if (isString) {
  252. return item !== args;
  253. }
  254. return !args.includes(item);
  255. });
  256. keys.forEach(key => {
  257. if (obj[key] !== undefined) newObj[key] = obj[key];
  258. });
  259. return newObj;
  260. }
  261. },
  262. watch: {
  263. value: {
  264. handler() {
  265. this.initList(this.value);
  266. },
  267. immediate: true,
  268. deep: true
  269. }
  270. }
  271. };
  272. </script>
  273. <style lang="scss" scoped>
  274. .drag-item {
  275. height: 100%;
  276. display: flex;
  277. align-items: center;
  278. justify-content: center;
  279. .tab-item {
  280. text-align: center;
  281. width: 100%;
  282. position: relative;
  283. margin-top: 24rpx;
  284. height: 100px;
  285. .right-icon {
  286. position: absolute;
  287. right: 20rpx;
  288. top: 0;
  289. width: 40rpx;
  290. height: 40rpx;
  291. z-index: 9;
  292. }
  293. .icon {
  294. width: 112rpx;
  295. height: 112rpx;
  296. margin-bottom: 20rpx;
  297. }
  298. .name {
  299. font-size: 28rpx;
  300. color: #060809;
  301. &.shake {
  302. animation: shake 0.2s ease-in-out infinite;
  303. }
  304. }
  305. }
  306. }
  307. .base-drag-wrapper {
  308. opacity: 1;
  309. z-index: 1;
  310. &.active {
  311. opacity: 0.7;
  312. transform: scale(1.3);
  313. z-index: 99;
  314. }
  315. }
  316. </style>
  317. <style lang="scss" scoped>
  318. @import "@/libs/css/layout.scss";
  319. .title {
  320. font-family: PingFangSC, PingFang SC;
  321. font-weight: 400;
  322. font-size: 36rpx;
  323. color: #060809;
  324. margin-bottom: 16rpx;
  325. padding-left: 40rpx;
  326. .sort-num {
  327. margin-left: 12rpx;
  328. width: 36rpx;
  329. font-family: Futura, Futura;
  330. font-size: 30rpx;
  331. color: #060809;
  332. }
  333. }
  334. .tab-item-container {
  335. display: flex;
  336. &.is-to-be-select {
  337. flex-wrap: wrap;
  338. }
  339. }
  340. .tips {
  341. font-size: 24rpx;
  342. color: #060809;
  343. text-align: center;
  344. margin-top: 32rpx;
  345. }
  346. .un-bind-btn {
  347. position: absolute;
  348. bottom: 56rpx;
  349. left: 50%;
  350. transform: translateX(-50%);
  351. width: 93%;
  352. padding: 24rpx;
  353. text-align: center;
  354. background: #E4E7EC;
  355. border-radius: 40rpx;
  356. font-family: PingFangSC, PingFang SC;
  357. font-weight: bold;
  358. font-size: 32rpx;
  359. color: #060809;
  360. &:active {
  361. opacity: .7;
  362. }
  363. }
  364. </style>