Skip to content

Commit dbbefcf

Browse files
authored
fix: Return now from global context if no updateInterval has been set on useNow (#881)
1 parent e1ac008 commit dbbefcf

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

packages/use-intl/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"size-limit": [
9191
{
9292
"path": "dist/production/index.js",
93-
"limit": "12.565 kB"
93+
"limit": "12.575 kB"
9494
}
9595
]
9696
}

packages/use-intl/src/react/useNow.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ export default function useNow(options?: Options) {
4545
};
4646
}, [globalNow, updateInterval]);
4747

48-
return now;
48+
return updateInterval == null && globalNow ? globalNow : now;
4949
}

packages/use-intl/test/react/useNow.test.tsx

+20
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,26 @@ it('returns the current time', () => {
1919
);
2020
});
2121

22+
it('returns an updated value from the provider', () => {
23+
function Component() {
24+
return <p>{useNow().toISOString()}</p>;
25+
}
26+
27+
const {container, rerender} = render(
28+
<IntlProvider locale="en" now={parseISO('2018-10-06T10:36:01.516Z')}>
29+
<Component />
30+
</IntlProvider>
31+
);
32+
expect(container.textContent).toBe('2018-10-06T10:36:01.516Z');
33+
34+
rerender(
35+
<IntlProvider locale="en" now={parseISO('2019-10-06T10:36:01.516Z')}>
36+
<Component />
37+
</IntlProvider>
38+
);
39+
expect(container.textContent).toBe('2019-10-06T10:36:01.516Z');
40+
});
41+
2242
it('can use a globally defined `now` value', () => {
2343
function Component() {
2444
return <p>{useNow().toISOString()}</p>;

0 commit comments

Comments
 (0)