index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. <template>
  2. <view>
  3. <van-popup
  4. v-if="poppable"
  5. :custom-class="'van-calendar__popup--' + position"
  6. close-icon-class="van-calendar__close-icon"
  7. :show="show"
  8. :round="round"
  9. :position="position"
  10. :closeable="showTitle || showSubtitle"
  11. :close-on-click-overlay="closeOnClickOverlay"
  12. @enter="onOpen"
  13. @close="onClose"
  14. @after-enter="onOpened"
  15. @after-leave="onClosed"
  16. >
  17. <!-- parse <template is="calendar" :data="title, subtitle, showTitle, showSubtitle, minDate, maxDate, type, color, showMark, formatter, rowHeight, currentDate, safeAreaInsetBottom, showConfirm, confirmDisabledText, confirmText, scrollIntoView, allowSameDay"/> -->
  18. <block name="calendar">
  19. <view class="van-calendar">
  20. <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
  21. <slot name="title" slot="title"></slot>
  22. </header>
  23. <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
  24. <month
  25. :id="'month' + index"
  26. class="month"
  27. :data-date="item"
  28. :date="item"
  29. :type="type"
  30. :color="color"
  31. :minDate="minDate"
  32. :maxDate="maxDate"
  33. :showMark="showMark"
  34. :formatter="formatter"
  35. :rowHeight="rowHeight"
  36. :currentDate="currentDate"
  37. :showSubtitle="showSubtitle"
  38. :allowSameDay="allowSameDay"
  39. :showMonthTitle="index !== 0 || !showSubtitle"
  40. @click="onClickDay($event, { date: item, tagId: 'month' + index })"
  41. v-for="(item, index) in computed.getMonths(minDate, maxDate)"
  42. :key="index"
  43. ></month>
  44. </scroll-view>
  45. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  46. <slot name="footer"></slot>
  47. </view>
  48. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  49. <van-button
  50. v-if="showConfirm"
  51. round
  52. block
  53. type="danger"
  54. :color="color"
  55. custom-class="van-calendar__confirm"
  56. :disabled="computed.getButtonDisabled(type, currentDate)"
  57. nativeType="text"
  58. @click="onConfirm"
  59. >
  60. {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
  61. </van-button>
  62. </view>
  63. </view>
  64. </block>
  65. </van-popup>
  66. <!-- parse <template v-else is="calendar" :data="title, subtitle, showTitle, showSubtitle, minDate, maxDate, type, color, showMark, formatter, rowHeight, currentDate, safeAreaInsetBottom, showConfirm, confirmDisabledText, confirmText, scrollIntoView, allowSameDay"/> -->
  67. <block name="calendar" v-if="false" v-else>
  68. <view class="van-calendar">
  69. <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
  70. <slot name="title" slot="title"></slot>
  71. </header>
  72. <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
  73. <month
  74. :id="'month' + index"
  75. class="month"
  76. :data-date="item"
  77. :date="item"
  78. :type="type"
  79. :color="color"
  80. :minDate="minDate"
  81. :maxDate="maxDate"
  82. :showMark="showMark"
  83. :formatter="formatter"
  84. :rowHeight="rowHeight"
  85. :currentDate="currentDate"
  86. :showSubtitle="showSubtitle"
  87. :allowSameDay="allowSameDay"
  88. :showMonthTitle="index !== 0 || !showSubtitle"
  89. @click="onClickDay($event, { date: item, tagId: 'month' + index })"
  90. v-for="(item, index) in computed.getMonths(minDate, maxDate)"
  91. :key="index"
  92. ></month>
  93. </scroll-view>
  94. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  95. <slot name="footer"></slot>
  96. </view>
  97. <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
  98. <van-button
  99. v-if="showConfirm"
  100. round
  101. block
  102. type="danger"
  103. :color="color"
  104. custom-class="van-calendar__confirm"
  105. :disabled="computed.getButtonDisabled(type, currentDate)"
  106. nativeType="text"
  107. @click="onConfirm"
  108. >
  109. {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
  110. </van-button>
  111. </view>
  112. </view>
  113. </block>
  114. <van-toast id="van-toast" />
  115. </view>
  116. </template>
  117. <script module="computed" lang="wxs" src="@/miniprogram_npm/@vant/weapp/calendar/index.wxs"></script>
  118. <script>
  119. 'use strict';
  120. import header from './components/header/index';
  121. import month from './components/month/index';
  122. var __spreadArrays =
  123. (this && this.__spreadArrays) ||
  124. function () {
  125. for (var s = 0, i = 0, il = arguments.length; i < il; i++) {
  126. s += arguments[i].length;
  127. }
  128. for (var r = Array(s), k = 0, i = 0; i < il; i++) {
  129. for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) {
  130. r[k] = a[j];
  131. }
  132. }
  133. return r;
  134. };
  135. var __importDefault =
  136. (this && this.__importDefault) ||
  137. function (mod) {
  138. return mod && mod.__esModule
  139. ? mod
  140. : {
  141. default: mod
  142. };
  143. };
  144. Object.defineProperty(exports, '__esModule', {
  145. value: true
  146. });
  147. var component_1 = require('../common/component');
  148. var utils_1 = require('./utils');
  149. var toast_1 = __importDefault(require('../toast/toast'));
  150. component_1.VantComponent({
  151. props: {
  152. title: {
  153. type: String,
  154. value: '日期选择'
  155. },
  156. color: String,
  157. show: {
  158. type: Boolean,
  159. observer: function (val) {
  160. if (val) {
  161. this.initRect();
  162. this.scrollIntoView();
  163. }
  164. }
  165. },
  166. formatter: null,
  167. confirmText: {
  168. type: String,
  169. value: '确定'
  170. },
  171. rangePrompt: String,
  172. defaultDate: {
  173. type: [Number, Array],
  174. observer: function (val) {
  175. this.setData({
  176. currentDate: val
  177. });
  178. this.scrollIntoView();
  179. }
  180. },
  181. allowSameDay: Boolean,
  182. confirmDisabledText: String,
  183. type: {
  184. type: String,
  185. value: 'single',
  186. observer: 'reset'
  187. },
  188. minDate: {
  189. type: null,
  190. value: Date.now()
  191. },
  192. maxDate: {
  193. type: null,
  194. value: new Date(new Date().getFullYear(), new Date().getMonth() + 6, new Date().getDate()).getTime()
  195. },
  196. position: {
  197. type: String,
  198. value: 'bottom'
  199. },
  200. rowHeight: {
  201. type: [Number, String],
  202. value: utils_1.ROW_HEIGHT
  203. },
  204. round: {
  205. type: Boolean,
  206. value: true
  207. },
  208. poppable: {
  209. type: Boolean,
  210. value: true
  211. },
  212. showMark: {
  213. type: Boolean,
  214. value: true
  215. },
  216. showTitle: {
  217. type: Boolean,
  218. value: true
  219. },
  220. showConfirm: {
  221. type: Boolean,
  222. value: true
  223. },
  224. showSubtitle: {
  225. type: Boolean,
  226. value: true
  227. },
  228. safeAreaInsetBottom: {
  229. type: Boolean,
  230. value: true
  231. },
  232. closeOnClickOverlay: {
  233. type: Boolean,
  234. value: true
  235. },
  236. maxRange: {
  237. type: [Number, String],
  238. value: null
  239. }
  240. },
  241. data: {
  242. subtitle: '',
  243. currentDate: null,
  244. scrollIntoView: ''
  245. },
  246. created: function () {
  247. this.setData({
  248. currentDate: this.getInitialDate()
  249. });
  250. },
  251. mounted: function () {
  252. if (this.show || !this.poppable) {
  253. this.initRect();
  254. this.scrollIntoView();
  255. }
  256. },
  257. methods: {
  258. reset: function () {
  259. this.setData({
  260. currentDate: this.getInitialDate()
  261. });
  262. this.scrollIntoView();
  263. },
  264. initRect: function () {
  265. var that = this;
  266. if (this.contentObserver != null) {
  267. this.contentObserver.disconnect();
  268. }
  269. var contentObserver = this.createIntersectionObserver({
  270. thresholds: [0, 0.1, 0.9, 1],
  271. observeAll: true
  272. });
  273. this.contentObserver = contentObserver;
  274. contentObserver.relativeTo('.van-calendar__body');
  275. contentObserver.observe('.month', function (res) {
  276. if (res.boundingClientRect.top <= res.relativeRect.top) {
  277. // @ts-ignore
  278. that.setData({
  279. subtitle: utils_1.formatMonthTitle(res.dataset.date)
  280. });
  281. }
  282. });
  283. },
  284. getInitialDate: function () {
  285. var _a = this;
  286. var type = _a.type;
  287. var defaultDate = _a.defaultDate;
  288. var minDate = _a.minDate;
  289. if (type === 'range') {
  290. var _b = defaultDate || [];
  291. var startDay = _b[0];
  292. var endDay = _b[1];
  293. return [startDay || minDate, endDay || utils_1.getNextDay(new Date(minDate)).getTime()];
  294. }
  295. if (type === 'multiple') {
  296. return defaultDate || [minDate];
  297. }
  298. return defaultDate || minDate;
  299. },
  300. scrollIntoView: function () {
  301. var that = this;
  302. setTimeout(function () {
  303. var _a = that;
  304. var currentDate = _a.currentDate;
  305. var type = _a.type;
  306. var show = _a.show;
  307. var poppable = _a.poppable;
  308. var minDate = _a.minDate;
  309. var maxDate = _a.maxDate;
  310. var targetDate = type === 'single' ? currentDate : currentDate[0];
  311. var displayed = show || !poppable;
  312. if (!targetDate || !displayed) {
  313. return;
  314. }
  315. var months = utils_1.getMonths(minDate, maxDate);
  316. months.some(function (month, index) {
  317. if (utils_1.compareMonth(month, targetDate) === 0) {
  318. that.setData({
  319. scrollIntoView: 'month' + index
  320. });
  321. return true;
  322. }
  323. return false;
  324. });
  325. }, 100);
  326. },
  327. onOpen: function () {
  328. this.$emit('open');
  329. },
  330. onOpened: function () {
  331. this.$emit('opened');
  332. },
  333. onClose: function () {
  334. this.$emit('close');
  335. },
  336. onClosed: function () {
  337. this.$emit('closed');
  338. },
  339. onClickDay: function (event) {
  340. var date = event.detail.date;
  341. var _a = this;
  342. var type = _a.type;
  343. var currentDate = _a.currentDate;
  344. var allowSameDay = _a.allowSameDay;
  345. if (type === 'range') {
  346. var startDay = currentDate[0];
  347. var endDay = currentDate[1];
  348. if (startDay && !endDay) {
  349. var compareToStart = utils_1.compareDay(date, startDay);
  350. if (compareToStart === 1) {
  351. this.select([startDay, date], true);
  352. } else if (compareToStart === -1) {
  353. this.select([date, null]);
  354. } else if (allowSameDay) {
  355. this.select([date, date]);
  356. }
  357. } else {
  358. this.select([date, null]);
  359. }
  360. } else if (type === 'multiple') {
  361. var selectedIndex_1;
  362. var selected = currentDate.some(function (dateItem, index) {
  363. var equal = utils_1.compareDay(dateItem, date) === 0;
  364. if (equal) {
  365. selectedIndex_1 = index;
  366. }
  367. return equal;
  368. });
  369. if (selected) {
  370. var cancelDate = currentDate.splice(selectedIndex_1, 1);
  371. this.setData({
  372. currentDate: currentDate
  373. });
  374. this.unselect(cancelDate);
  375. } else {
  376. this.select(__spreadArrays(currentDate, [date]));
  377. }
  378. } else {
  379. this.select(date, true);
  380. }
  381. },
  382. unselect: function (dateArray) {
  383. var date = dateArray[0];
  384. if (date) {
  385. this.$emit('unselect', utils_1.copyDates(date));
  386. }
  387. },
  388. select: function (date, complete) {
  389. if (complete && this.type === 'range') {
  390. var valid = this.checkRange(date);
  391. if (!valid) {
  392. // auto selected to max range if showConfirm
  393. if (this.showConfirm) {
  394. this.emit([date[0], utils_1.getDayByOffset(date[0], this.maxRange - 1)]);
  395. } else {
  396. this.emit(date);
  397. }
  398. return;
  399. }
  400. }
  401. this.emit(date);
  402. if (complete && !this.showConfirm) {
  403. this.onConfirm();
  404. }
  405. },
  406. emit: function (date) {
  407. var getTime = function (date) {
  408. return date instanceof Date ? date.getTime() : date;
  409. };
  410. this.setData({
  411. currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date)
  412. });
  413. this.$emit('select', utils_1.copyDates(date));
  414. },
  415. checkRange: function (date) {
  416. var _a = this;
  417. var maxRange = _a.maxRange;
  418. var rangePrompt = _a.rangePrompt;
  419. if (maxRange && utils_1.calcDateNum(date) > maxRange) {
  420. toast_1.default({
  421. context: this,
  422. message: rangePrompt || '\u9009\u62E9\u5929\u6570\u4E0D\u80FD\u8D85\u8FC7 ' + maxRange + ' \u5929'
  423. });
  424. return false;
  425. }
  426. return true;
  427. },
  428. onConfirm: function () {
  429. var that = this;
  430. if (this.type === 'range' && !this.checkRange(this.currentDate)) {
  431. return;
  432. }
  433. this.$nextTick(function () {
  434. that.$emit('confirm', utils_1.copyDates(that.currentDate));
  435. });
  436. }
  437. }
  438. });
  439. </script>
  440. <style>
  441. @import './index.css';
  442. @import 'undefined';
  443. </style>