/* Copyright 2022 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, { useState, useRef } from 'react'; import { MatrixClient } from 'matrix-js-sdk/src/client'; import { Beacon, Room, } from 'matrix-js-sdk/src/matrix'; import maplibregl from 'maplibre-gl'; import { Icon as LiveLocationIcon } from '../../../../res/img/location/live-location.svg'; import { useLiveBeacons } from '../../../utils/beacon/useLiveBeacons'; import MatrixClientContext from '../../../contexts/MatrixClientContext'; import BaseDialog from "../dialogs/BaseDialog"; import { IDialogProps } from "../dialogs/IDialogProps"; import Map from '../location/Map'; import ZoomButtons from '../location/ZoomButtons'; import BeaconMarker from './BeaconMarker'; import { Bounds, getBeaconBounds } from '../../../utils/beacon/bounds'; import { getGeoUri } from '../../../utils/beacon'; import { _t } from '../../../languageHandler'; import AccessibleButton from '../elements/AccessibleButton'; import DialogSidebar from './DialogSidebar'; import DialogOwnBeaconStatus from './DialogOwnBeaconStatus'; import BeaconStatusTooltip from './BeaconStatusTooltip'; import MapFallback from '../location/MapFallback'; interface IProps extends IDialogProps { roomId: Room['roomId']; matrixClient: MatrixClient; // open the map centered on this beacon's location focusBeacon?: Beacon; } const getBoundsCenter = (bounds: Bounds): string | undefined => { if (!bounds) { return; } return getGeoUri({ latitude: (bounds.north + bounds.south) / 2, longitude: (bounds.east + bounds.west) / 2, timestamp: Date.now(), }); }; const useInitialMapPosition = (liveBeacons: Beacon[], focusBeacon?: Beacon): { bounds?: Bounds; centerGeoUri: string; } => { const bounds = useRef(getBeaconBounds(liveBeacons)); const centerGeoUri = useRef( focusBeacon?.latestLocationState?.uri || getBoundsCenter(bounds.current), ); return { bounds: bounds.current, centerGeoUri: centerGeoUri.current }; }; /** * Dialog to view live beacons maximised */ const BeaconViewDialog: React.FC = ({ focusBeacon, roomId, matrixClient, onFinished, }) => { const liveBeacons = useLiveBeacons(roomId, matrixClient); const [isSidebarOpen, setSidebarOpen] = useState(false); const { bounds, centerGeoUri } = useInitialMapPosition(liveBeacons, focusBeacon); return ( { !!liveBeacons?.length ? { ({ map }: { map: maplibregl.Map}) => <> { liveBeacons.map(beacon => } />) } } : { _t('No live locations') } { _t('Close') } } { isSidebarOpen ? setSidebarOpen(false)} /> : setSidebarOpen(true)} data-test-id='beacon-view-dialog-open-sidebar' className='mx_BeaconViewDialog_viewListButton' >   { _t('View list') } } ); }; export default BeaconViewDialog;