index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <view
  3. class="van-swipe-cell"
  4. data-key="cell"
  5. @tap.stop.prevent="onClick"
  6. @touchstart="startDrag"
  7. @touchmove.stop.prevent="parseEventDynamicCode($event, catchMove ? 'noop' : '')"
  8. @touchmove.capture="onDrag"
  9. @touchend="endDrag"
  10. @touchcancel="endDrag"
  11. >
  12. <view :style="wrapperStyle">
  13. <view v-if="leftWidth" class="van-swipe-cell__left" data-key="left" @tap.stop.prevent="onClick">
  14. <slot name="left" />
  15. </view>
  16. <slot />
  17. <view v-if="rightWidth" class="van-swipe-cell__right" data-key="right" @tap.stop.prevent="onClick">
  18. <slot name="right" />
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. 'use strict';
  25. Object.defineProperty(exports, '__esModule', {
  26. value: true
  27. });
  28. var component_1 = require('../common/component');
  29. var touch_1 = require('../mixins/touch');
  30. var utils_1 = require('../common/utils');
  31. var THRESHOLD = 0.3;
  32. var ARRAY = [];
  33. component_1.VantComponent({
  34. props: {
  35. disabled: Boolean,
  36. leftWidth: {
  37. type: Number,
  38. value: 0,
  39. observer: function (leftWidth) {
  40. if (leftWidth === void 0) {
  41. leftWidth = 0;
  42. }
  43. if (this.offset > 0) {
  44. this.swipeMove(leftWidth);
  45. }
  46. }
  47. },
  48. rightWidth: {
  49. type: Number,
  50. value: 0,
  51. observer: function (rightWidth) {
  52. if (rightWidth === void 0) {
  53. rightWidth = 0;
  54. }
  55. if (this.offset < 0) {
  56. this.swipeMove(-rightWidth);
  57. }
  58. }
  59. },
  60. asyncClose: Boolean,
  61. name: {
  62. type: [Number, String],
  63. value: ''
  64. }
  65. },
  66. mixins: [touch_1.touch],
  67. data: {
  68. catchMove: false
  69. },
  70. created: function () {
  71. this.offset = 0;
  72. ARRAY.push(this);
  73. },
  74. destroyed: function () {
  75. var that = this;
  76. ARRAY = ARRAY.filter(function (item) {
  77. return item !== that;
  78. });
  79. },
  80. methods: {
  81. open: function (position) {
  82. var _a = this;
  83. var leftWidth = _a.leftWidth;
  84. var rightWidth = _a.rightWidth;
  85. var offset = position === 'left' ? leftWidth : -rightWidth;
  86. this.swipeMove(offset);
  87. this.$emit('open', {
  88. position: position,
  89. name: this.name
  90. });
  91. },
  92. close: function () {
  93. this.swipeMove(0);
  94. },
  95. swipeMove: function (offset) {
  96. if (offset === void 0) {
  97. offset = 0;
  98. }
  99. this.offset = utils_1.range(offset, -this.rightWidth, this.leftWidth);
  100. var transform = 'translate3d(' + this.offset + 'px, 0, 0)';
  101. var transition = this.dragging ? 'none' : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
  102. this.setData({
  103. wrapperStyle:
  104. '\n -webkit-transform: ' +
  105. transform +
  106. ';\n -webkit-transition: ' +
  107. transition +
  108. ';\n transform: ' +
  109. transform +
  110. ';\n transition: ' +
  111. transition +
  112. ';\n '
  113. });
  114. },
  115. swipeLeaveTransition: function () {
  116. var _a = this;
  117. var leftWidth = _a.leftWidth;
  118. var rightWidth = _a.rightWidth;
  119. var offset = this.offset;
  120. if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
  121. this.open('right');
  122. } else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
  123. this.open('left');
  124. } else {
  125. this.swipeMove(0);
  126. }
  127. this.setData({
  128. catchMove: false
  129. });
  130. },
  131. startDrag: function (event) {
  132. if (this.disabled) {
  133. return;
  134. }
  135. this.startOffset = this.offset;
  136. this.touchStart(event);
  137. },
  138. noop: function () {},
  139. onDrag: function (event) {
  140. var that = this;
  141. if (this.disabled) {
  142. return;
  143. }
  144. this.touchMove(event);
  145. if (this.direction !== 'horizontal') {
  146. return;
  147. }
  148. this.dragging = true;
  149. ARRAY.filter(function (item) {
  150. return item !== that;
  151. }).forEach(function (item) {
  152. return item.close();
  153. });
  154. this.setData({
  155. catchMove: true
  156. });
  157. this.swipeMove(this.startOffset + this.deltaX);
  158. },
  159. endDrag: function () {
  160. if (this.disabled) {
  161. return;
  162. }
  163. this.dragging = false;
  164. this.swipeLeaveTransition();
  165. },
  166. onClick: function (event) {
  167. var _a = event.currentTarget.dataset.key;
  168. var position = _a === void 0 ? 'outside' : _a;
  169. this.$emit('click', position);
  170. if (!this.offset) {
  171. return;
  172. }
  173. if (this.asyncClose) {
  174. this.$emit('close', {
  175. position: position,
  176. instance: this,
  177. name: this.name
  178. });
  179. } else {
  180. this.swipeMove(0);
  181. }
  182. }
  183. }
  184. });
  185. </script>
  186. <style>
  187. @import './index.css';
  188. </style>