2020-08-17 18:48:13 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 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.
|
|
|
|
*/
|
|
|
|
|
2020-09-01 10:43:01 +02:00
|
|
|
import React, { useState, useEffect, useContext } from 'react';
|
2020-08-18 12:16:31 +02:00
|
|
|
import { getEvent, client } from 'matrix-cypher';
|
|
|
|
|
|
|
|
import { RoomPreviewWithTopic } from './RoomPreview';
|
|
|
|
import InviteTile from './InviteTile';
|
|
|
|
import { SafeLink, LinkKind } from '../parser/types';
|
2020-09-13 18:39:39 +02:00
|
|
|
import UserPreview, { WrappedInviterPreview } from './UserPreview';
|
2020-08-18 12:16:31 +02:00
|
|
|
import EventPreview from './EventPreview';
|
2020-09-13 15:58:37 +02:00
|
|
|
import HomeserverOptions from './HomeserverOptions';
|
|
|
|
import DefaultPreview from './DefaultPreview';
|
2020-09-13 18:39:39 +02:00
|
|
|
import Toggle from './Toggle';
|
2020-09-01 10:43:01 +02:00
|
|
|
import { clientMap } from '../clients';
|
2020-08-18 12:07:26 +02:00
|
|
|
import {
|
|
|
|
getRoomFromId,
|
|
|
|
getRoomFromAlias,
|
|
|
|
getRoomFromPermalink,
|
|
|
|
getUser,
|
2020-08-18 12:16:31 +02:00
|
|
|
} from '../utils/cypher-wrapper';
|
2020-09-01 10:43:01 +02:00
|
|
|
import { ClientContext } from '../contexts/ClientContext';
|
2020-09-13 18:39:39 +02:00
|
|
|
import useHSs from '../utils/getHS';
|
2020-08-17 18:48:13 +02:00
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
link: SafeLink;
|
|
|
|
}
|
|
|
|
|
2020-09-13 15:58:37 +02:00
|
|
|
const invite = async ({
|
|
|
|
clientAddress,
|
|
|
|
link,
|
|
|
|
}: {
|
|
|
|
clientAddress: string;
|
|
|
|
link: SafeLink;
|
|
|
|
}): Promise<JSX.Element> => {
|
2020-08-18 12:07:26 +02:00
|
|
|
// TODO: replace with client fetch
|
2020-09-13 15:58:37 +02:00
|
|
|
const defaultClient = await client(clientAddress);
|
2020-08-17 18:48:13 +02:00
|
|
|
switch (link.kind) {
|
|
|
|
case LinkKind.Alias:
|
|
|
|
return (
|
|
|
|
<RoomPreviewWithTopic
|
|
|
|
room={
|
2020-08-18 12:07:26 +02:00
|
|
|
await getRoomFromAlias(defaultClient, link.identifier)
|
2020-08-17 18:48:13 +02:00
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
case LinkKind.RoomId:
|
|
|
|
return (
|
|
|
|
<RoomPreviewWithTopic
|
2020-08-18 12:07:26 +02:00
|
|
|
room={await getRoomFromId(defaultClient, link.identifier)}
|
2020-08-17 18:48:13 +02:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
case LinkKind.UserId:
|
|
|
|
return (
|
|
|
|
<UserPreview
|
2020-08-18 12:07:26 +02:00
|
|
|
user={await getUser(defaultClient, link.identifier)}
|
2020-08-17 18:48:13 +02:00
|
|
|
userId={link.identifier}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
case LinkKind.Permalink:
|
|
|
|
return (
|
|
|
|
<EventPreview
|
2020-08-18 12:07:26 +02:00
|
|
|
room={await getRoomFromPermalink(defaultClient, link)}
|
2020-08-17 18:48:13 +02:00
|
|
|
event={
|
|
|
|
await getEvent(
|
2020-08-18 12:07:26 +02:00
|
|
|
defaultClient,
|
2020-08-17 18:48:13 +02:00
|
|
|
link.roomLink,
|
|
|
|
link.eventId
|
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Todo Implement events
|
|
|
|
return <></>;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-13 15:58:37 +02:00
|
|
|
interface PreviewProps extends IProps {
|
|
|
|
client: string;
|
|
|
|
}
|
2020-08-17 18:48:13 +02:00
|
|
|
|
2020-09-13 15:58:37 +02:00
|
|
|
const Preview: React.FC<PreviewProps> = ({ link, client }: PreviewProps) => {
|
|
|
|
const [content, setContent] = useState(<DefaultPreview link={link} />);
|
|
|
|
|
|
|
|
// TODO: support multiple clients with vias
|
2020-08-17 18:48:13 +02:00
|
|
|
useEffect(() => {
|
2020-09-13 15:58:37 +02:00
|
|
|
(async (): Promise<void> =>
|
|
|
|
setContent(
|
|
|
|
await invite({
|
|
|
|
clientAddress: client,
|
|
|
|
link,
|
|
|
|
})
|
|
|
|
))();
|
|
|
|
}, [link, client]);
|
|
|
|
|
|
|
|
return content;
|
|
|
|
};
|
|
|
|
|
|
|
|
const LinkPreview: React.FC<IProps> = ({ link }: IProps) => {
|
|
|
|
let content: JSX.Element;
|
|
|
|
const [showHSOptions, setShowHSOPtions] = useState(false);
|
|
|
|
|
2020-09-13 18:39:39 +02:00
|
|
|
const hses = useHSs(link);
|
|
|
|
|
|
|
|
if (!hses) {
|
2020-09-13 15:58:37 +02:00
|
|
|
content = (
|
|
|
|
<>
|
|
|
|
<DefaultPreview link={link} />
|
|
|
|
<Toggle
|
|
|
|
checked={showHSOptions}
|
|
|
|
onChange={(): void => setShowHSOPtions(!showHSOptions)}
|
|
|
|
>
|
|
|
|
Show more information
|
|
|
|
</Toggle>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
if (showHSOptions) {
|
|
|
|
content = (
|
|
|
|
<>
|
|
|
|
{content}
|
|
|
|
<HomeserverOptions />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2020-09-13 18:39:39 +02:00
|
|
|
content = <Preview link={link} client={hses[0]} />;
|
2020-09-13 15:58:37 +02:00
|
|
|
}
|
2020-08-17 18:48:13 +02:00
|
|
|
|
2020-09-03 11:17:53 +02:00
|
|
|
const [{ clientId }] = useContext(ClientContext);
|
2020-09-01 10:43:01 +02:00
|
|
|
|
|
|
|
// Select which client to link to
|
2020-09-03 11:17:53 +02:00
|
|
|
const displayClientId = clientId
|
|
|
|
? clientId
|
|
|
|
: link.arguments.client
|
|
|
|
? link.arguments.client
|
|
|
|
: null;
|
2020-09-01 10:43:01 +02:00
|
|
|
|
|
|
|
const client = displayClientId ? clientMap[displayClientId] : null;
|
|
|
|
|
2020-09-13 18:39:39 +02:00
|
|
|
const sharer = link.arguments.sharer ? (
|
|
|
|
<WrappedInviterPreview
|
|
|
|
link={{
|
|
|
|
kind: LinkKind.UserId,
|
|
|
|
identifier: link.arguments.sharer,
|
|
|
|
arguments: { vias: [] },
|
|
|
|
originalLink: '',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
) : null;
|
|
|
|
|
2020-08-17 18:48:13 +02:00
|
|
|
return (
|
2020-09-01 10:43:01 +02:00
|
|
|
<InviteTile client={client} link={link}>
|
2020-09-13 18:39:39 +02:00
|
|
|
{sharer}
|
2020-08-17 18:48:13 +02:00
|
|
|
{content}
|
|
|
|
</InviteTile>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default LinkPreview;
|