Blame view

src/components/date-picker/panel/Date/date-panel-mixin.js 1.35 KB
ca8e830c   Sergio Crisostomo   move files to sub...
1
2
3
4
5
6
7
  
  import { oneOf } from '../../../../utils/assist';
  import {initTimeDate } from '../../util';
  
  
  export default {
      props: {
ca8e830c   Sergio Crisostomo   move files to sub...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
          showTime: {
              type: Boolean,
              default: false
          },
          format: {
              type: String,
              default: 'yyyy-MM-dd'
          },
          selectionMode: {
              type: String,
              validator (value) {
                  return oneOf(value, ['year', 'month', 'date', 'time']);
              },
              default: 'date'
          },
          shortcuts: {
              type: Array,
              default: () => []
          },
          disabledDate: {
              type: Function,
              default: () => false
          },
          value: {
              type: Array,
              default: () => [initTimeDate(), initTimeDate()]
63bd0f7d   Sergio Crisostomo   Add start-date pr...
34
          },
79ac2457   Sergio Crisostomo   Allow DatePicker ...
35
36
37
38
          timePickerOptions: {
              default: () => ({}),
              type: Object,
          },
e55ba7a2   Sergio Crisostomo   Add week numbers
39
40
41
42
          showWeekNumbers: {
              type: Boolean,
              default: false
          },
63bd0f7d   Sergio Crisostomo   Add start-date pr...
43
44
          startDate: {
              type: Date
b52e02e4   Sergio Crisostomo   Fix month|year pr...
45
46
47
48
          },
          pickerType: {
              type: String,
              require: true
ca8e830c   Sergio Crisostomo   move files to sub...
49
50
51
52
53
54
55
56
57
          }
      },
      computed: {
          isTime(){
              return this.currentView === 'time';
          }
      },
      methods: {
          handleToggleTime(){
71b68751   Sergio Crisostomo   Fix date/time pan...
58
              this.currentView = this.currentView === 'time' ? 'date' : 'time';
ca8e830c   Sergio Crisostomo   move files to sub...
59
60
61
          },
      }
  };