env.esq/src/components/LinkPreview.tsx

114 lines
3.3 KiB
TypeScript
Raw Normal View History

/*
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';
import UserPreview from './UserPreview';
import EventPreview from './EventPreview';
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';
interface IProps {
link: SafeLink;
}
const LOADING: JSX.Element = <>Generating invite</>;
const invite = async ({ link }: { link: SafeLink }): Promise<JSX.Element> => {
2020-08-18 12:07:26 +02:00
// TODO: replace with client fetch
2020-08-18 12:16:31 +02:00
const defaultClient = await client('https://matrix.org');
switch (link.kind) {
case LinkKind.Alias:
return (
<RoomPreviewWithTopic
room={
2020-08-18 12:07:26 +02:00
await getRoomFromAlias(defaultClient, link.identifier)
}
/>
);
case LinkKind.RoomId:
return (
<RoomPreviewWithTopic
2020-08-18 12:07:26 +02:00
room={await getRoomFromId(defaultClient, link.identifier)}
/>
);
case LinkKind.UserId:
return (
<UserPreview
2020-08-18 12:07:26 +02:00
user={await getUser(defaultClient, link.identifier)}
userId={link.identifier}
/>
);
case LinkKind.Permalink:
return (
<EventPreview
2020-08-18 12:07:26 +02:00
room={await getRoomFromPermalink(defaultClient, link)}
event={
await getEvent(
2020-08-18 12:07:26 +02:00
defaultClient,
link.roomLink,
link.eventId
)
}
/>
);
default:
// Todo Implement events
return <></>;
}
};
const LinkPreview: React.FC<IProps> = ({ link }: IProps) => {
const [content, setContent] = useState(LOADING);
useEffect(() => {
(async (): Promise<void> => setContent(await invite({ link })))();
}, [link]);
const [{ clientId }] = useContext(ClientContext);
2020-09-01 10:43:01 +02:00
// Select which client to link to
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;
return (
2020-09-01 10:43:01 +02:00
<InviteTile client={client} link={link}>
{content}
</InviteTile>
);
};
export default LinkPreview;