diff options
| author | Henry Jameson <me@hjkos.com> | 2024-05-22 19:54:19 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-05-22 19:54:19 +0300 |
| commit | e4a819a0e2ed9c57dc2191428d86a33bb5918862 (patch) | |
| tree | c8ca394e149c47d5b67348ddcf6e4cf187d0e914 /src/components/settings_modal/helpers/unit_setting.js | |
| parent | fd1011f622870385d8a694d60b66269e731b36cd (diff) | |
initial Appearance Tab implementation, added text size/UI scale option
Diffstat (limited to 'src/components/settings_modal/helpers/unit_setting.js')
| -rw-r--r-- | src/components/settings_modal/helpers/unit_setting.js | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/src/components/settings_modal/helpers/unit_setting.js b/src/components/settings_modal/helpers/unit_setting.js index c9c23cb0..daeddd81 100644 --- a/src/components/settings_modal/helpers/unit_setting.js +++ b/src/components/settings_modal/helpers/unit_setting.js @@ -21,15 +21,23 @@ export default { unitSet: { type: String, default: 'none' + }, + step: { + type: Number, + default: 1 + }, + resetDefault: { + type: Object, + default: null } }, computed: { ...Setting.computed, stateUnit () { - return this.state.replace(/\d+/, '') + return typeof this.state === 'string' ? this.state.replace(/[0-9,.]+/, '') : '' }, stateValue () { - return this.state.replace(/\D+/, '') + return typeof this.state === 'string' ? this.state.replace(/[^0-9,.]+/, '') : '' } }, methods: { @@ -39,10 +47,18 @@ export default { return this.$t(['settings', 'units', this.unitSet, value].join('.')) }, updateValue (e) { - this.configSink(this.path, parseInt(e.target.value) + this.stateUnit) + this.configSink(this.path, parseFloat(e.target.value) + this.stateUnit) }, updateUnit (e) { - this.configSink(this.path, this.stateValue + e.target.value) + let value = this.stateValue + const newUnit = e.target.value + if (this.resetDefault) { + const replaceValue = this.resetDefault[newUnit] + if (replaceValue != null) { + value = replaceValue + } + } + this.configSink(this.path, value + newUnit) } } } |
