shelving 1.43.0 → 1.45.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db/Operation.d.ts +2 -2
- package/package.json +6 -6
- package/update/DataUpdate.d.ts +3 -1
- package/update/DataUpdate.js +5 -1
- package/util/date.d.ts +49 -18
- package/util/date.js +92 -85
- package/util/number.d.ts +56 -9
- package/util/number.js +76 -13
- package/util/string.d.ts +6 -0
- package/util/string.js +6 -0
- package/util/units.d.ts +37 -9
- package/util/units.js +61 -89
package/db/Operation.d.ts
CHANGED
|
@@ -64,9 +64,9 @@ export declare class UpdateOperation<T extends Data> extends Operation {
|
|
|
64
64
|
/** Represent a delete operation made to a single document in a database. */
|
|
65
65
|
export declare class DeleteOperation extends Operation {
|
|
66
66
|
/** Create a new delete operation on a document. */
|
|
67
|
-
static on({ collection, id }: DatabaseDocument): DeleteOperation;
|
|
67
|
+
static on<X extends Data>({ collection, id }: DatabaseDocument<X>): DeleteOperation;
|
|
68
68
|
/** Run a new delete operation on a document. */
|
|
69
|
-
static run({ collection, id, db }: DatabaseDocument): Promise<DeleteOperation>;
|
|
69
|
+
static run<X extends Data>({ collection, id, db }: DatabaseDocument<X>): Promise<DeleteOperation>;
|
|
70
70
|
readonly collection: string;
|
|
71
71
|
readonly id: string;
|
|
72
72
|
constructor(collection: string, id: string);
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"state-management",
|
|
12
12
|
"query-builder"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.
|
|
14
|
+
"version": "1.45.1",
|
|
15
15
|
"repository": "https://github.com/dhoulb/shelving",
|
|
16
16
|
"author": "Dave Houlbrooke <dave@shax.com>",
|
|
17
17
|
"license": "0BSD",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"@types/jest": "^27.4.0",
|
|
64
64
|
"@types/react": "^17.0.38",
|
|
65
65
|
"@types/react-dom": "^17.0.11",
|
|
66
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
67
|
-
"@typescript-eslint/parser": "^5.
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
|
67
|
+
"@typescript-eslint/parser": "^5.9.0",
|
|
68
68
|
"eslint": "^8.6.0",
|
|
69
69
|
"eslint-config-prettier": "^8.3.0",
|
|
70
|
-
"eslint-plugin-import": "^2.25.
|
|
70
|
+
"eslint-plugin-import": "^2.25.4",
|
|
71
71
|
"eslint-plugin-prettier": "^4.0.0",
|
|
72
|
-
"firebase": "^9.6.
|
|
73
|
-
"jest": "^27.4.
|
|
72
|
+
"firebase": "^9.6.2",
|
|
73
|
+
"jest": "^27.4.7",
|
|
74
74
|
"jest-ts-webcompat-resolver": "^1.0.0",
|
|
75
75
|
"prettier": "^2.5.1",
|
|
76
76
|
"react": "^17.0.2",
|
package/update/DataUpdate.d.ts
CHANGED
|
@@ -12,10 +12,12 @@ export declare type PropUpdates<T extends Data> = {
|
|
|
12
12
|
};
|
|
13
13
|
/** Update that can be applied to a data object to update its props. */
|
|
14
14
|
export declare class DataUpdate<T extends Data> extends Update<T> implements Iterable<Prop<PropUpdates<T>>>, Transformable<T, T> {
|
|
15
|
+
/** Return a data update with a specific prop marked for update. */
|
|
16
|
+
static with<X extends Data, K extends Key<X>>(key: Nullish<K>, value: X[K] | Update<X[K]>): DataUpdate<X>;
|
|
15
17
|
readonly updates: PropUpdates<T>;
|
|
16
18
|
constructor(props: PropUpdates<T>);
|
|
17
19
|
transform(existing: T): T;
|
|
18
|
-
/** Return a
|
|
20
|
+
/** Return a data update with a specific prop marked for update. */
|
|
19
21
|
with<K extends Key<T>>(key: Nullish<K>, value: T[K] | Update<T[K]>): this;
|
|
20
22
|
/** Iterate over the transforms in this object. */
|
|
21
23
|
[Symbol.iterator](): Iterator<Prop<PropUpdates<T>>, void>;
|
package/update/DataUpdate.js
CHANGED
|
@@ -6,10 +6,14 @@ export class DataUpdate extends Update {
|
|
|
6
6
|
super();
|
|
7
7
|
this.updates = props;
|
|
8
8
|
}
|
|
9
|
+
/** Return a data update with a specific prop marked for update. */
|
|
10
|
+
static with(key, value) {
|
|
11
|
+
return new DataUpdate(!isNullish(key) ? { [key]: value } : {});
|
|
12
|
+
}
|
|
9
13
|
transform(existing) {
|
|
10
14
|
return transformProps(existing, this.updates);
|
|
11
15
|
}
|
|
12
|
-
/** Return a
|
|
16
|
+
/** Return a data update with a specific prop marked for update. */
|
|
13
17
|
with(key, value) {
|
|
14
18
|
if (isNullish(key))
|
|
15
19
|
return this;
|
package/util/date.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/** One second in millseconds. */
|
|
2
|
+
export declare const SECOND = 1000;
|
|
1
3
|
/** One minute in millseconds. */
|
|
2
4
|
export declare const MINUTE: number;
|
|
3
5
|
/** One hour in millseconds. */
|
|
@@ -6,6 +8,8 @@ export declare const HOUR: number;
|
|
|
6
8
|
export declare const DAY: number;
|
|
7
9
|
/** One week in millseconds. */
|
|
8
10
|
export declare const WEEK: number;
|
|
11
|
+
/** One month in millseconds. */
|
|
12
|
+
export declare const MONTH: number;
|
|
9
13
|
/** One year in millseconds. */
|
|
10
14
|
export declare const YEAR: number;
|
|
11
15
|
/** Is a value a date? */
|
|
@@ -53,46 +57,73 @@ export declare function getMonday(target?: PossibleDate): Date;
|
|
|
53
57
|
export declare function addDays(change: number, target?: PossibleDate): Date;
|
|
54
58
|
/** Return a new date that increase or decreases the number of hours based on an input date. */
|
|
55
59
|
export declare function addHours(change: number, target?: PossibleDate): Date;
|
|
60
|
+
/**
|
|
61
|
+
* Get the duration (in milliseconds) between two dates.
|
|
62
|
+
*
|
|
63
|
+
* @param target The date when the thing will happen or did happen.
|
|
64
|
+
* @param current Today's date (or a different date to measure from).
|
|
65
|
+
*/
|
|
66
|
+
export declare const getDuration: (target?: PossibleDate | undefined, current?: PossibleDate | undefined) => number;
|
|
56
67
|
/** Count the number of seconds until a date. */
|
|
57
|
-
export declare const
|
|
68
|
+
export declare const getSecondsUntil: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
58
69
|
/** Count the number of days ago a date was. */
|
|
59
|
-
export declare const
|
|
70
|
+
export declare const getSecondsAgo: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
60
71
|
/** Count the number of days until a date. */
|
|
61
|
-
export declare const
|
|
72
|
+
export declare const getDaysUntil: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
62
73
|
/** Count the number of days ago a date was. */
|
|
63
|
-
export declare const
|
|
74
|
+
export declare const getDaysAgo: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
64
75
|
/** Count the number of weeks until a date. */
|
|
65
|
-
export declare const
|
|
76
|
+
export declare const getWeeksUntil: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
66
77
|
/** Count the number of weeks ago a date was. */
|
|
67
|
-
export declare const
|
|
68
|
-
/**
|
|
69
|
-
export declare function
|
|
78
|
+
export declare const getWeeksAgo: (target: PossibleDate, current?: PossibleDate | undefined) => number;
|
|
79
|
+
/** Format a full description of a duration of time using the most reasonable units e.g. `5 years` or `1 week` or `4 minutes` or `12 milliseconds`. */
|
|
80
|
+
export declare function formatFullDuration(ms: number): string;
|
|
81
|
+
/** Format a description of a duration of time using the most reasonable units e.g. `5y` or `4m` or `12ms`. */
|
|
82
|
+
export declare function formatDuration(ms: number): string;
|
|
70
83
|
/**
|
|
71
|
-
* Return
|
|
72
|
-
*
|
|
84
|
+
* Return full description of the gap between two dates, e.g. `in 10 days` or `2 hours ago`
|
|
85
|
+
*
|
|
86
|
+
* @param target The date when the thing will happen or did happen.
|
|
73
87
|
* @param current Today's date (or a different date to measure from).
|
|
74
88
|
*/
|
|
75
|
-
export declare function
|
|
89
|
+
export declare function formatFullWhen(target: PossibleDate, current?: PossibleDate): string;
|
|
76
90
|
/**
|
|
77
|
-
* Return
|
|
91
|
+
* Return full description of when a date happened, e.g. `10 days` or `2 hours` or `-1 week`
|
|
92
|
+
*
|
|
78
93
|
* @param target The date when the thing will happen.
|
|
79
94
|
* @param current Today's date (or a different date to measure from).
|
|
80
95
|
*/
|
|
81
|
-
export declare
|
|
96
|
+
export declare const formatFullUntil: (target: PossibleDate, current?: PossibleDate | undefined) => string;
|
|
82
97
|
/**
|
|
83
|
-
* Return when a date will happen, e.g. `10 days` or `2 hours` or `-1 week`
|
|
98
|
+
* Return full description of when a date will happen, e.g. `10 days` or `2 hours` or `-1 week`
|
|
99
|
+
*
|
|
84
100
|
* @param target The date when the thing happened.
|
|
85
101
|
* @param current Today's date (or a different date to measure from).
|
|
86
102
|
*/
|
|
87
|
-
export declare
|
|
103
|
+
export declare const formatFullAgo: (target: PossibleDate, current?: PossibleDate | undefined) => string;
|
|
88
104
|
/**
|
|
89
|
-
*
|
|
105
|
+
* Compact how long until a date happens, e.g. `in 10d` or `2h ago` or `in 1w`
|
|
106
|
+
*
|
|
107
|
+
* @param target The date when the thing will happen.
|
|
108
|
+
* @param current Today's date (or a different date to measure from).
|
|
109
|
+
*/
|
|
110
|
+
export declare function formatWhen(target: PossibleDate, current?: PossibleDate): string;
|
|
111
|
+
/**
|
|
112
|
+
* Return short description of when a date happened, e.g. `10d` or `2h` or `-1w`
|
|
113
|
+
*
|
|
114
|
+
* @param target The date when the thing will happen.
|
|
115
|
+
* @param current Today's date (or a different date to measure from).
|
|
116
|
+
*/
|
|
117
|
+
export declare const formatUntil: (target: PossibleDate, current?: PossibleDate | undefined) => string;
|
|
118
|
+
/**
|
|
119
|
+
* Return short description of when a date will happen, e.g. `10d` or `2h` or `-1w`
|
|
120
|
+
*
|
|
90
121
|
* @param target The date when the thing happened.
|
|
91
122
|
* @param current Today's date (or a different date to measure from).
|
|
92
123
|
*/
|
|
93
|
-
export declare
|
|
124
|
+
export declare const formatAgo: (target: PossibleDate, current?: PossibleDate | undefined) => string;
|
|
94
125
|
/** Format a date in the browser locale. */
|
|
95
|
-
export declare
|
|
126
|
+
export declare const formatDate: (date: PossibleDate) => string;
|
|
96
127
|
/** Is a date in the past? */
|
|
97
128
|
export declare const isPast: (target: PossibleDate, current?: PossibleDate | undefined) => boolean;
|
|
98
129
|
/** Is a date in the future? */
|
package/util/date.js
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import { AssertionError } from "../error/index.js";
|
|
2
|
-
import {
|
|
2
|
+
import { formatFullQuantity, formatQuantity } from "./number.js";
|
|
3
|
+
/** One second in millseconds. */
|
|
4
|
+
export const SECOND = 1000;
|
|
3
5
|
/** One minute in millseconds. */
|
|
4
|
-
export const MINUTE = 60 *
|
|
6
|
+
export const MINUTE = 60 * SECOND;
|
|
5
7
|
/** One hour in millseconds. */
|
|
6
|
-
export const HOUR =
|
|
8
|
+
export const HOUR = 60 * MINUTE;
|
|
7
9
|
/** One day in millseconds. */
|
|
8
|
-
export const DAY =
|
|
10
|
+
export const DAY = 24 * HOUR;
|
|
9
11
|
/** One week in millseconds. */
|
|
10
|
-
export const WEEK =
|
|
12
|
+
export const WEEK = 7 * DAY;
|
|
13
|
+
/** One month in millseconds. */
|
|
14
|
+
export const MONTH = 30 * DAY;
|
|
11
15
|
/** One year in millseconds. */
|
|
12
|
-
export const YEAR =
|
|
16
|
+
export const YEAR = 365 * DAY;
|
|
13
17
|
/** Is a value a date? */
|
|
14
18
|
export const isDate = (v) => v instanceof Date;
|
|
15
19
|
/**
|
|
@@ -101,111 +105,114 @@ export function addHours(change, target) {
|
|
|
101
105
|
date.setHours(date.getHours() + change);
|
|
102
106
|
return date;
|
|
103
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* Get the duration (in milliseconds) between two dates.
|
|
110
|
+
*
|
|
111
|
+
* @param target The date when the thing will happen or did happen.
|
|
112
|
+
* @param current Today's date (or a different date to measure from).
|
|
113
|
+
*/
|
|
114
|
+
export const getDuration = (target, current) => getDate(target).getTime() - getDate(current).getTime();
|
|
104
115
|
/** Count the number of seconds until a date. */
|
|
105
|
-
export const
|
|
116
|
+
export const getSecondsUntil = (target, current) => getDuration(target, current) / 1000;
|
|
106
117
|
/** Count the number of days ago a date was. */
|
|
107
|
-
export const
|
|
118
|
+
export const getSecondsAgo = (target, current) => 0 - getSecondsUntil(target, current);
|
|
108
119
|
/** Count the number of days until a date. */
|
|
109
|
-
export const
|
|
120
|
+
export const getDaysUntil = (target, current) => Math.round((getMidnight(target).getTime() - getMidnight(current).getTime()) / 86400000);
|
|
110
121
|
/** Count the number of days ago a date was. */
|
|
111
|
-
export const
|
|
122
|
+
export const getDaysAgo = (target, current) => 0 - getDaysUntil(target, current);
|
|
112
123
|
/** Count the number of weeks until a date. */
|
|
113
|
-
export const
|
|
124
|
+
export const getWeeksUntil = (target, current) => Math.floor(getDaysUntil(target, current) / 7);
|
|
114
125
|
/** Count the number of weeks ago a date was. */
|
|
115
|
-
export const
|
|
116
|
-
/**
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
if (abs
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
return [num, num === 1 ? "minute" : "minutes"];
|
|
133
|
-
}
|
|
134
|
-
// Up to 24 hours — show hours, e.g. '23 hours ago'
|
|
135
|
-
if (abs < 86400) {
|
|
136
|
-
const num = Math.round(seconds / 3600);
|
|
137
|
-
return [num, num === 1 ? "hour" : "hours"];
|
|
138
|
-
}
|
|
139
|
-
// Up to 2 weeks — show days, e.g. '13 days ago'
|
|
140
|
-
if (abs < 1209600) {
|
|
141
|
-
const num = Math.round(seconds / 86400);
|
|
142
|
-
return [num, num === 1 ? "day" : "days"];
|
|
143
|
-
}
|
|
144
|
-
// Up to 2 months — show weeks, e.g. '6 weeks ago'
|
|
145
|
-
if (abs < 5184000) {
|
|
146
|
-
const num = Math.round(seconds / 604800);
|
|
147
|
-
return [num, num === 1 ? "week" : "weeks"];
|
|
148
|
-
}
|
|
149
|
-
// Up to 18 months — show months, e.g. '6 months ago'
|
|
150
|
-
if (abs < 46656000) {
|
|
151
|
-
const num = Math.round(seconds / 2592000);
|
|
152
|
-
return [num, num === 1 ? "month" : "months"];
|
|
153
|
-
}
|
|
154
|
-
// Above 18 months — show years, e.g. '2 years ago'
|
|
155
|
-
return [Math.round(seconds / 31536000), "year"];
|
|
126
|
+
export const getWeeksAgo = (target, current) => 0 - getWeeksUntil(target, current);
|
|
127
|
+
/** Format a full description of a duration of time using the most reasonable units e.g. `5 years` or `1 week` or `4 minutes` or `12 milliseconds`. */
|
|
128
|
+
export function formatFullDuration(ms) {
|
|
129
|
+
const abs = Math.abs(ms);
|
|
130
|
+
if (abs <= 99 * SECOND)
|
|
131
|
+
return formatFullQuantity(ms, "second", "seconds", 0); // Up to 99 seconds, e.g. '22 seconds ago'
|
|
132
|
+
if (abs <= HOUR)
|
|
133
|
+
return formatFullQuantity(ms / MINUTE, "minute", "minutes", 0); // Up to one hour — show minutes, e.g. '18 minutes ago'
|
|
134
|
+
if (abs <= DAY)
|
|
135
|
+
return formatFullQuantity(ms / HOUR, "hour", "hours", 0); // Up to one day — show hours, e.g. '23 hours ago'
|
|
136
|
+
if (abs <= 2 * WEEK)
|
|
137
|
+
return formatFullQuantity(ms / DAY, "day", "days", 0); // Up to 2 weeks — show days, e.g. '13 days ago'
|
|
138
|
+
if (abs <= 10 * WEEK)
|
|
139
|
+
return formatFullQuantity(ms / WEEK, "week", "weeks", 0); // Up to 2 months — show weeks, e.g. '6 weeks ago'
|
|
140
|
+
if (abs <= 18 * MONTH)
|
|
141
|
+
return formatFullQuantity(ms / MONTH, "month", "months", 0); // Up to 18 months — show months, e.g. '6 months ago'
|
|
142
|
+
return formatFullQuantity(ms / YEAR, "year", "years", 0); // Above 18 months — show years, e.g. '2 years ago'
|
|
156
143
|
}
|
|
157
|
-
/**
|
|
158
|
-
export function
|
|
159
|
-
const
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
144
|
+
/** Format a description of a duration of time using the most reasonable units e.g. `5y` or `4m` or `12ms`. */
|
|
145
|
+
export function formatDuration(ms) {
|
|
146
|
+
const abs = Math.abs(ms);
|
|
147
|
+
if (abs <= 99 * SECOND)
|
|
148
|
+
return formatQuantity(ms, "s", 0); // Up to 99 seconds, e.g. '22 seconds ago'
|
|
149
|
+
if (abs <= HOUR)
|
|
150
|
+
return formatQuantity(ms / MINUTE, "m", 0); // Up to one hour — show minutes, e.g. '18 minutes ago'
|
|
151
|
+
if (abs <= DAY)
|
|
152
|
+
return formatQuantity(ms / HOUR, "h", 0); // Up to one day — show hours, e.g. '23 hours ago'
|
|
153
|
+
if (abs <= 2 * WEEK)
|
|
154
|
+
return formatQuantity(ms / DAY, "d", 0); // Up to 2 weeks — show days, e.g. '13 days ago'
|
|
155
|
+
if (abs <= 10 * WEEK)
|
|
156
|
+
return formatQuantity(ms / WEEK, "w", 0); // Up to 2 months — show weeks, e.g. '6 weeks ago'
|
|
157
|
+
if (abs <= 18 * MONTH)
|
|
158
|
+
return formatQuantity(ms / MONTH, "m", 0); // Up to 18 months — show months, e.g. '6 months ago'
|
|
159
|
+
return formatQuantity(ms / YEAR, "y", 0); // Above 18 months — show years, e.g. '2 years ago'
|
|
168
160
|
}
|
|
169
161
|
/**
|
|
170
|
-
* Return
|
|
171
|
-
*
|
|
162
|
+
* Return full description of the gap between two dates, e.g. `in 10 days` or `2 hours ago`
|
|
163
|
+
*
|
|
164
|
+
* @param target The date when the thing will happen or did happen.
|
|
172
165
|
* @param current Today's date (or a different date to measure from).
|
|
173
166
|
*/
|
|
174
|
-
export function
|
|
175
|
-
const
|
|
176
|
-
|
|
167
|
+
export function formatFullWhen(target, current) {
|
|
168
|
+
const ms = getDuration(target, current);
|
|
169
|
+
const abs = Math.abs(ms);
|
|
170
|
+
const duration = formatFullDuration(abs);
|
|
171
|
+
return abs < 10 * SECOND ? "just now" : ms > 0 ? `in ${duration}` : `${duration} ago`;
|
|
177
172
|
}
|
|
178
173
|
/**
|
|
179
|
-
* Return
|
|
174
|
+
* Return full description of when a date happened, e.g. `10 days` or `2 hours` or `-1 week`
|
|
175
|
+
*
|
|
180
176
|
* @param target The date when the thing will happen.
|
|
181
177
|
* @param current Today's date (or a different date to measure from).
|
|
182
178
|
*/
|
|
183
|
-
export
|
|
184
|
-
const [amount, units] = diffDates(target, current);
|
|
185
|
-
return `${formatNumber(amount)}${units.substr(0, 1)}`;
|
|
186
|
-
}
|
|
179
|
+
export const formatFullUntil = (target, current) => formatFullDuration(getDuration(target, current));
|
|
187
180
|
/**
|
|
188
|
-
* Return when a date will happen, e.g. `10 days` or `2 hours` or `-1 week`
|
|
181
|
+
* Return full description of when a date will happen, e.g. `10 days` or `2 hours` or `-1 week`
|
|
182
|
+
*
|
|
189
183
|
* @param target The date when the thing happened.
|
|
190
184
|
* @param current Today's date (or a different date to measure from).
|
|
191
185
|
*/
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
|
|
186
|
+
export const formatFullAgo = (target, current) => formatFullDuration(getDuration(current, target));
|
|
187
|
+
/**
|
|
188
|
+
* Compact how long until a date happens, e.g. `in 10d` or `2h ago` or `in 1w`
|
|
189
|
+
*
|
|
190
|
+
* @param target The date when the thing will happen.
|
|
191
|
+
* @param current Today's date (or a different date to measure from).
|
|
192
|
+
*/
|
|
193
|
+
export function formatWhen(target, current) {
|
|
194
|
+
const ms = getDuration(target, current);
|
|
195
|
+
const abs = Math.abs(ms);
|
|
196
|
+
const duration = formatDuration(abs);
|
|
197
|
+
return abs < 10 * SECOND ? "just now" : ms > 0 ? `in ${duration}` : `${duration} ago`;
|
|
195
198
|
}
|
|
196
199
|
/**
|
|
197
|
-
* Return
|
|
200
|
+
* Return short description of when a date happened, e.g. `10d` or `2h` or `-1w`
|
|
201
|
+
*
|
|
202
|
+
* @param target The date when the thing will happen.
|
|
203
|
+
* @param current Today's date (or a different date to measure from).
|
|
204
|
+
*/
|
|
205
|
+
export const formatUntil = (target, current) => formatDuration(getDuration(target, current));
|
|
206
|
+
/**
|
|
207
|
+
* Return short description of when a date will happen, e.g. `10d` or `2h` or `-1w`
|
|
208
|
+
*
|
|
198
209
|
* @param target The date when the thing happened.
|
|
199
210
|
* @param current Today's date (or a different date to measure from).
|
|
200
211
|
*/
|
|
201
|
-
export
|
|
202
|
-
const [amount, units] = diffDates(current, target);
|
|
203
|
-
return `${formatNumber(amount)}${units.substr(0, 1)}`;
|
|
204
|
-
}
|
|
212
|
+
export const formatAgo = (target, current) => formatDuration(getDuration(current, target));
|
|
205
213
|
/** Format a date in the browser locale. */
|
|
206
|
-
export
|
|
207
|
-
|
|
208
|
-
}
|
|
214
|
+
export const formatDate = (date) => _formatter.format(getDate(date));
|
|
215
|
+
const _formatter = new Intl.DateTimeFormat(undefined, {});
|
|
209
216
|
/** Is a date in the past? */
|
|
210
217
|
export const isPast = (target, current) => getDate(target) < getDate(current);
|
|
211
218
|
/** Is a date in the future? */
|
package/util/number.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export declare const TRILLION = 1000000000000;
|
|
2
|
+
export declare const BILLION = 1000000000;
|
|
3
|
+
export declare const MILLION = 1000000;
|
|
1
4
|
/** Is a value a number? */
|
|
2
5
|
export declare const isNumber: (v: unknown) => v is number;
|
|
3
6
|
/**
|
|
@@ -21,25 +24,69 @@ export declare function getNumber(value: unknown): number;
|
|
|
21
24
|
*
|
|
22
25
|
* @param num The number to round.
|
|
23
26
|
* @param step The rounding to round to, e.g. `2` or `0.1` (defaults to `1`, i.e. round numbers).
|
|
24
|
-
*
|
|
27
|
+
*
|
|
28
|
+
* @returns The number rounded to the specified step.
|
|
25
29
|
*/
|
|
26
|
-
export declare
|
|
30
|
+
export declare const roundStep: (num: number, step?: number) => number;
|
|
27
31
|
/**
|
|
28
32
|
* Round a number to a specified set of decimal places.
|
|
29
|
-
* -
|
|
33
|
+
* - Better than `Math.round()` because it allows a `precision` argument.
|
|
34
|
+
* - Better than `num.toFixed()` because it trims excess `0` zeroes.
|
|
30
35
|
*
|
|
31
|
-
* @param num The number to
|
|
32
|
-
* @param precision Maximum of digits shown after the decimal point (defaults to 10)
|
|
33
|
-
*
|
|
36
|
+
* @param num The number to round.
|
|
37
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10).
|
|
38
|
+
*
|
|
39
|
+
* @returns The number rounded to the specified precision.
|
|
40
|
+
*/
|
|
41
|
+
export declare const roundNumber: (num: number, precision?: number) => number;
|
|
42
|
+
/**
|
|
43
|
+
* Truncate a number to a specified set of decimal places.
|
|
44
|
+
* - Better than `Math.trunc()` because it allows a `precision` argument.
|
|
45
|
+
*
|
|
46
|
+
* @param num The number to truncate.
|
|
47
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10).
|
|
48
|
+
*
|
|
49
|
+
* @returns The number truncated to the specified precision.
|
|
34
50
|
*/
|
|
35
|
-
export declare const
|
|
51
|
+
export declare const truncateNumber: (num: number, precision?: number) => number;
|
|
36
52
|
/**
|
|
37
53
|
* Format a number (based on the user's browser settings).
|
|
54
|
+
*
|
|
38
55
|
* @param num The number to format.
|
|
39
|
-
* @param
|
|
56
|
+
* @param maxPrecision Maximum number of digits shown after the decimal point (defaults to 2).
|
|
57
|
+
* @param minPrecision Minimum number of digits shown after the decimal point (defaults to 0).
|
|
58
|
+
*
|
|
40
59
|
* @returns The number formatted as a string in the browser's current locale.
|
|
41
60
|
*/
|
|
42
|
-
export declare const formatNumber: (num: number,
|
|
61
|
+
export declare const formatNumber: (num: number, maxPrecision?: number, minPrecision?: number) => string;
|
|
62
|
+
/** Format a number with a short suffix (number and suffix are separated by a non-breaking narrow space). */
|
|
63
|
+
export declare const formatQuantity: (num: number, suffix: string, maxPrecision?: number | undefined, minPrecision?: number | undefined) => string;
|
|
64
|
+
/** Format a number with a longer full-word suffix (number and suffix are separated by a non-breaking space). */
|
|
65
|
+
export declare function formatFullQuantity(num: number, singular: string, plural: string, maxPrecision?: number, minPrecision?: number): string;
|
|
66
|
+
/**
|
|
67
|
+
* Cram a large whole numbers into a space efficient format, e.g. `14.7M`
|
|
68
|
+
* - Improves glanceability.
|
|
69
|
+
* - Keeps number of characters under five if possible.
|
|
70
|
+
*
|
|
71
|
+
* - Numbers over 100 trillion: `157T`
|
|
72
|
+
* - Numbers over 10 trillion: `15.7T` (includes zero e.g. `40.0T` for consistency).
|
|
73
|
+
* - Numbers over 1 trillion: `1.57T` (includes zeros e.g. `4.00T` for consistency).
|
|
74
|
+
* - Numbers over 100 billion: `157B`
|
|
75
|
+
* - Numbers over 10 billion: `15.7B` (includes zero e.g. `40.0B` for consistency).
|
|
76
|
+
* - Numbers over 1 billion: `1.57B` (includes zeros e.g. `4.00B` for consistency).
|
|
77
|
+
* - Numbers over 100 million: `157M`
|
|
78
|
+
* - Numbers over 10 million: `15.7M` (includes zero e.g. `40.0M` for consistency).
|
|
79
|
+
* - Numbers over 1 million: `1.57M` (includes zeros e.g. `4.00M` for consistency).
|
|
80
|
+
* - Numbers over 100,000: `157K`
|
|
81
|
+
* - Numbers over 10,000: `15.7K` (includes zero e.g. `14.0K` for consistency).
|
|
82
|
+
* - Smaller numbers: `1570` and `157` and `15.7` and `1.6`
|
|
83
|
+
*
|
|
84
|
+
* @param num The number to format.
|
|
85
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10, only used for numbers under 10,000).
|
|
86
|
+
*
|
|
87
|
+
* @returns The number formatted as a crammed string.
|
|
88
|
+
*/
|
|
89
|
+
export declare function cramNumber(num: number): string;
|
|
43
90
|
/**
|
|
44
91
|
* Is a number within a specified range?
|
|
45
92
|
*
|
package/util/number.js
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { AssertionError } from "../error/index.js";
|
|
2
|
+
import { NBSP, NNBSP } from "./string.js";
|
|
3
|
+
// Constants.
|
|
4
|
+
export const TRILLION = 1000000000000;
|
|
5
|
+
export const BILLION = 1000000000;
|
|
6
|
+
export const MILLION = 1000000;
|
|
2
7
|
/** Is a value a number? */
|
|
3
8
|
export const isNumber = (v) => typeof v === "number";
|
|
4
9
|
/**
|
|
@@ -36,29 +41,87 @@ export function getNumber(value) {
|
|
|
36
41
|
*
|
|
37
42
|
* @param num The number to round.
|
|
38
43
|
* @param step The rounding to round to, e.g. `2` or `0.1` (defaults to `1`, i.e. round numbers).
|
|
39
|
-
*
|
|
44
|
+
*
|
|
45
|
+
* @returns The number rounded to the specified step.
|
|
40
46
|
*/
|
|
41
|
-
export
|
|
42
|
-
if (step < 0.00001)
|
|
43
|
-
throw new AssertionError("roundToStep() does not work accurately with steps smaller than 0.00001", step);
|
|
44
|
-
return Math.round(num / step) * step;
|
|
45
|
-
}
|
|
47
|
+
export const roundStep = (num, step = 1) => Math.round(num / step) * step;
|
|
46
48
|
/**
|
|
47
49
|
* Round a number to a specified set of decimal places.
|
|
48
|
-
* -
|
|
50
|
+
* - Better than `Math.round()` because it allows a `precision` argument.
|
|
51
|
+
* - Better than `num.toFixed()` because it trims excess `0` zeroes.
|
|
49
52
|
*
|
|
50
|
-
* @param num The number to
|
|
51
|
-
* @param precision Maximum of digits shown after the decimal point (defaults to 10)
|
|
52
|
-
*
|
|
53
|
+
* @param num The number to round.
|
|
54
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10).
|
|
55
|
+
*
|
|
56
|
+
* @returns The number rounded to the specified precision.
|
|
53
57
|
*/
|
|
54
|
-
export const roundNumber = (num, precision =
|
|
58
|
+
export const roundNumber = (num, precision = 0) => Math.round(num * 10 ** precision) / 10 ** precision;
|
|
59
|
+
/**
|
|
60
|
+
* Truncate a number to a specified set of decimal places.
|
|
61
|
+
* - Better than `Math.trunc()` because it allows a `precision` argument.
|
|
62
|
+
*
|
|
63
|
+
* @param num The number to truncate.
|
|
64
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10).
|
|
65
|
+
*
|
|
66
|
+
* @returns The number truncated to the specified precision.
|
|
67
|
+
*/
|
|
68
|
+
export const truncateNumber = (num, precision = 0) => Math.trunc(num * 10 ** precision) / 10 ** precision;
|
|
55
69
|
/**
|
|
56
70
|
* Format a number (based on the user's browser settings).
|
|
71
|
+
*
|
|
57
72
|
* @param num The number to format.
|
|
58
|
-
* @param
|
|
73
|
+
* @param maxPrecision Maximum number of digits shown after the decimal point (defaults to 2).
|
|
74
|
+
* @param minPrecision Minimum number of digits shown after the decimal point (defaults to 0).
|
|
75
|
+
*
|
|
59
76
|
* @returns The number formatted as a string in the browser's current locale.
|
|
60
77
|
*/
|
|
61
|
-
export const formatNumber = (num,
|
|
78
|
+
export const formatNumber = (num, maxPrecision = 4, minPrecision = 0) => new Intl.NumberFormat(undefined, { maximumFractionDigits: maxPrecision, minimumFractionDigits: minPrecision }).format(num);
|
|
79
|
+
/** Format a number with a short suffix (number and suffix are separated by a non-breaking narrow space). */
|
|
80
|
+
export const formatQuantity = (num, suffix, maxPrecision, minPrecision) => `${formatNumber(num, maxPrecision, minPrecision)}${NNBSP}${suffix}`;
|
|
81
|
+
/** Format a number with a longer full-word suffix (number and suffix are separated by a non-breaking space). */
|
|
82
|
+
export function formatFullQuantity(num, singular, plural, maxPrecision, minPrecision) {
|
|
83
|
+
const qty = formatNumber(num, maxPrecision, minPrecision);
|
|
84
|
+
return `${qty}${NBSP}${qty === "1" ? singular : plural}`;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Cram a large whole numbers into a space efficient format, e.g. `14.7M`
|
|
88
|
+
* - Improves glanceability.
|
|
89
|
+
* - Keeps number of characters under five if possible.
|
|
90
|
+
*
|
|
91
|
+
* - Numbers over 100 trillion: `157T`
|
|
92
|
+
* - Numbers over 10 trillion: `15.7T` (includes zero e.g. `40.0T` for consistency).
|
|
93
|
+
* - Numbers over 1 trillion: `1.57T` (includes zeros e.g. `4.00T` for consistency).
|
|
94
|
+
* - Numbers over 100 billion: `157B`
|
|
95
|
+
* - Numbers over 10 billion: `15.7B` (includes zero e.g. `40.0B` for consistency).
|
|
96
|
+
* - Numbers over 1 billion: `1.57B` (includes zeros e.g. `4.00B` for consistency).
|
|
97
|
+
* - Numbers over 100 million: `157M`
|
|
98
|
+
* - Numbers over 10 million: `15.7M` (includes zero e.g. `40.0M` for consistency).
|
|
99
|
+
* - Numbers over 1 million: `1.57M` (includes zeros e.g. `4.00M` for consistency).
|
|
100
|
+
* - Numbers over 100,000: `157K`
|
|
101
|
+
* - Numbers over 10,000: `15.7K` (includes zero e.g. `14.0K` for consistency).
|
|
102
|
+
* - Smaller numbers: `1570` and `157` and `15.7` and `1.6`
|
|
103
|
+
*
|
|
104
|
+
* @param num The number to format.
|
|
105
|
+
* @param precision Maximum number of digits shown after the decimal point (defaults to 10, only used for numbers under 10,000).
|
|
106
|
+
*
|
|
107
|
+
* @returns The number formatted as a crammed string.
|
|
108
|
+
*/
|
|
109
|
+
export function cramNumber(num) {
|
|
110
|
+
const abs = Math.abs(num);
|
|
111
|
+
if (abs >= TRILLION)
|
|
112
|
+
return `${_significance(num / TRILLION)}T`;
|
|
113
|
+
if (abs >= BILLION)
|
|
114
|
+
return `${_significance(num / BILLION)}B`;
|
|
115
|
+
if (abs >= MILLION)
|
|
116
|
+
return `${_significance(num / MILLION)}M`;
|
|
117
|
+
if (abs >= 10000)
|
|
118
|
+
return `${_significance(num / 1000)}K`;
|
|
119
|
+
return truncateNumber(num, 2).toString();
|
|
120
|
+
}
|
|
121
|
+
function _significance(num) {
|
|
122
|
+
const digits = num >= 100 ? 0 : num >= 10 ? 1 : 2;
|
|
123
|
+
return truncateNumber(num, digits).toFixed(digits);
|
|
124
|
+
}
|
|
62
125
|
/**
|
|
63
126
|
* Is a number within a specified range?
|
|
64
127
|
*
|
package/util/string.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { ImmutableArray } from "./array.js";
|
|
2
|
+
/** Non-breaking space. */
|
|
3
|
+
export declare const NBSP = "\u00A0";
|
|
4
|
+
/** Thin space. */
|
|
5
|
+
export declare const THINSP = "\u2009";
|
|
6
|
+
/** Non-breaking narrow space. */
|
|
7
|
+
export declare const NNBSP = "\u202F";
|
|
2
8
|
/** Is a value a string? */
|
|
3
9
|
export declare const isString: (v: unknown) => v is string;
|
|
4
10
|
/**
|
package/util/string.js
CHANGED
|
@@ -3,6 +3,12 @@ import { formatDate } from "./date.js";
|
|
|
3
3
|
import { isData } from "./data.js";
|
|
4
4
|
import { isArray } from "./array.js";
|
|
5
5
|
import { formatNumber, isBetween } from "./number.js";
|
|
6
|
+
/** Non-breaking space. */
|
|
7
|
+
export const NBSP = "\xA0";
|
|
8
|
+
/** Thin space. */
|
|
9
|
+
export const THINSP = "\u2009";
|
|
10
|
+
/** Non-breaking narrow space. */
|
|
11
|
+
export const NNBSP = "\u202F";
|
|
6
12
|
/** Is a value a string? */
|
|
7
13
|
export const isString = (v) => typeof v === "string";
|
|
8
14
|
/**
|
package/util/units.d.ts
CHANGED
|
@@ -1,11 +1,39 @@
|
|
|
1
|
+
/** Valid information about a unit of measure. */
|
|
2
|
+
export declare type UnitData = {
|
|
3
|
+
/** Plural name for a unit, e.g. `feet` */
|
|
4
|
+
readonly plural?: string;
|
|
5
|
+
/** Type of a unit. */
|
|
6
|
+
readonly type: UnitType;
|
|
7
|
+
/** Short suffix for this unit, e.g. `km` */
|
|
8
|
+
readonly suffix: string;
|
|
9
|
+
/** All units must specify their 'base' unit, e.g. `meter` for for distance units and `liter` for volume units. */
|
|
10
|
+
readonly base: number;
|
|
11
|
+
} & {
|
|
12
|
+
[K in UnitReference]?: number;
|
|
13
|
+
};
|
|
14
|
+
/** Valid system of measurement reference. */
|
|
15
|
+
export declare type UnitType = "percentage" | "angle" | "temperature" | "length" | "speed" | "pace" | "mass" | "time" | "volume";
|
|
16
|
+
/** Valid unit of measurement reference (correspond to units allowed in `Intl.NumberFormat`, but not all). */
|
|
17
|
+
export declare type UnitReference = "percent" | "degree" | "millimeter" | "centimeter" | "meter" | "kilometer" | "mile" | "yard" | "foot" | "inch" | "liter" | "milliliter" | "gallon" | "fluid-ounce" | "milligram" | "gram" | "kilogram" | "pound" | "stone" | "ounce" | "millisecond" | "second" | "minute" | "day" | "hour" | "week" | "month" | "year";
|
|
18
|
+
/** List of units. */
|
|
19
|
+
export declare const UNITS: {
|
|
20
|
+
[K in UnitReference]: UnitData;
|
|
21
|
+
};
|
|
22
|
+
/** Convert between two units of the same type. */
|
|
23
|
+
export declare function convertUnits(num: number, from: UnitReference, to: UnitReference): number;
|
|
1
24
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
25
|
+
* Format a number with a given unit of measure, e.g. `12 kg` or `29.5 l`
|
|
26
|
+
*
|
|
27
|
+
* @param num The number to format.
|
|
28
|
+
* @param unit String reference for a unit of measure e.g. `kilometer`
|
|
29
|
+
* @param maxPrecision Number of decimal places to round the number to e.g. `2`
|
|
4
30
|
*/
|
|
5
|
-
export declare
|
|
6
|
-
/**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
31
|
+
export declare const formatUnits: (num: number, unit: UnitReference, maxPrecision?: number | undefined, minPrecision?: number | undefined) => string;
|
|
32
|
+
/**
|
|
33
|
+
* Format a number with a given unit of measure, e.g. `12 kilograms` or `29.5 liters` or `1 degree`
|
|
34
|
+
*
|
|
35
|
+
* @param num The number to format.
|
|
36
|
+
* @param unit String reference for a unit of measure e.g. `kilometer`
|
|
37
|
+
* @param maxPrecision Number of decimal places to round the number to e.g. `2`
|
|
38
|
+
*/
|
|
39
|
+
export declare const formatFullUnits: (num: number, unit: UnitReference, maxPrecision?: number | undefined, minPrecision?: number | undefined) => string;
|
package/util/units.js
CHANGED
|
@@ -1,92 +1,64 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
regex: /(\d|\b)(miles?|mi|m)\b/i,
|
|
36
|
-
short: "mi",
|
|
37
|
-
precision: 2,
|
|
38
|
-
m: "mile", // e.g. `10m` means miles.
|
|
39
|
-
},
|
|
40
|
-
yard: {
|
|
41
|
-
meter: 0.9144,
|
|
42
|
-
inch: 36,
|
|
43
|
-
foot: 3,
|
|
44
|
-
regex: /(\d|\b)(yards?|yds?|y)\b/i,
|
|
45
|
-
short: "yd",
|
|
46
|
-
},
|
|
47
|
-
foot: {
|
|
48
|
-
meter: 0.3048,
|
|
49
|
-
inch: 12,
|
|
50
|
-
regex: /(\d|\b)(feets?|foots?|fts?|f)\b/i,
|
|
51
|
-
short: "ft",
|
|
52
|
-
},
|
|
53
|
-
inch: {
|
|
54
|
-
meter: 0.0254,
|
|
55
|
-
regex: /(\d|\b)(inches|inch|in)\b/i,
|
|
56
|
-
short: "in",
|
|
57
|
-
},
|
|
1
|
+
import { AssertionError } from "../error/index.js";
|
|
2
|
+
import { DAY, HOUR, MINUTE, MONTH, SECOND, WEEK, YEAR } from "./date.js";
|
|
3
|
+
import { formatFullQuantity, formatQuantity } from "./number.js";
|
|
4
|
+
import { NNBSP } from "./string.js";
|
|
5
|
+
/** List of units. */
|
|
6
|
+
export const UNITS = {
|
|
7
|
+
"percent": { type: "percentage", base: 1, suffix: "%" },
|
|
8
|
+
"degree": { type: "angle", base: 1, suffix: "deg" },
|
|
9
|
+
"millimeter": { type: "length", base: 1, suffix: "mm" },
|
|
10
|
+
"centimeter": { type: "length", base: 10, suffix: "cm" },
|
|
11
|
+
"meter": { type: "length", base: 1000, centimeter: 100, millimeter: 1000, suffix: "m" },
|
|
12
|
+
"kilometer": { type: "length", base: 1000000, centimeter: 100000, millimeter: 1000000, suffix: "km" },
|
|
13
|
+
"inch": { type: "length", base: 25.4, suffix: "in" },
|
|
14
|
+
"foot": { type: "length", base: 304.8, inch: 12, suffix: "ft", plural: "feet" },
|
|
15
|
+
"yard": { type: "length", base: 914.4, inch: 36, foot: 3, suffix: "yd" },
|
|
16
|
+
"mile": { type: "length", base: 1609344, yard: 1760, foot: 5280, inch: 63360, suffix: "mi" },
|
|
17
|
+
"milliliter": { type: "volume", base: 1, suffix: "ml" },
|
|
18
|
+
"liter": { type: "volume", base: 1000, suffix: "l" },
|
|
19
|
+
"fluid-ounce": { type: "volume", base: 29.5735295625, gallon: 128, suffix: `fl${NNBSP}oz` },
|
|
20
|
+
"gallon": { type: "volume", base: 3785.411784, suffix: "gal" },
|
|
21
|
+
"milligram": { type: "mass", base: 1, suffix: "mg" },
|
|
22
|
+
"gram": { type: "mass", base: 1000, suffix: "g" },
|
|
23
|
+
"kilogram": { type: "mass", base: 1000000, suffix: "kg" },
|
|
24
|
+
"ounce": { type: "mass", base: 28349.523125, pound: 0.0625, suffix: "oz" },
|
|
25
|
+
"pound": { type: "mass", base: 453592.37, ounce: 16, suffix: "lb" },
|
|
26
|
+
"stone": { type: "mass", base: 6350293.18, pound: 14, ounce: 224, suffix: "st", plural: "stone" },
|
|
27
|
+
"millisecond": { type: "time", base: 1, suffix: "ms" },
|
|
28
|
+
"second": { type: "time", base: SECOND, suffix: "s" },
|
|
29
|
+
"minute": { type: "time", base: MINUTE, suffix: "m" },
|
|
30
|
+
"hour": { type: "time", base: HOUR, suffix: "h" },
|
|
31
|
+
"day": { type: "time", base: DAY, suffix: "d" },
|
|
32
|
+
"week": { type: "time", base: WEEK, suffix: "w" },
|
|
33
|
+
"month": { type: "time", base: MONTH, suffix: "m" },
|
|
34
|
+
"year": { type: "time", base: YEAR, suffix: "y" },
|
|
58
35
|
};
|
|
59
|
-
/** Convert between two
|
|
60
|
-
export
|
|
36
|
+
/** Convert between two units of the same type. */
|
|
37
|
+
export function convertUnits(num, from, to) {
|
|
61
38
|
if (from === to)
|
|
62
39
|
return num;
|
|
63
|
-
const
|
|
64
|
-
const
|
|
65
|
-
if (
|
|
66
|
-
return num *
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
return "inch";
|
|
89
|
-
return false; // Cannot figure out unit.
|
|
90
|
-
};
|
|
91
|
-
/** Format a distance. */
|
|
92
|
-
export const formatUnit = (num, unit = "meter", precision = unitsData[unit].precision || 0) => `${formatNumber(num, precision)} ${unitsData[unit].short}`;
|
|
40
|
+
const fromData = UNITS[from];
|
|
41
|
+
const exact = fromData[to]; // Get the exact conversion if possible (e.g. 5280 feet in a mile).
|
|
42
|
+
if (typeof exact === "number")
|
|
43
|
+
return num * exact;
|
|
44
|
+
const toData = UNITS[to];
|
|
45
|
+
if (fromData.type !== toData.type)
|
|
46
|
+
throw new AssertionError(`Target unit must be ${fromData.type}`, toData.type);
|
|
47
|
+
return (num * fromData.base) / toData.base;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Format a number with a given unit of measure, e.g. `12 kg` or `29.5 l`
|
|
51
|
+
*
|
|
52
|
+
* @param num The number to format.
|
|
53
|
+
* @param unit String reference for a unit of measure e.g. `kilometer`
|
|
54
|
+
* @param maxPrecision Number of decimal places to round the number to e.g. `2`
|
|
55
|
+
*/
|
|
56
|
+
export const formatUnits = (num, unit, maxPrecision, minPrecision) => formatQuantity(num, UNITS[unit].suffix, maxPrecision, minPrecision);
|
|
57
|
+
/**
|
|
58
|
+
* Format a number with a given unit of measure, e.g. `12 kilograms` or `29.5 liters` or `1 degree`
|
|
59
|
+
*
|
|
60
|
+
* @param num The number to format.
|
|
61
|
+
* @param unit String reference for a unit of measure e.g. `kilometer`
|
|
62
|
+
* @param maxPrecision Number of decimal places to round the number to e.g. `2`
|
|
63
|
+
*/
|
|
64
|
+
export const formatFullUnits = (num, unit, maxPrecision, minPrecision) => formatFullQuantity(num, unit, UNITS[unit].plural || `${unit}s`, maxPrecision, minPrecision);
|