* update map svg Signed-off-by: Kerry Archibald <kerrya@element.io> * add map fallback component, update styls Signed-off-by: Kerry Archibald <kerrya@element.io> * update purple location icon style Signed-off-by: Kerry Archibald <kerrya@element.io> * fussy import ordering Signed-off-by: Kerry Archibald <kerrya@element.io> * tidy Signed-off-by: Kerry Archibald <kerrya@element.io>
145 lines
5.4 KiB
TypeScript
145 lines
5.4 KiB
TypeScript
/*
|
|
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<Bounds | undefined>(getBeaconBounds(liveBeacons));
|
|
const centerGeoUri = useRef<string>(
|
|
focusBeacon?.latestLocationState?.uri ||
|
|
getBoundsCenter(bounds.current),
|
|
);
|
|
return { bounds: bounds.current, centerGeoUri: centerGeoUri.current };
|
|
};
|
|
|
|
/**
|
|
* Dialog to view live beacons maximised
|
|
*/
|
|
const BeaconViewDialog: React.FC<IProps> = ({
|
|
focusBeacon,
|
|
roomId,
|
|
matrixClient,
|
|
onFinished,
|
|
}) => {
|
|
const liveBeacons = useLiveBeacons(roomId, matrixClient);
|
|
|
|
const [isSidebarOpen, setSidebarOpen] = useState(false);
|
|
|
|
const { bounds, centerGeoUri } = useInitialMapPosition(liveBeacons, focusBeacon);
|
|
|
|
return (
|
|
<BaseDialog
|
|
className='mx_BeaconViewDialog'
|
|
onFinished={onFinished}
|
|
fixedWidth={false}
|
|
>
|
|
<MatrixClientContext.Provider value={matrixClient}>
|
|
{ !!liveBeacons?.length ? <Map
|
|
id='mx_BeaconViewDialog'
|
|
bounds={bounds}
|
|
centerGeoUri={centerGeoUri}
|
|
interactive
|
|
className="mx_BeaconViewDialog_map"
|
|
>
|
|
{
|
|
({ map }: { map: maplibregl.Map}) =>
|
|
<>
|
|
{ liveBeacons.map(beacon => <BeaconMarker
|
|
key={beacon.identifier}
|
|
map={map}
|
|
beacon={beacon}
|
|
tooltip={<BeaconStatusTooltip beacon={beacon} />}
|
|
/>) }
|
|
<ZoomButtons map={map} />
|
|
</>
|
|
}
|
|
</Map> :
|
|
<MapFallback
|
|
data-test-id='beacon-view-dialog-map-fallback'
|
|
className='mx_BeaconViewDialog_map'
|
|
>
|
|
<span className='mx_BeaconViewDialog_mapFallbackMessage'>{ _t('No live locations') }</span>
|
|
<AccessibleButton
|
|
kind='primary'
|
|
onClick={onFinished}
|
|
data-test-id='beacon-view-dialog-fallback-close'
|
|
>
|
|
{ _t('Close') }
|
|
</AccessibleButton>
|
|
</MapFallback>
|
|
}
|
|
{ isSidebarOpen ?
|
|
<DialogSidebar beacons={liveBeacons} requestClose={() => setSidebarOpen(false)} /> :
|
|
<AccessibleButton
|
|
kind='primary'
|
|
onClick={() => setSidebarOpen(true)}
|
|
data-test-id='beacon-view-dialog-open-sidebar'
|
|
className='mx_BeaconViewDialog_viewListButton'
|
|
>
|
|
<LiveLocationIcon height={12} />
|
|
{ _t('View list') }
|
|
</AccessibleButton>
|
|
}
|
|
<DialogOwnBeaconStatus roomId={roomId} />
|
|
</MatrixClientContext.Provider>
|
|
</BaseDialog>
|
|
);
|
|
};
|
|
|
|
export default BeaconViewDialog;
|