mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
4.5 KiB
165 lines
4.5 KiB
<script setup lang="ts"> |
|
import dayjs from 'dayjs' |
|
import { computed } from '@vue/reactivity' |
|
import useProject from '~/composables/useProject' |
|
|
|
const { modelValue } = defineProps<{ modelValue: any }>() |
|
const emit = defineEmits(['update:modelValue']) |
|
const { isMysql } = useProject() |
|
const showMessage = ref(false) |
|
|
|
const localState = computed({ |
|
get() { |
|
if (!modelValue) { |
|
return modelValue |
|
} |
|
const d = /^\d+$/.test(modelValue) ? dayjs(+modelValue) : dayjs(modelValue) |
|
if (d.isValid()) { |
|
showMessage.value = false |
|
return d.format('YYYY-MM-DD HH:mm') |
|
} else { |
|
showMessage.value = true |
|
} |
|
}, |
|
set(value) { |
|
if (isMysql) { |
|
emit('update:modelValue', value && dayjs(value).format('YYYY-MM-DD HH:mm:ss')) |
|
} else { |
|
emit('update:modelValue', value && dayjs(value).format('YYYY-MM-DD HH:mm:ssZ')) |
|
} |
|
}, |
|
}) |
|
|
|
/* import dayjs from 'dayjs' |
|
import utc from 'dayjs/plugin/utc' |
|
|
|
dayjs.extend(utc) |
|
|
|
export default { |
|
name: 'DateTimePickerCell', |
|
props: { |
|
value: [String, Date, Number], |
|
ignoreFocus: Boolean, |
|
}, |
|
data: () => ({ |
|
showMessage: false, |
|
}), |
|
computed: { |
|
isMysql() { |
|
return ['mysql', 'mysql2'].indexOf(this.$store.getters['project/GtrClientType']) |
|
}, |
|
localState: { |
|
get() { |
|
if (!this.value) { |
|
return this.value |
|
} |
|
const d = /^\d+$/.test(this.value) ? dayjs(+this.value) : dayjs(this.value) |
|
if (d.isValid()) { |
|
this.showMessage = false |
|
return d.format('YYYY-MM-DD HH:mm') |
|
} else { |
|
this.showMessage = true |
|
} |
|
}, |
|
set(value) { |
|
if (this.isMysql) { |
|
this.$emit('input', value && dayjs(value).format('YYYY-MM-DD HH:mm:ss')) |
|
} else { |
|
this.$emit('input', value && dayjs(value).format('YYYY-MM-DD HH:mm:ssZ')) |
|
} |
|
}, |
|
}, |
|
parentListeners() { |
|
const $listeners = {} |
|
|
|
if (this.$listeners.blur) { |
|
// $listeners.blur = this.$listeners.blur |
|
} |
|
if (this.$listeners.focus) { |
|
$listeners.focus = this.$listeners.focus |
|
} |
|
|
|
return $listeners |
|
}, |
|
}, |
|
mounted() { |
|
// listen dialog click:outside event and save on close |
|
if (this.$refs.picker && this.$refs.picker.$children && this.$refs.picker.$children[0]) { |
|
this.$refs.picker.$children[0].$on('click:outside', () => { |
|
this.$refs.picker.okHandler() |
|
}) |
|
} |
|
|
|
if (!this.ignoreFocus) { |
|
this.$refs.picker.display = true |
|
} |
|
}, |
|
} */ |
|
</script> |
|
|
|
<template> |
|
<input type="datetime-local" /> |
|
<!-- <div> --> |
|
<!-- <div v-show="!showMessage"> --> |
|
<!-- <v-datetime-picker --> |
|
<!-- ref="picker" --> |
|
<!-- v-model="localState" --> |
|
<!-- class="caption xc-date-time-picker" --> |
|
<!-- :text-field-props="{ --> |
|
<!-- class: 'caption mt-0 pt-0', --> |
|
<!-- flat: true, --> |
|
<!-- solo: true, --> |
|
<!-- dense: true, --> |
|
<!-- hideDetails: true, --> |
|
<!-- }" --> |
|
<!-- :time-picker-props="{ --> |
|
<!-- format: '24hr', --> |
|
<!-- }" --> |
|
<!-- v-on="parentListeners" --> |
|
<!-- /> --> |
|
<!-- </div> --> |
|
<!-- <div v-show="showMessage" class="edit-warning" @dblclick="$refs.picker.display = true"> --> |
|
<!-- <!– TODO: i18n –> --> |
|
<!-- ERR: Couldn't parse {{ value }} --> |
|
<!-- </div> --> |
|
<!-- </div> --> |
|
</template> |
|
|
|
<style scoped> |
|
/*:deep(.v-input),*/ |
|
/*:deep(.v-text-field) {*/ |
|
/* margin-top: 0 !important;*/ |
|
/* padding-top: 0 !important;*/ |
|
/* font-size: inherit !important;*/ |
|
/*}*/ |
|
|
|
/*.edit-warning {*/ |
|
/* padding: 10px;*/ |
|
/* text-align: left;*/ |
|
/* color: #e65100;*/ |
|
/*}*/ |
|
</style> |
|
<!-- |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/ |
|
-->
|
|
|