Skip to content

Commit 951e025

Browse files
committedMar 14, 2025··
refactor: string and datetime formatters
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
1 parent 19cb71f commit 951e025

File tree

3 files changed

+114
-67
lines changed

3 files changed

+114
-67
lines changed
 

‎src/components/widgets/spoolman/SpoolmanCard.vue

+26-8
Original file line numberDiff line numberDiff line change
@@ -115,23 +115,23 @@
115115
>
116116
<template v-if="field === 'remaining_weight'">
117117
<span v-if="remainingFilamentUnit === 'weight'">
118-
{{ $filters.getReadableWeightString(activeSpool.remaining_weight) }}
119-
<small>/ {{ $filters.getReadableWeightString(activeSpool.initial_weight) }}</small>
118+
{{ getFormattedField('remaining_weight') }}
119+
<small>/ {{ getFormattedField('initial_weight') }}</small>
120120
</span>
121121
<span v-else-if="remainingFilamentUnit === 'length'">
122-
{{ $filters.getReadableLengthString(activeSpool.remaining_length) }}
123-
<small>/ {{ $filters.getReadableLengthString(activeSpool.initial_length) }}</small>
122+
{{ getFormattedField('remaining_length') }}
123+
<small>/ {{ getFormattedField('initial_length') }}</small>
124124
</span>
125125
</template>
126126

127127
<template v-else-if="field === 'used_weight'">
128128
<span v-if="remainingFilamentUnit === 'weight'">
129-
{{ $filters.getReadableWeightString(activeSpool.used_weight) }}
130-
<small>/ {{ $filters.getReadableWeightString(activeSpool.initial_weight) }}</small>
129+
{{ getFormattedField('used_weight') }}
130+
<small>/ {{ getFormattedField('initial_weight') }}</small>
131131
</span>
132132
<span v-else-if="remainingFilamentUnit === 'length'">
133-
{{ $filters.getReadableLengthString(activeSpool.used_length) }}
134-
<small>/ {{ $filters.getReadableLengthString(activeSpool.initial_length) }}</small>
133+
{{ getFormattedField('used_length') }}
134+
<small>/ {{ getFormattedField('initial_length') }}</small>
135135
</span>
136136
</template>
137137

@@ -287,6 +287,24 @@ export default class SpoolmanCard extends Mixins(StateMixin) {
287287
case 'bed_temp':
288288
return this.activeSpool.filament.settings_bed_temp || '-'
289289
290+
case 'remaining_weight':
291+
return this.activeSpool.remaining_weight != null ? this.$filters.getReadableWeightString(this.activeSpool.remaining_weight) : '-'
292+
293+
case 'remaining_length':
294+
return this.activeSpool.remaining_length != null ? this.$filters.getReadableLengthString(this.activeSpool.remaining_length) : '-'
295+
296+
case 'used_weight':
297+
return this.activeSpool.used_weight != null ? this.$filters.getReadableWeightString(this.activeSpool.used_weight) : '-'
298+
299+
case 'used_length':
300+
return this.activeSpool.used_length != null ? this.$filters.getReadableLengthString(this.activeSpool.used_length) : '-'
301+
302+
case 'initial_weight':
303+
return this.activeSpool.initial_weight != null ? this.$filters.getReadableWeightString(this.activeSpool.initial_weight) : '-'
304+
305+
case 'initial_length':
306+
return this.activeSpool.initial_length != null ? this.$filters.getReadableLengthString(this.activeSpool.initial_length) : '-'
307+
290308
default:
291309
return this.activeSpool[field as keyof Spool] || '-'
292310
}

‎src/util/date-time-formatters.ts

+34-20
Original file line numberDiff line numberDiff line change
@@ -119,26 +119,40 @@ const dateTimeFormatters = (getDefaultDateFormat: GetDefaultDateTimeFormatFuncti
119119
},
120120

121121
formatRelativeTimeToDate (value: number | string | Date, value2: number | string | Date, options?: Intl.RelativeTimeFormatOptions) {
122-
let v = Math.floor(+new Date(value) / 1000)
123-
let v2 = Math.floor(+new Date(value2) / 1000)
124-
125-
const units: { unit: Intl.RelativeTimeFormatUnit, limit: number }[] = [
126-
{ unit: 'second', limit: 60 },
127-
{ unit: 'minute', limit: 60 },
128-
{ unit: 'hour', limit: 24 },
129-
{ unit: 'day', limit: 30 },
130-
{ unit: 'month', limit: 12 },
131-
{ unit: 'year', limit: -1 }
132-
]
133-
134-
for (const { unit, limit } of units) {
135-
if (limit === -1 || Math.abs(v - v2) < limit) {
136-
return instance.formatRelativeTime(v - v2, unit, options)
137-
}
138-
139-
v = Math.floor(v / limit)
140-
v2 = Math.floor(v2 / limit)
141-
}
122+
const seconds = (+new Date(value) - +new Date(value2)) / 1000
123+
const absoluteSeconds = Math.abs(seconds)
124+
125+
const [unit, unitValue]: [Intl.RelativeTimeFormatUnit, number] = absoluteSeconds >= 60 * 60 * 24 * 365
126+
? [
127+
'year',
128+
Math.round(seconds / (60 * 60 * 24 * 365))
129+
]
130+
: absoluteSeconds >= 60 * 60 * 24 * 30
131+
? [
132+
'month',
133+
Math.round(seconds / (60 * 60 * 24 * 30))
134+
]
135+
: absoluteSeconds >= 60 * 60 * 24
136+
? [
137+
'day',
138+
Math.round(seconds / (60 * 60 * 24))
139+
]
140+
: absoluteSeconds >= 60 * 60
141+
? [
142+
'hour',
143+
Math.round(seconds / (60 * 60))
144+
]
145+
: absoluteSeconds >= 60
146+
? [
147+
'minute',
148+
Math.round(seconds / 60)
149+
]
150+
: [
151+
'second',
152+
seconds
153+
]
154+
155+
return instance.formatRelativeTime(unitValue, unit, options)
142156
},
143157

