Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
411148a6
Commit
411148a6
authored
May 25, 2023
by
Alejandro Celaya
Committed by
Alejandro Celaya
May 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate watch module to TS
parent
9f84b43f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
12 deletions
+15
-12
time.ts
src/sidebar/util/time.ts
+1
-0
watch.ts
src/sidebar/util/watch.ts
+14
-12
No files found.
src/sidebar/util/time.ts
View file @
411148a6
...
...
@@ -35,6 +35,7 @@ type IntlType = typeof window.Intl;
function
format
(
date
:
Date
,
options
:
Intl
.
DateTimeFormatOptions
,
/* istanbul ignore next */
Intl
:
IntlType
=
window
.
Intl
):
string
{
const
key
=
JSON
.
stringify
(
options
);
...
...
src/sidebar/util/watch.
j
s
→
src/sidebar/util/watch.
t
s
View file @
411148a6
...
...
@@ -32,19 +32,21 @@
* );
*
* @template T
* @param {(callback: () => void) => VoidFunction} subscribe - Function to
* subscribe to changes from the data source.
* @param {() => T} getValue - Callback that extracts information of interest
* from the data source.
* @param {(current: T, previous: T) => void} callback -
* A callback that receives the data extracted by `getValue`. It is called
* each time the result of `getValue` changes.
* @param {((current: T, previous: T) => boolean)} [compare] -
* Comparison function that tests whether the results of two `getValue` calls
* are equal. If omitted, a strict equality check is used
* @return {VoidFunction} - Return value of `subscribe`
* @param subscribe - Function to subscribe to changes from the data source.
* @param getValue - Callback that extracts information of interest from the
* data source.
* @param callback - A callback that receives the data extracted by `getValue`.
* It is called each time the result of `getValue` changes.
* @param compare - Comparison function that tests whether the results of two
* `getValue` calls are equal. If omitted, a strict equality check is used
* @return Return value of `subscribe`
*/
export
function
watch
(
subscribe
,
getValue
,
callback
,
compare
)
{
export
function
watch
<
T
>
(
subscribe
:
(
callback
:
VoidFunction
)
=>
VoidFunction
,
getValue
:
()
=>
T
,
callback
:
(
current
:
T
,
previous
:
T
)
=>
void
,
compare
?:
(
current
:
T
,
previous
:
T
)
=>
boolean
):
VoidFunction
{
let
prevValue
=
getValue
();
const
unsubscribe
=
subscribe
(()
=>
{
const
currentValue
=
getValue
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment