2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-06-20 00:50:35 +03:00

feat: add prop date-format

This commit is contained in:
mxie
2018-08-07 12:04:53 +08:00
parent a2e4230d8d
commit 3c27647ff3
8 changed files with 90 additions and 29 deletions
+9 -5
View File
@@ -37,6 +37,7 @@
<panel-date
v-show="panel === 'DATE'"
:value="value"
:date-format="dateFormat"
:calendar-month="calendarMonth"
:calendar-year="calendarYear"
:start-at="startAt"
@@ -68,7 +69,7 @@
</template>
<script>
import { isValidDate, isDateObejct } from '@/utils/index'
import { isValidDate, isDateObejct, formatDate } from '@/utils/index'
import locale from '@/mixins/locale'
import scrollIntoView from '@/utils/scroll-into-view'
import PanelDate from '@/panel/date'
@@ -93,12 +94,15 @@ export default {
type: Boolean,
default: false
},
// below user set
type: {
type: String,
default: 'date' // ['date', 'datetime'] zendy added 'month', 'year'
default: 'date'
},
dateFormat: {
type: String,
default: 'YYYY-MM-DD'
},
// below user set
firstDayOfWeek: {
default: 7,
type: Number,
@@ -159,7 +163,7 @@ export default {
}
},
timeHeader () {
return this.value && new Date(this.value).toLocaleDateString()
return this.value && formatDate(this.value, this.dateFormat)
},
yearHeader () {
return this.firstYear + ' ~ ' + (this.firstYear + 10)
+28 -16
View File
@@ -49,11 +49,11 @@
ref="calendar">
<slot name="header">
<div class="mx-shortcuts-wrapper"
v-if="range && innnerShortcuts.length">
v-if="range && innerShortcuts.length">
<button
type="button"
class="mx-shortcuts"
v-for="(range, index) in innnerShortcuts"
v-for="(range, index) in innerShortcuts"
:key="index"
@click="selectRange(range)">{{range.text}}</button>
</div>
@@ -61,6 +61,8 @@
<calendar-panel
v-if="!range"
v-bind="$attrs"
:type="type"
:date-format="innerDateFormat"
:value="currentValue"
:visible="popupVisible"
@select-date="selectDate"
@@ -70,6 +72,8 @@
<calendar-panel
style="box-shadow:1px 0 rgba(0, 0, 0, .1)"
v-bind="$attrs"
:type="type"
:date-format="innerDateFormat"
:value="currentValue[0]"
:end-at="currentValue[1]"
:start-at="null"
@@ -78,6 +82,8 @@
@select-time="selectStartTime"></calendar-panel>
<calendar-panel
v-bind="$attrs"
:type="type"
:date-format="innerDateFormat"
:value="currentValue[1]"
:start-at="currentValue[0]"
:end-at="null"
@@ -100,7 +106,7 @@
<script>
import fecha from 'fecha'
import clickoutside from '@/directives/clickoutside'
import { isValidDate, isValidRange, isDateObejct, isPlainObject } from '@/utils/index'
import { isValidDate, isValidRange, isDateObejct, isPlainObject, formatDate, parseDate } from '@/utils/index'
import CalendarPanel from './calendar.vue'
import locale from '@/mixins/locale'
import Languages from '@/locale/languages'
@@ -127,6 +133,13 @@ export default {
type: String,
default: 'YYYY-MM-DD'
},
dateFormat: {
type: String // format the time header and date tooltip
},
type: {
type: String,
default: 'date' // ['date', 'datetime'] zendy added 'month', 'year'
},
range: {
type: Boolean,
default: false
@@ -226,7 +239,7 @@ export default {
showClearIcon () {
return !this.disabled && this.clearable && (this.range ? isValidRange(this.value) : isValidDate(this.value))
},
innnerShortcuts () {
innerShortcuts () {
if (Array.isArray(this.shortcuts)) {
return this.shortcuts
}
@@ -265,6 +278,15 @@ export default {
}
]
return arr
},
innerDateFormat () {
if (this.dateFormat) {
return this.dateFormat
}
if (this.type === 'date') {
return this.format
}
return this.format.replace(/[Hh]+.*[msSaAZ]|\[.*?\]/g, '').trim() || 'YYYY-MM-DD'
}
},
methods: {
@@ -273,20 +295,10 @@ export default {
this.displayPopup()
},
stringify (date, format) {
try {
format = format || this.format
return fecha.format(new Date(date), format)
} catch (e) {
return ''
}
return formatDate(date, format || this.format)
},
parseDate (value, format) {
try {
format = format || this.format
return fecha.parse(value, format)
} catch (e) {
return false
}
return parseDate(value, format || this.format)
},
dateEqual (a, b) {
return isDateObejct(a) && isDateObejct(b) && a.getTime() === b.getTime()
+6 -2
View File
@@ -1,4 +1,5 @@
import locale from '@/mixins/locale'
import { formatDate } from '@/utils/index'
export default {
name: 'panelDate',
@@ -7,6 +8,10 @@ export default {
value: null,
startAt: null,
endAt: null,
dateFormat: {
type: String,
default: 'YYYY-MM-DD'
},
calendarMonth: {
default: new Date().getMonth()
},
@@ -96,11 +101,10 @@ export default {
classes.push('inrange')
}
}
return classes
},
getCellTitle ({ year, month, day }) {
return new Date(year, month, day).toLocaleDateString()
return formatDate(new Date(year, month, day), this.dateFormat)
}
},
render (h) {
+18
View File
@@ -1,3 +1,5 @@
import fecha from 'fecha'
export function isPlainObject (obj) {
return Object.prototype.toString.call(obj) === '[object Object]'
}
@@ -47,3 +49,19 @@ export function formatTime (time, type = '24') {
}
return result
}
export function formatDate (date, format) {
try {
return fecha.format(new Date(date), format)
} catch (e) {
return ''
}
}
export function parseDate (value, format) {
try {
return fecha.parse(value, format)
} catch (e) {
return false
}
}