144158
formatRelativeTime (value: number, unit: Intl.RelativeTimeFormatUnit, options?: Intl.RelativeTimeFormatOptions) {

‎src/util/string-formatters.ts

+54-39
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import { upperFirst } from 'lodash-es'
22
import { getAllLocales } from '@/plugins/i18n'
33

44
const stringFormatters = () => {
5+
const byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB']
6+
7+
const frequencyUnits = [' Hz', ' kHz', ' MHz', ' GHz', ' THz']
8+
9+
const resistanceUnits = [' Ω', ' kΩ', ' MΩ', ' GΩ', ' TΩ']
10+
511
const instance = {
612
prettyCase: (value: string) => {
713
return value
@@ -11,101 +17,110 @@ const stringFormatters = () => {
1117
.join(' ')
1218
},
1319

20+
getStringValueWithUnit: (value: number, fractionDigits: number, unit: string) => {
21+
if (value === 0) {
22+
return `0${unit}`
23+
}
24+
25+
return Math.max(value, Math.pow(10, -fractionDigits))
26+
.toFixed(fractionDigits) + unit
27+
},
28+
1429
/**
15-
* Splits a string into an array of strings, removing quotes.
16-
*/
30+
* Splits a string into an array of strings, removing quotes.
31+
*/
1732
getStringArray: (value: string, separator = ';') => {
1833
return value.split(separator)
1934
.map(x => x.replace(/^"|"$/g, ''))
2035
},
2136

2237
/**
23-
* Formats a number (in bytes) to a human readable file size.
24-
*/
38+
* Formats a number (in bytes) to a human readable file size.
39+
*/
2540
getReadableFileSizeString: (fileSizeInBytes: number, fractionDigits = 1) => {
2641
let i = -1
27-
const byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB']
28-
if (fileSizeInBytes === 0) return `0${byteUnits[0]}`
2942
do {
3043
fileSizeInBytes = fileSizeInBytes / 1024
3144
i++
3245
} while (fileSizeInBytes > 1024)
3346

34-
return Math.max(fileSizeInBytes, 0.1).toFixed(fractionDigits) + byteUnits[i]
47+
return instance.getStringValueWithUnit(fileSizeInBytes, fractionDigits, byteUnits[i])
3548
},
3649

3750
/**
38-
* Formats a number (in bytes/sec) to a human readable data rate.
39-
*/
51+
* Formats a number (in bytes/sec) to a human readable data rate.
52+
*/
4053
getReadableDataRateString: (dataRateInBytesPerSec: number, fractionDigits = 1) => {
4154
let i = -1
42-
const byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB']
43-
if (dataRateInBytesPerSec === 0) return `0${byteUnits[0]}`
4455
do {
4556
dataRateInBytesPerSec = dataRateInBytesPerSec / 1024
4657
i++
4758
} while (dataRateInBytesPerSec > 1024)
4859

49-
return Math.max(dataRateInBytesPerSec, 0.2).toFixed(fractionDigits) + byteUnits[i] + '/Sec'
60+
return instance.getStringValueWithUnit(dataRateInBytesPerSec, fractionDigits, byteUnits[i] + '/Sec')
5061
},
5162

5263
/**
53-
* Formats a number representing mm to human readable distance.
54-
*/
55-
getReadableLengthString: (lengthInMm: number | undefined | null, showMicrons = false) => {
56-
if (lengthInMm === undefined || lengthInMm === null) {
57-
return '-'
64+
* Formats a number representing mm to human readable distance.
65+
*/
66+
getReadableLengthString: (lengthInMm: number, showMicrons = false, fractionDigits: number | undefined = undefined) => {
67+
if (lengthInMm >= 1000) {
68+
return (lengthInMm / 1000).toFixed(fractionDigits ?? 2) + ' m'
5869
}
5970

60-
if (lengthInMm >= 1000) return (lengthInMm / 1000).toFixed(2) + ' m'
61-
if (lengthInMm > 100) return (lengthInMm / 10).toFixed(1) + ' cm'
62-
if (lengthInMm < 0.1 && showMicrons) return (lengthInMm * 1000).toFixed(0) + ' μm'
63-
return lengthInMm.toFixed(1) + ' mm'
71+
if (lengthInMm > 100) {
72+
return (lengthInMm / 10).toFixed(fractionDigits ?? 1) + ' cm'
73+
}
74+
75+
if (lengthInMm < 0.1 && showMicrons) {
76+
return instance.getStringValueWithUnit(lengthInMm * 1000, fractionDigits ?? 0, ' μm')
77+
}
78+
79+
return instance.getStringValueWithUnit(lengthInMm, fractionDigits ?? 1, ' mm')
6480
},
6581

6682
/**
67-
* Formats a number representing g to human readable weight.
68-
*/
69-
getReadableWeightString: (weightInG: number | undefined | null, fractionDigits = 2) => {
70-
if (weightInG === undefined || weightInG === null) {
71-
return '-'
83+
* Formats a number representing g to human readable weight.
84+
*/
85+
getReadableWeightString: (weightInG: number, fractionDigits = 2) => {
86+
if (weightInG >= 1000) {
87+
return (weightInG / 1000).toFixed(fractionDigits) + ' kg'
7288
}
7389

74-
if (weightInG >= 1000) return (weightInG / 1000).toFixed(fractionDigits) + ' kg'
75-
return weightInG.toFixed(fractionDigits) + ' g'
90+
return instance.getStringValueWithUnit(weightInG, fractionDigits, ' g')
7691
},
7792

7893
/**
79-
* Formats a number (in Hz) to a human readable frequency.
80-
*/
94+
* Formats a number (in Hz) to a human readable frequency.
95+
*/
8196
getReadableFrequencyString: (frequencyInHz: number, fractionDigits = 0) => {
8297
let i = 0
83-
const frequencyUnits = [' Hz', ' kHz', ' MHz', ' GHz', ' THz']
8498
while (frequencyInHz >= 1000) {
8599
frequencyInHz = frequencyInHz / 1000
86100
i++
87101
}
88-
return frequencyInHz.toFixed(fractionDigits) + frequencyUnits[i]
102+
103+
return instance.getStringValueWithUnit(frequencyInHz, fractionDigits, frequencyUnits[i])
89104
},
90105

91106
/**
92-
* Formats a number (in ohms) to a human readable resistance.
93-
*/
107+
* Formats a number (in ohms) to a human readable resistance.
108+
*/
94109
getReadableResistanceString: (resistanceInOhms: number, fractionDigits = 1) => {
95110
let i = 0
96-
const resistanceUnits = [' Ω', ' kΩ', ' MΩ', ' GΩ', ' TΩ']
97111
while (resistanceInOhms >= 1000) {
98112
resistanceInOhms = resistanceInOhms / 1000
99113
i++
100114
}
101-
return resistanceInOhms.toFixed(fractionDigits) + resistanceUnits[i]
115+
116+
return instance.getStringValueWithUnit(resistanceInOhms, fractionDigits, resistanceUnits[i])
102117
},
103118

104119
/**
105-
* Formats a number (in hPa) to human readable atmospheric pressure.
106-
*/
120+
* Formats a number (in hPa) to human readable atmospheric pressure.
121+
*/
107122
getReadableAtmosphericPressureString: (pressumeInHPa: number, fractionDigits = 1) => {
108-
return pressumeInHPa.toFixed(fractionDigits) + ' hPa'
123+
return instance.getStringValueWithUnit(pressumeInHPa, fractionDigits, ' hPa')
109124
},
110125

111126
getReadableCurrencyString: (value: number, currency: string, options?: Intl.NumberFormatOptions) => {

0 commit comments

Comments
 (0)
Please sign in to comment.