index.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  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 @click="clickTap(item)" :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. clickTap(item){
  131. this.$emit('changClick',item)
  132. },
  133. getMovableItem(tab) {
  134. return this.isActiveEdit && !tab.isLock && !tab.isPlaceholder
  135. },
  136. deleteTab(tab) {
  137. if (tab.isLock) return
  138. const index = this.list.findIndex(t => t.name === tab.name)
  139. if (index !== -1) {
  140. const removedTab = this.list.splice(index, 1)[0]
  141. this.cloneList.splice(index, 1)
  142. this.initList(this.cloneList);
  143. const endList = this.list.map(item => this.omit(item, ['x', 'y', 'key']));
  144. this.$emit('end', this.list, removedTab);
  145. }
  146. },
  147. addPlaceholders() {
  148. while (this.list.length < this.MAX_TAB_LEN) {
  149. this.list.push({
  150. ...this.placeholderTab
  151. })
  152. }
  153. },
  154. toggleEdit(e) {
  155. this.isActiveEdit = !this.isActiveEdit
  156. this.$emit('toggleEdit', this.isActiveEdit);
  157. },
  158. //获取实际的宽度
  159. getRealWidth(width) {
  160. let pxValue = uni.upx2px(width);
  161. // console.log(pxValue)
  162. // if (width.includes('%')) {
  163. // const windowWidth = uni.getSystemInfoSync().windowWidth;
  164. // width = windowWidth * (parseFloat(width) / 100);
  165. // }
  166. return pxValue;
  167. },
  168. initList(list = []) {
  169. const newList = this.deepCopy(list);
  170. this.list = newList.map((item, index) => {
  171. const [x, y] = this.getPosition(index);
  172. return {
  173. ...item,
  174. x,
  175. y,
  176. key: Math.random() + index
  177. };
  178. });
  179. this.cloneList = this.deepCopy(this.list);
  180. },
  181. //长按
  182. handleLongpress(index) {
  183. this.disabled = false;
  184. },
  185. //拖拽开始
  186. handleDragStart(index) {
  187. this.activeIndex = index;
  188. this.oldIndex = index;
  189. },
  190. //拖拽中
  191. handleMoving(e) {
  192. if (e.detail.source !== 'touch') return;
  193. const {
  194. x,
  195. y
  196. } = e.detail;
  197. Object.assign(this.tempDragInfo, {
  198. x,
  199. y
  200. });
  201. const currentX = Math.floor((x + this.getItemWidth / 2) / this.getItemWidth);
  202. const currentY = Math.floor((y + this.getItemHeight / 2) / this.getItemHeight);
  203. this.moveToIndex = Math.min(currentY * this.column + currentX, this.list.length - 1);
  204. if (this.oldIndex !== this.moveToIndex && this.oldIndex !== -1 && this.moveToIndex !== -1) {
  205. const newList = this.deepCopy(this.cloneList);
  206. newList.splice(this.moveToIndex, 0, ...newList.splice(this.activeIndex, 1));
  207. this.list.forEach((item, index) => {
  208. if (index !== this.activeIndex) {
  209. const itemIndex = newList.findIndex(val => val[this.itemKey] === item[this.itemKey]);
  210. [item.x, item.y] = this.getPosition(itemIndex);
  211. }
  212. });
  213. this.oldIndex = this.moveToIndex;
  214. }
  215. },
  216. //获取当前的位置
  217. getPosition(index) {
  218. const x = (index % this.column) * this.getItemWidth;
  219. const y = Math.floor(index / this.column) * this.getItemHeight;
  220. return [x, y];
  221. },
  222. //拖拽结束
  223. handleDragEnd(e) {
  224. if (this.disabled) return;
  225. if (this.moveToIndex !== -1 && this.activeIndex !== -1 && this.moveToIndex !== this.activeIndex) {
  226. this.cloneList.splice(this.moveToIndex, 0, ...this.cloneList.splice(this.activeIndex, 1));
  227. } else {
  228. this.$set(this.list[this.activeIndex], 'x', this.tempDragInfo.x);
  229. this.$set(this.list[this.activeIndex], 'y', this.tempDragInfo.y);
  230. }
  231. this.initList(this.cloneList);
  232. const endList = this.list.map(item => this.omit(item, ['x', 'y', 'key']));
  233. this.$emit('input', endList);
  234. this.$emit('end', endList);
  235. this.activeIndex = -1;
  236. this.oldIndex = -1;
  237. this.moveToIndex = -1;
  238. this.disabled = true;
  239. },
  240. deepCopy(source) {
  241. return JSON.parse(JSON.stringify(source));
  242. },
  243. /**
  244. * 排除掉obj里面的key值
  245. * @param {object} obj
  246. * @param {Array|string} args
  247. * @returns {object}
  248. */
  249. omit(obj, args) {
  250. if (!args) return obj;
  251. const newObj = {};
  252. const isString = typeof args === 'string';
  253. const keys = Object.keys(obj).filter(item => {
  254. if (isString) {
  255. return item !== args;
  256. }
  257. return !args.includes(item);
  258. });
  259. keys.forEach(key => {
  260. if (obj[key] !== undefined) newObj[key] = obj[key];
  261. });
  262. return newObj;
  263. }
  264. },
  265. watch: {
  266. value: {
  267. handler() {
  268. this.initList(this.value);
  269. },
  270. immediate: true,
  271. deep: true
  272. }
  273. }
  274. };
  275. </script>
  276. <style lang="scss" scoped>
  277. .drag-item {
  278. height: 100%;
  279. display: flex;
  280. align-items: center;
  281. justify-content: center;
  282. .tab-item {
  283. text-align: center;
  284. width: 100%;
  285. position: relative;
  286. margin-top: 24rpx;
  287. height: 100px;
  288. .right-icon {
  289. position: absolute;
  290. right: 20rpx;
  291. top: 0;
  292. width: 40rpx;
  293. height: 40rpx;
  294. z-index: 9;
  295. }
  296. .icon {
  297. width: 112rpx;
  298. height: 112rpx;
  299. margin-bottom: 20rpx;
  300. }
  301. .name {
  302. font-size: 28rpx;
  303. color: #060809;
  304. &.shake {
  305. animation: shake 0.2s ease-in-out infinite;
  306. }
  307. }
  308. }
  309. }
  310. .base-drag-wrapper {
  311. opacity: 1;
  312. z-index: 1;
  313. &.active {
  314. opacity: 0.7;
  315. transform: scale(1.3);
  316. z-index: 99;
  317. }
  318. }
  319. </style>
  320. <style lang="scss" scoped>
  321. @import "@/libs/css/layout.scss";
  322. .title {
  323. font-family: PingFangSC, PingFang SC;
  324. font-weight: 400;
  325. font-size: 36rpx;
  326. color: #060809;
  327. margin-bottom: 16rpx;
  328. padding-left: 40rpx;
  329. .sort-num {
  330. margin-left: 12rpx;
  331. width: 36rpx;
  332. font-family: Futura, Futura;
  333. font-size: 30rpx;
  334. color: #060809;
  335. }
  336. }
  337. .tab-item-container {
  338. display: flex;
  339. &.is-to-be-select {
  340. flex-wrap: wrap;
  341. }
  342. }
  343. .tips {
  344. font-size: 24rpx;
  345. color: #060809;
  346. text-align: center;
  347. margin-top: 32rpx;
  348. }
  349. .un-bind-btn {
  350. position: absolute;
  351. bottom: 56rpx;
  352. left: 50%;
  353. transform: translateX(-50%);
  354. width: 93%;
  355. padding: 24rpx;
  356. text-align: center;
  357. background: #E4E7EC;
  358. border-radius: 40rpx;
  359. font-family: PingFangSC, PingFang SC;
  360. font-weight: bold;
  361. font-size: 32rpx;
  362. color: #060809;
  363. &:active {
  364. opacity: .7;
  365. }
  366. }
  367. </style>