@cripty2001/utils 0.0.149 → 0.0.151
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/dist/react-whispr.js +6 -6
- package/package.json +1 -1
package/dist/react-whispr.js
CHANGED
|
@@ -170,11 +170,11 @@ function useSynced(def, value, setValue) {
|
|
|
170
170
|
function useAsync(f, data, debouce = 200) {
|
|
171
171
|
// Initing reactive input
|
|
172
172
|
const [input, setInput] = useSafeRef(() => whispr_1.Whispr.create(data ?? (0, _1.getRandomId)()));
|
|
173
|
-
|
|
174
|
-
(
|
|
173
|
+
(0, react_1.useEffect)(() => {
|
|
174
|
+
if (data !== null) {
|
|
175
175
|
setInput(data); // Debouncing already handled by dispatcher
|
|
176
|
-
}
|
|
177
|
-
}
|
|
176
|
+
}
|
|
177
|
+
}, [data, setInput]);
|
|
178
178
|
// Initing dispatcher
|
|
179
179
|
const dispatcher = useSafeRef(() => new Dispatcher_1.Dispatcher(input, f, debouce));
|
|
180
180
|
// Returning dispatcher
|
|
@@ -224,7 +224,7 @@ function useRelTime(_data) {
|
|
|
224
224
|
const toReturn = useSafeRef(() => whispr_1.Whispr.from({ data, curr: (0, _1.CURRENT_TS_MS)() }, ({ data, curr }) => {
|
|
225
225
|
const then = data instanceof Date ? data.getTime() : data;
|
|
226
226
|
const seconds = Math.round(then - curr) / 1000;
|
|
227
|
-
const { base, unit } =
|
|
227
|
+
const { base, unit } = getRelTimeFormat(seconds);
|
|
228
228
|
const rounded = seconds > 0 ?
|
|
229
229
|
Math.floor(seconds / base) :
|
|
230
230
|
Math.ceil(seconds / base);
|
|
@@ -232,7 +232,7 @@ function useRelTime(_data) {
|
|
|
232
232
|
}));
|
|
233
233
|
return useWhisprValue(toReturn);
|
|
234
234
|
}
|
|
235
|
-
function
|
|
235
|
+
function getRelTimeFormat(_diff) {
|
|
236
236
|
const diff = Math.abs(_diff);
|
|
237
237
|
const breakpoints = [
|
|
238
238
|
{
|
package/package.json
CHANGED