Skip to content

Commit cd15ef7

Browse files
committed
Fix millisecond substring part of ISO string getter
1 parent 41780c5 commit cd15ef7

File tree

3 files changed

+34
-18
lines changed

3 files changed

+34
-18
lines changed

source/fragments.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict'
2-
31
export default [
42
'years',
53
'months',

source/index.js

+16-12
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,14 @@ export default class Duration {
3333
`"${durationString}" is an invalid duration string`
3434
)
3535

36+
// Milliseconds
37+
durationArray[8] = Number('0.' + durationArray[8]) * 1000
38+
3639
durationFragments.forEach((fragment, index) => {
3740
let value = Number(durationArray[index + 1])
3841

3942
if (typeof value === 'number' && !Number.isNaN(value)) {
40-
this[fragment] = value
43+
this['_' + fragment] = value
4144
}
4245
})
4346
}
@@ -126,29 +129,30 @@ export default class Duration {
126129
get string () {
127130
return durationFragments
128131
.reduce(
129-
(string, fragment) => {
130-
if (this[fragment] == null) {
132+
(string, fragment, fragmentIndex) => {
133+
if (typeof this[fragment] !== 'number' ||
134+
Number.isNaN(this[fragment])
135+
) {
131136
return string
132137
}
133138

134-
if (fragment === 'minutes' && !string.includes('t')) {
135-
string += 't'
139+
// fragmentIndex > 3 means smaller than day
140+
if (!string.includes('T') && fragmentIndex > 3) {
141+
string += 'T'
136142
}
137143

138-
string += this[fragment] + fragment.substr(0, 1)
139-
140-
if (fragment === 'days') {
141-
string += 't'
142-
}
143144
if (fragment === 'milliseconds') {
144-
string.replace('s', '.' + this[fragment] + 's')
145+
string = string
146+
.replace(/s$/, `.${this.milliseconds}S`)
147+
}
148+
else {
149+
string += this[fragment] + fragment.substr(0, 1)
145150
}
146151

147152
return string
148153
},
149154
'p'
150155
)
151-
.replace(/t$/, '')
152156
.toUpperCase()
153157
}
154158
toString () { return this.string }

test/parsing.js

+18-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runTest('P7H', test => {
5555
new Duration(test.title).toObject(),
5656
'to equal',
5757
{
58-
string: test.title,
58+
string: 'PT7H',
5959
hours: 7,
6060
isAccurate: true,
6161
}
@@ -79,7 +79,7 @@ runTest('PT7M', test => {
7979
runTest('P7H30M', test => {
8080
const duration = new Duration(test.title)
8181
const referenceObject = {
82-
string: 'P7HT30M',
82+
string: 'PT7H30M',
8383
hours: 7,
8484
minutes: 30,
8585
isAccurate: true,
@@ -93,7 +93,7 @@ runTest('P7S', test => {
9393
new Duration(test.title).toObject(),
9494
'to equal',
9595
{
96-
string: test.title,
96+
string: 'PT7S',
9797
seconds: 7,
9898
isAccurate: true,
9999
}
@@ -105,14 +105,28 @@ runTest('P7.345S', test => {
105105
new Duration(test.title).toObject(),
106106
'to equal',
107107
{
108-
string: 'P7S345M',
108+
string: 'PT7.345S',
109109
seconds: 7,
110110
milliseconds: 345,
111111
isAccurate: true,
112112
}
113113
)
114114
})
115115

116+
117+
runTest('P7.3S', test => {
118+
expect(
119+
new Duration(test.title).toObject(),
120+
'to equal',
121+
{
122+
string: 'PT7.300S',
123+
seconds: 7,
124+
milliseconds: 300,
125+
isAccurate: true,
126+
}
127+
)
128+
})
129+
116130
runTest('P7Y5M', test => {
117131
expect(
118132
new Duration(test.title).toObject(),

0 commit comments

Comments
 (0)