mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 11:15:53 +03:00
Apply strictNullChecks
to src/utils/beacon/*
(#10337)
* strictnullchecks fixes in utils/beacon * user filterBoolean
This commit is contained in:
parent
503df62191
commit
72404d7216
5 changed files with 38 additions and 10 deletions
|
@ -16,6 +16,7 @@ limitations under the License.
|
||||||
|
|
||||||
import { Beacon } from "matrix-js-sdk/src/matrix";
|
import { Beacon } from "matrix-js-sdk/src/matrix";
|
||||||
|
|
||||||
|
import { filterBoolean } from "../arrays";
|
||||||
import { parseGeoUri } from "../location";
|
import { parseGeoUri } from "../location";
|
||||||
|
|
||||||
export type Bounds = {
|
export type Bounds = {
|
||||||
|
@ -36,9 +37,11 @@ export type Bounds = {
|
||||||
* west of Greenwich has a negative longitude, min -180
|
* west of Greenwich has a negative longitude, min -180
|
||||||
*/
|
*/
|
||||||
export const getBeaconBounds = (beacons: Beacon[]): Bounds | undefined => {
|
export const getBeaconBounds = (beacons: Beacon[]): Bounds | undefined => {
|
||||||
const coords = beacons
|
const coords = filterBoolean<GeolocationCoordinates>(
|
||||||
.filter((beacon) => !!beacon.latestLocationState)
|
beacons.map((beacon) =>
|
||||||
.map((beacon) => parseGeoUri(beacon.latestLocationState.uri));
|
!!beacon.latestLocationState?.uri ? parseGeoUri(beacon.latestLocationState.uri) : undefined,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
if (!coords.length) {
|
if (!coords.length) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -28,21 +28,24 @@ export const msUntilExpiry = (startTimestamp: number, durationMs: number): numbe
|
||||||
Math.max(0, startTimestamp + durationMs - Date.now());
|
Math.max(0, startTimestamp + durationMs - Date.now());
|
||||||
|
|
||||||
export const getBeaconMsUntilExpiry = (beaconInfo: BeaconInfoState): number =>
|
export const getBeaconMsUntilExpiry = (beaconInfo: BeaconInfoState): number =>
|
||||||
msUntilExpiry(beaconInfo.timestamp, beaconInfo.timeout);
|
msUntilExpiry(beaconInfo.timestamp || 0, beaconInfo.timeout);
|
||||||
|
|
||||||
export const getBeaconExpiryTimestamp = (beacon: Beacon): number =>
|
export const getBeaconExpiryTimestamp = (beacon: Beacon): number =>
|
||||||
beacon.beaconInfo.timestamp + beacon.beaconInfo.timeout;
|
(beacon.beaconInfo.timestamp || 0) + beacon.beaconInfo.timeout;
|
||||||
|
|
||||||
export const sortBeaconsByLatestExpiry = (left: Beacon, right: Beacon): number =>
|
export const sortBeaconsByLatestExpiry = (left: Beacon, right: Beacon): number =>
|
||||||
getBeaconExpiryTimestamp(right) - getBeaconExpiryTimestamp(left);
|
getBeaconExpiryTimestamp(right) - getBeaconExpiryTimestamp(left);
|
||||||
|
|
||||||
// aka sort by timestamp descending
|
// aka sort by timestamp descending
|
||||||
export const sortBeaconsByLatestCreation = (left: Beacon, right: Beacon): number =>
|
export const sortBeaconsByLatestCreation = (left: Beacon, right: Beacon): number =>
|
||||||
right.beaconInfo.timestamp - left.beaconInfo.timestamp;
|
(right.beaconInfo.timestamp || 0) - (left.beaconInfo.timestamp || 0);
|
||||||
|
|
||||||
// a beacon's starting timestamp can be in the future
|
// a beacon's starting timestamp can be in the future
|
||||||
// (either from small deviations in system clock times, or on purpose from another client)
|
// (either from small deviations in system clock times, or on purpose from another client)
|
||||||
// a beacon is only live between its start timestamp and expiry
|
// a beacon is only live between its start timestamp and expiry
|
||||||
// detect when a beacon is waiting to become live
|
// detect when a beacon is waiting to become live
|
||||||
export const isBeaconWaitingToStart = (beacon: Beacon): boolean =>
|
export const isBeaconWaitingToStart = (beacon: Beacon): boolean =>
|
||||||
!beacon.isLive && beacon.beaconInfo.timestamp > Date.now() && getBeaconExpiryTimestamp(beacon) > Date.now();
|
!beacon.isLive &&
|
||||||
|
!!beacon.beaconInfo.timestamp &&
|
||||||
|
beacon.beaconInfo.timestamp > Date.now() &&
|
||||||
|
getBeaconExpiryTimestamp(beacon) > Date.now();
|
||||||
|
|
|
@ -93,7 +93,7 @@ export const genericPositionFromGeolocation = (geoPosition: GeolocationPosition)
|
||||||
timestamp: Date.now(),
|
timestamp: Date.now(),
|
||||||
latitude,
|
latitude,
|
||||||
longitude,
|
longitude,
|
||||||
altitude,
|
altitude: altitude ?? undefined,
|
||||||
accuracy,
|
accuracy,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,8 +26,13 @@ import { useEventEmitterState } from "../../hooks/useEventEmitter";
|
||||||
export const useLiveBeacons = (roomId: Room["roomId"], matrixClient: MatrixClient): Beacon[] => {
|
export const useLiveBeacons = (roomId: Room["roomId"], matrixClient: MatrixClient): Beacon[] => {
|
||||||
const room = matrixClient.getRoom(roomId);
|
const room = matrixClient.getRoom(roomId);
|
||||||
|
|
||||||
const liveBeacons = useEventEmitterState(room?.currentState, RoomStateEvent.BeaconLiveness, () =>
|
const liveBeacons = useEventEmitterState(
|
||||||
room?.currentState?.liveBeaconIds.map((beaconIdentifier) => room.currentState.beacons.get(beaconIdentifier)),
|
room?.currentState,
|
||||||
|
RoomStateEvent.BeaconLiveness,
|
||||||
|
() =>
|
||||||
|
room?.currentState?.liveBeaconIds.map(
|
||||||
|
(beaconIdentifier) => room.currentState.beacons.get(beaconIdentifier)!,
|
||||||
|
) || [],
|
||||||
);
|
);
|
||||||
|
|
||||||
return liveBeacons;
|
return liveBeacons;
|
||||||
|
|
|
@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { M_TIMESTAMP } from "matrix-js-sdk/src/@types/location";
|
||||||
import { Beacon } from "matrix-js-sdk/src/matrix";
|
import { Beacon } from "matrix-js-sdk/src/matrix";
|
||||||
|
|
||||||
import { msUntilExpiry, sortBeaconsByLatestExpiry, sortBeaconsByLatestCreation } from "../../../src/utils/beacon";
|
import { msUntilExpiry, sortBeaconsByLatestExpiry, sortBeaconsByLatestCreation } from "../../../src/utils/beacon";
|
||||||
|
@ -68,9 +69,25 @@ describe("beacon utils", () => {
|
||||||
makeBeaconInfoEvent(aliceId, roomId, { timeout: HOUR_MS + 1, timestamp: now - HOUR_MS }, "$3"),
|
makeBeaconInfoEvent(aliceId, roomId, { timeout: HOUR_MS + 1, timestamp: now - HOUR_MS }, "$3"),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const noTimestampEvent = makeBeaconInfoEvent(
|
||||||
|
aliceId,
|
||||||
|
roomId,
|
||||||
|
{ timeout: HOUR_MS + 1, timestamp: undefined },
|
||||||
|
"$3",
|
||||||
|
);
|
||||||
|
// beacon info helper defaults to date when timestamp is falsy
|
||||||
|
// hard set it to undefined
|
||||||
|
// @ts-ignore
|
||||||
|
noTimestampEvent.event.content[M_TIMESTAMP.name] = undefined;
|
||||||
|
const beaconNoTimestamp = new Beacon(noTimestampEvent);
|
||||||
|
|
||||||
it("sorts beacons by descending expiry time", () => {
|
it("sorts beacons by descending expiry time", () => {
|
||||||
expect([beacon2, beacon3, beacon1].sort(sortBeaconsByLatestExpiry)).toEqual([beacon1, beacon2, beacon3]);
|
expect([beacon2, beacon3, beacon1].sort(sortBeaconsByLatestExpiry)).toEqual([beacon1, beacon2, beacon3]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("sorts beacons with timestamps before beacons without", () => {
|
||||||
|
expect([beaconNoTimestamp, beacon3].sort(sortBeaconsByLatestExpiry)).toEqual([beacon3, beaconNoTimestamp]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("sortBeaconsByLatestCreation()", () => {
|
describe("sortBeaconsByLatestCreation()", () => {
|
||||||
|
|
Loading…
Reference in a new issue