Live location sharing - open location in OpenStreetMap (PSF-1040) (#8695)

* share plain lat,lon string from beacon tooltip and list item

Signed-off-by: Kerry Archibald <kerrya@element.io>

* export makeMapSiteLink helper fn

Signed-off-by: Kerry Archibald <kerrya@element.io>

* use currentColor in external-link.svg

Signed-off-by: Kerry Archibald <kerrya@element.io>

* add open in openstreetmap link

Signed-off-by: Kerry Archibald <kerrya@element.io>

* fussy import ordering

Signed-off-by: Kerry Archibald <kerrya@element.io>

* fix icon color var

Signed-off-by: Kerry Archibald <kerrya@element.io>
This commit is contained in:
Kerry 2022-05-27 11:58:39 +02:00 committed by GitHub
parent 12abbf4042
commit 15c2fb6b71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 254 additions and 31 deletions

View file

@ -23,10 +23,10 @@ import { useEventEmitterState } from '../../../hooks/useEventEmitter';
import { humanizeTime } from '../../../utils/humanize';
import { _t } from '../../../languageHandler';
import MemberAvatar from '../avatars/MemberAvatar';
import CopyableText from '../elements/CopyableText';
import BeaconStatus from './BeaconStatus';
import { BeaconDisplayStatus } from './displayStatus';
import StyledLiveBeaconIcon from './StyledLiveBeaconIcon';
import ShareLatestLocation from './ShareLatestLocation';
interface Props {
beacon: Beacon;
@ -69,10 +69,7 @@ const BeaconListItem: React.FC<Props> = ({ beacon }) => {
label={beaconMember?.name || beacon.beaconInfo.description || beacon.beaconInfoOwner}
displayStatus={BeaconDisplayStatus.Active}
>
<CopyableText
border={false}
getTextToCopy={() => latestLocationState?.uri}
/>
<ShareLatestLocation latestLocationState={latestLocationState} />
</BeaconStatus>
<span className='mx_BeaconListItem_lastUpdated'>{ _t("Updated %(humanizedUpdateTime)s", { humanizedUpdateTime }) }</span>
</div>

View file

@ -19,9 +19,9 @@ import { Beacon } from 'matrix-js-sdk/src/matrix';
import { LocationAssetType } from 'matrix-js-sdk/src/@types/location';
import MatrixClientContext from '../../../contexts/MatrixClientContext';
import CopyableText from '../elements/CopyableText';
import BeaconStatus from './BeaconStatus';
import { BeaconDisplayStatus } from './displayStatus';
import ShareLatestLocation from './ShareLatestLocation';
interface Props {
beacon: Beacon;
@ -50,10 +50,7 @@ const BeaconStatusTooltip: React.FC<Props> = ({ beacon }) => {
displayLiveTimeRemaining
className='mx_BeaconStatusTooltip_inner'
>
<CopyableText
border={false}
getTextToCopy={() => beacon.latestLocationState?.uri}
/>
<ShareLatestLocation latestLocationState={beacon.latestLocationState} />
</BeaconStatus>
</div>;
};

View file

@ -0,0 +1,66 @@
/*
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, { useEffect, useState } from 'react';
import { BeaconLocationState } from 'matrix-js-sdk/src/content-helpers';
import { Icon as ExternalLinkIcon } from '../../../../res/img/external-link.svg';
import { _t } from '../../../languageHandler';
import { makeMapSiteLink, parseGeoUri } from '../../../utils/location';
import CopyableText from '../elements/CopyableText';
import TooltipTarget from '../elements/TooltipTarget';
interface Props {
latestLocationState?: BeaconLocationState;
}
const ShareLatestLocation: React.FC<Props> = ({ latestLocationState }) => {
const [coords, setCoords] = useState(null);
useEffect(() => {
if (!latestLocationState) {
return;
}
const coords = parseGeoUri(latestLocationState.uri);
setCoords(coords);
}, [latestLocationState]);
if (!latestLocationState || !coords) {
return null;
}
const latLonString = `${coords.latitude},${coords.longitude}`;
const mapLink = makeMapSiteLink(coords);
return <>
<TooltipTarget label={_t('Open in OpenStreetMap')}>
<a
data-test-id='open-location-in-osm'
href={mapLink}
target='_blank'
rel='noreferrer noopener'
>
<ExternalLinkIcon className='mx_ShareLatestLocation_icon' />
</a>
</TooltipTarget>
<CopyableText
className='mx_ShareLatestLocation_copy'
border={false}
getTextToCopy={() => latLonString}
/>
</>;
};
export default ShareLatestLocation;

View file

@ -50,7 +50,7 @@ import { ViewRoomPayload } from "../../../dispatcher/payloads/ViewRoomPayload";
import { GetRelationsForEvent, IEventTileOps } from "../rooms/EventTile";
import { OpenForwardDialogPayload } from "../../../dispatcher/payloads/OpenForwardDialogPayload";
import { OpenReportEventDialogPayload } from "../../../dispatcher/payloads/OpenReportEventDialogPayload";
import { createMapSiteLink } from '../../../utils/location';
import { createMapSiteLinkFromEvent } from '../../../utils/location';
interface IProps extends IPosition {
chevronFace: ChevronFace;
@ -360,7 +360,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
let openInMapSiteButton: JSX.Element;
if (this.canOpenInMapSite(mxEvent)) {
const mapSiteLink = createMapSiteLink(mxEvent);
const mapSiteLink = createMapSiteLinkFromEvent(mxEvent);
openInMapSiteButton = (
<IconizedContextMenuOption
iconClassName="mx_MessageContextMenu_iconOpenInMapSite"

View file

@ -27,9 +27,10 @@ interface IProps {
children?: React.ReactNode;
getTextToCopy: () => string;
border?: boolean;
className?: string;
}
const CopyableText: React.FC<IProps> = ({ children, getTextToCopy, border=true }) => {
const CopyableText: React.FC<IProps> = ({ children, getTextToCopy, border=true, className }) => {
const [tooltip, setTooltip] = useState<string | undefined>(undefined);
const onCopyClickInternal = async (e: ButtonEvent) => {
@ -44,11 +45,11 @@ const CopyableText: React.FC<IProps> = ({ children, getTextToCopy, border=true }
}
};
const className = classNames("mx_CopyableText", {
const combinedClassName = classNames("mx_CopyableText", className, {
mx_CopyableText_border: border,
});
return <div className={className}>
return <div className={combinedClassName}>
{ children }
<AccessibleTooltipButton
title={tooltip ?? _t("Copy")}

View file

@ -65,7 +65,7 @@ export const createMarker = (coords: GeolocationCoordinates, element: HTMLElemen
return marker;
};
const makeLink = (coords: GeolocationCoordinates): string => {
export const makeMapSiteLink = (coords: GeolocationCoordinates): string => {
return (
"https://www.openstreetmap.org/" +
`?mlat=${coords.latitude}` +
@ -74,18 +74,18 @@ const makeLink = (coords: GeolocationCoordinates): string => {
);
};
export const createMapSiteLink = (event: MatrixEvent): string => {
export const createMapSiteLinkFromEvent = (event: MatrixEvent): string => {
const content: Object = event.getContent();
const mLocation = content[M_LOCATION.name];
if (mLocation !== undefined) {
const uri = mLocation["uri"];
if (uri !== undefined) {
return makeLink(parseGeoUri(uri));
return makeMapSiteLink(parseGeoUri(uri));
}
} else {
const geoUri = content["geo_uri"];
if (geoUri) {
return makeLink(parseGeoUri(geoUri));
return makeMapSiteLink(parseGeoUri(geoUri));
}
}
return null;