date-time-picker.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  2. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  3. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  4. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  5. return c > 3 && r && Object.defineProperty(target, key, r), r;
  6. };
  7. import dayjs from 'dayjs';
  8. import config from '../common/config';
  9. import { SuperComponent, wxComponent } from '../common/src/index';
  10. import defaultLocale from './locale/zh';
  11. import props from './props';
  12. const { prefix } = config;
  13. const name = `${prefix}-date-time-picker`;
  14. var ModeItem;
  15. (function (ModeItem) {
  16. ModeItem["YEAR"] = "year";
  17. ModeItem["MONTH"] = "month";
  18. ModeItem["DATE"] = "date";
  19. ModeItem["HOUR"] = "hour";
  20. ModeItem["MINUTE"] = "minute";
  21. ModeItem["SECOND"] = "second";
  22. })(ModeItem || (ModeItem = {}));
  23. const DATE_MODES = ['year', 'month', 'date'];
  24. const TIME_MODES = ['hour', 'minute', 'second'];
  25. const FULL_MODES = [...DATE_MODES, ...TIME_MODES];
  26. const DEFAULT_MIN_DATE = dayjs('2000-01-01 00:00:00');
  27. const DEFAULT_MAX_DATE = dayjs('2030-12-31 23:59:59');
  28. let DateTimePicker = class DateTimePicker extends SuperComponent {
  29. constructor() {
  30. super(...arguments);
  31. this.properties = props;
  32. this.externalClasses = [`${prefix}-class`, `${prefix}-class-confirm`, `${prefix}-class-cancel`, `${prefix}-class-title`];
  33. this.options = {
  34. multipleSlots: true,
  35. };
  36. this.observers = {
  37. 'start, end, value': function () {
  38. this.updateColumns();
  39. },
  40. mode(m) {
  41. const fullModes = this.getFullModeArray(m);
  42. this.setData({
  43. fullModes,
  44. });
  45. this.updateColumns();
  46. },
  47. };
  48. this.date = null;
  49. this.data = {
  50. prefix,
  51. classPrefix: name,
  52. columns: [],
  53. columnsValue: [],
  54. fullModes: [],
  55. locale: defaultLocale,
  56. };
  57. this.controlledProps = [
  58. {
  59. key: 'value',
  60. event: 'change',
  61. },
  62. ];
  63. this.methods = {
  64. updateColumns() {
  65. this.date = this.getParseDate();
  66. const { columns, columnsValue } = this.getValueCols();
  67. this.setData({
  68. columns,
  69. columnsValue,
  70. });
  71. },
  72. getParseDate() {
  73. const { value, defaultValue } = this.properties;
  74. const minDate = this.getMinDate();
  75. const isTimeMode = this.isTimeMode();
  76. let currentValue = value || defaultValue;
  77. if (isTimeMode) {
  78. const dateStr = dayjs(minDate).format('YYYY-MM-DD');
  79. currentValue = dayjs(`${dateStr} ${currentValue}`);
  80. }
  81. const parseDate = dayjs(currentValue || minDate);
  82. const isDateValid = parseDate.isValid();
  83. return isDateValid ? parseDate : minDate;
  84. },
  85. getMinDate() {
  86. const { start } = this.properties;
  87. return start ? dayjs(start) : DEFAULT_MIN_DATE;
  88. },
  89. getMaxDate() {
  90. const { end } = this.properties;
  91. return end ? dayjs(end) : DEFAULT_MAX_DATE;
  92. },
  93. getDateRect(type = 'default') {
  94. const map = {
  95. min: 'getMinDate',
  96. max: 'getMaxDate',
  97. default: 'getDate',
  98. };
  99. const date = this[map[type]]();
  100. const keys = ['year', 'month', 'date', 'hour', 'minute', 'second'];
  101. return keys.map((k) => { var _a; return (_a = date[k]) === null || _a === void 0 ? void 0 : _a.call(date); });
  102. },
  103. getDate() {
  104. return this.clipDate((this === null || this === void 0 ? void 0 : this.date) || DEFAULT_MIN_DATE);
  105. },
  106. clipDate(date) {
  107. const minDate = this.getMinDate();
  108. const maxDate = this.getMaxDate();
  109. return dayjs(Math.min(Math.max(minDate.valueOf(), date.valueOf()), maxDate.valueOf()));
  110. },
  111. setYear(date, year) {
  112. const beforeMonthDays = date.date();
  113. const afterMonthDays = date.year(year).daysInMonth();
  114. const tempDate = date.date(Math.min(beforeMonthDays.valueOf(), afterMonthDays.valueOf()));
  115. return tempDate.year(year);
  116. },
  117. setMonth(date, month) {
  118. const beforeMonthDays = date.date();
  119. const afterMonthDays = date.month(month).daysInMonth();
  120. const tempDate = date.date(Math.min(beforeMonthDays.valueOf(), afterMonthDays.valueOf()));
  121. return tempDate.month(month);
  122. },
  123. getColumnOptions() {
  124. const { fullModes } = this.data;
  125. const columnOptions = [];
  126. fullModes === null || fullModes === void 0 ? void 0 : fullModes.forEach((mode) => {
  127. const columnOption = this.getOptionByType(mode);
  128. columnOptions.push(columnOption);
  129. });
  130. return columnOptions;
  131. },
  132. getOptionByType(type) {
  133. const { locale } = this.data;
  134. const options = [];
  135. const minEdge = this.getOptionEdge('min', type);
  136. const maxEdge = this.getOptionEdge('max', type);
  137. for (let i = minEdge; i <= maxEdge; i += 1) {
  138. const label = type === 'month' ? i + 1 : i;
  139. options.push({
  140. value: `${i}`,
  141. label: `${label + locale[type]}`,
  142. });
  143. }
  144. return options;
  145. },
  146. getYearOptions(dateParams) {
  147. const { locale } = this.data;
  148. const { minDateYear, maxDateYear } = dateParams;
  149. const years = [];
  150. for (let i = minDateYear; i <= maxDateYear; i += 1) {
  151. years.push({
  152. value: `${i}`,
  153. label: `${i + locale.year}`,
  154. });
  155. }
  156. return years;
  157. },
  158. getOptionEdge(minOrMax, type) {
  159. const selDateArray = this.getDateRect();
  160. const compareArray = this.getDateRect(minOrMax);
  161. const edge = {
  162. month: [0, 11],
  163. date: [1, this.getDate().daysInMonth()],
  164. hour: [0, 23],
  165. minute: [0, 59],
  166. second: [0, 59],
  167. };
  168. const types = ['year', 'month', 'date', 'hour', 'minute', 'second'];
  169. for (let i = 0, size = selDateArray.length; i < size; i += 1) {
  170. if (types[i] === type)
  171. return compareArray[i];
  172. if (compareArray[i] !== selDateArray[i])
  173. return edge[type][minOrMax === 'min' ? 0 : 1];
  174. }
  175. return edge[type][minOrMax === 'min' ? 0 : 1];
  176. },
  177. getMonthOptions() {
  178. const { locale } = this.data;
  179. const months = [];
  180. const minMonth = this.getOptionEdge('min', 'month');
  181. const maxMonth = this.getOptionEdge('max', 'month');
  182. for (let i = minMonth; i <= maxMonth; i += 1) {
  183. months.push({
  184. value: `${i}`,
  185. label: `${i + 1 + locale.month}`,
  186. });
  187. }
  188. return months;
  189. },
  190. getDayOptions() {
  191. const { locale } = this.data;
  192. const days = [];
  193. const minDay = this.getOptionEdge('min', 'date');
  194. const maxDay = this.getOptionEdge('max', 'date');
  195. for (let i = minDay; i <= maxDay; i += 1) {
  196. days.push({
  197. value: `${i}`,
  198. label: `${i + locale.day}`,
  199. });
  200. }
  201. return days;
  202. },
  203. getHourOptions() {
  204. const { locale } = this.data;
  205. const hours = [];
  206. const minHour = this.getOptionEdge('min', 'hour');
  207. const maxHour = this.getOptionEdge('max', 'hour');
  208. for (let i = minHour; i <= maxHour; i += 1) {
  209. hours.push({
  210. value: `${i}`,
  211. label: `${i + locale.hour}`,
  212. });
  213. }
  214. return hours;
  215. },
  216. getMinuteOptions() {
  217. const { locale } = this.data;
  218. const minutes = [];
  219. const minMinute = this.getOptionEdge('min', 'minute');
  220. const maxMinute = this.getOptionEdge('max', 'minute');
  221. for (let i = minMinute; i <= maxMinute; i += 1) {
  222. minutes.push({
  223. value: `${i}`,
  224. label: `${i + locale.minute}`,
  225. });
  226. }
  227. return minutes;
  228. },
  229. getValueCols() {
  230. return {
  231. columns: this.getColumnOptions(),
  232. columnsValue: this.getColumnsValue(),
  233. };
  234. },
  235. getColumnsValue() {
  236. const { fullModes } = this.data;
  237. const date = this.getDate();
  238. const columnsValue = [];
  239. fullModes === null || fullModes === void 0 ? void 0 : fullModes.forEach((mode) => {
  240. columnsValue.push(`${date[mode]()}`);
  241. });
  242. return columnsValue;
  243. },
  244. getNewDate(value, type) {
  245. let newValue = this.getDate();
  246. switch (type) {
  247. case ModeItem.YEAR:
  248. newValue = this.setYear(newValue, value);
  249. break;
  250. case ModeItem.MONTH:
  251. newValue = this.setMonth(newValue, value);
  252. break;
  253. case ModeItem.DATE:
  254. newValue = newValue.date(value);
  255. break;
  256. case ModeItem.HOUR:
  257. newValue = newValue.hour(value);
  258. break;
  259. case ModeItem.MINUTE:
  260. newValue = newValue.minute(value);
  261. break;
  262. case ModeItem.SECOND:
  263. newValue = newValue.second(value);
  264. break;
  265. default:
  266. break;
  267. }
  268. return this.clipDate(newValue);
  269. },
  270. onColumnChange(e) {
  271. const { value, column } = e === null || e === void 0 ? void 0 : e.detail;
  272. const { fullModes, format } = this.data;
  273. const columnValue = value === null || value === void 0 ? void 0 : value[column];
  274. const columnType = fullModes === null || fullModes === void 0 ? void 0 : fullModes[column];
  275. const newValue = this.getNewDate(parseInt(columnValue, 10), columnType);
  276. this.date = newValue;
  277. const { columns, columnsValue } = this.getValueCols();
  278. this.setData({
  279. columns,
  280. columnsValue,
  281. });
  282. const date = this.getDate();
  283. const pickValue = format ? date.format(format) : date.valueOf();
  284. this.triggerEvent('pick', { value: pickValue });
  285. },
  286. onConfirm() {
  287. const { format } = this.properties;
  288. const date = this.getDate();
  289. const value = format ? date.format(format) : date.valueOf();
  290. this._trigger('change', { value });
  291. this.resetColumns();
  292. },
  293. onCancel() {
  294. this.resetColumns();
  295. this.triggerEvent('cancel');
  296. },
  297. onVisibleChange(e) {
  298. if (!e.detail.visible) {
  299. this.resetColumns();
  300. }
  301. },
  302. resetColumns() {
  303. const parseDate = this.getParseDate();
  304. this.date = parseDate;
  305. const { columns, columnsValue } = this.getValueCols();
  306. this.setData({
  307. columns,
  308. columnsValue,
  309. });
  310. },
  311. };
  312. }
  313. getFullModeArray(mode) {
  314. if (typeof mode === 'string' || mode instanceof String) {
  315. return this.getFullModeByModeString(mode, FULL_MODES);
  316. }
  317. if (Array.isArray(mode)) {
  318. if ((mode === null || mode === void 0 ? void 0 : mode.length) === 1) {
  319. return this.getFullModeByModeString(mode[0], FULL_MODES);
  320. }
  321. if ((mode === null || mode === void 0 ? void 0 : mode.length) === 2) {
  322. const dateModes = this.getFullModeByModeString(mode[0], DATE_MODES);
  323. const timeModes = this.getFullModeByModeString(mode[1], TIME_MODES);
  324. return [...dateModes, ...timeModes];
  325. }
  326. }
  327. }
  328. getFullModeByModeString(modeString, matchModes) {
  329. if (!modeString) {
  330. return [];
  331. }
  332. const endIndex = matchModes === null || matchModes === void 0 ? void 0 : matchModes.findIndex((mode) => modeString === mode);
  333. return matchModes === null || matchModes === void 0 ? void 0 : matchModes.slice(0, endIndex + 1);
  334. }
  335. isTimeMode() {
  336. const { fullModes } = this.data;
  337. return fullModes[0] === ModeItem.HOUR;
  338. }
  339. };
  340. DateTimePicker = __decorate([
  341. wxComponent()
  342. ], DateTimePicker);
  343. export default DateTimePicker;