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.
140 lines
3.7 KiB
140 lines
3.7 KiB
<script setup lang="ts"> |
|
import { inject } from 'vue' |
|
import { convertDurationToSeconds, convertMS2Duration, durationOptions } from '~/helpers/durationHelper' |
|
const editEnabled = inject<boolean>('editEnabled') |
|
/* |
|
export default { |
|
name: 'DurationCell', |
|
props: { |
|
column: Object, |
|
value: [Number, String], |
|
readOnly: Boolean, |
|
}, |
|
data: () => ({ |
|
// flag to determine to show warning message or not |
|
showWarningMessage: false, |
|
// duration in milliseconds |
|
durationInMS: null, |
|
// check if the cell is edited or not |
|
isEdited: false, |
|
}), |
|
computed: { |
|
localState: { |
|
get() { |
|
return convertMS2Duration(this.value, this.durationType) |
|
}, |
|
set(val) { |
|
this.isEdited = true |
|
const res = convertDurationToSeconds(val, this.durationType) |
|
if (res._isValid) { |
|
this.durationInMS = res._sec |
|
} |
|
}, |
|
}, |
|
durationPlaceholder() { |
|
return durationOptions[this.durationType].title |
|
}, |
|
durationType() { |
|
return this.column?.meta?.duration || 0 |
|
}, |
|
parentListeners() { |
|
const $listeners = {} |
|
|
|
if (this.$listeners.blur) { |
|
$listeners.blur = this.$listeners.blur |
|
} |
|
if (this.$listeners.focus) { |
|
$listeners.focus = this.$listeners.focus |
|
} |
|
|
|
return $listeners |
|
}, |
|
}, |
|
mounted() { |
|
window.addEventListener('keypress', (_) => { |
|
if (this.$refs.durationInput) { |
|
this.$refs.durationInput.focus() |
|
} |
|
}) |
|
}, |
|
methods: { |
|
checkDurationFormat(evt) { |
|
evt = evt || window.event |
|
const charCode = evt.which ? evt.which : evt.keyCode |
|
// ref: http://www.columbia.edu/kermit/ascii.html |
|
const PRINTABLE_CTL_RANGE = charCode > 31 |
|
const NON_DIGIT = charCode < 48 || charCode > 57 |
|
const NON_COLON = charCode !== 58 |
|
const NON_PERIOD = charCode !== 46 |
|
if (PRINTABLE_CTL_RANGE && NON_DIGIT && NON_COLON && NON_PERIOD) { |
|
this.showWarningMessage = true |
|
evt.preventDefault() |
|
} else { |
|
this.showWarningMessage = false |
|
// only allow digits, '.' and ':' (without quotes) |
|
return true |
|
} |
|
}, |
|
onBlur() { |
|
if (this.isEdited) { |
|
this.$emit('input', this.durationInMS) |
|
} |
|
this.isEdited = false |
|
}, |
|
}, |
|
} */ |
|
</script> |
|
|
|
<template> |
|
<div class="duration-cell-wrapper"> |
|
<input |
|
ref="durationInput" |
|
v-model="localState" |
|
:placeholder="durationPlaceholder" |
|
@blur="onBlur" |
|
@keypress="checkDurationFormat($event)" |
|
@keydown.enter="isEdited && $emit('input', durationInMS)" |
|
v-on="parentListeners" |
|
/> |
|
<div v-if="showWarningMessage == true" class="duration-warning"> |
|
<!-- TODO: i18n --> |
|
Please enter a number |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
.duration-cell-wrapper { |
|
padding: 10px; |
|
} |
|
|
|
.duration-warning { |
|
text-align: left; |
|
margin-top: 10px; |
|
color: #e65100; |
|
} |
|
</style> |
|
|
|
<!-- |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Wing-Kam Wong <wingkwong.code@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/>. |
|
* |
|
*/ |
|
-->
|
|
|