/* 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. */ import React, { useState, useEffect, useContext } from 'react'; 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'; import HomeserverOptions from './HomeserverOptions'; import DefaultPreview from './DefaultPreview'; import { clientMap } from '../clients'; import { getRoomFromId, getRoomFromAlias, getRoomFromPermalink, getUser, } from '../utils/cypher-wrapper'; import { ClientContext } from '../contexts/ClientContext'; import HSContext, { TempHSContext, HSOptions, State as HSState, } from '../contexts/HSContext'; import Toggle from './Toggle'; interface IProps { link: SafeLink; } const invite = async ({ clientAddress, link, }: { clientAddress: string; link: SafeLink; }): Promise => { // TODO: replace with client fetch const defaultClient = await client(clientAddress); switch (link.kind) { case LinkKind.Alias: return ( ); case LinkKind.RoomId: return ( ); case LinkKind.UserId: return ( ); case LinkKind.Permalink: return ( ); default: // Todo Implement events return <>; } }; interface PreviewProps extends IProps { client: string; } const Preview: React.FC = ({ link, client }: PreviewProps) => { const [content, setContent] = useState(); // TODO: support multiple clients with vias useEffect(() => { (async (): Promise => setContent( await invite({ clientAddress: client, link, }) ))(); }, [link, client]); return content; }; function selectedClient(link: SafeLink, hsOptions: HSState): string[] { switch (hsOptions.option) { case HSOptions.Unset: return []; case HSOptions.None: return []; case HSOptions.TrustedHSOnly: return [hsOptions.hs]; case HSOptions.Any: return [ 'https://' + link.identifier.split(':')[1], ...link.arguments.vias, ]; } } const LinkPreview: React.FC = ({ link }: IProps) => { let content: JSX.Element; const [showHSOptions, setShowHSOPtions] = useState(false); const [hsOptions] = useContext(HSContext); const [tempHSState] = useContext(TempHSContext); if ( hsOptions.option === HSOptions.Unset && tempHSState.option === HSOptions.Unset ) { content = ( <> setShowHSOPtions(!showHSOptions)} > Show more information ); if (showHSOptions) { content = ( <> {content} ); } } else { const clients = tempHSState.option !== HSOptions.Unset ? selectedClient(link, tempHSState) : selectedClient(link, hsOptions); content = ; } const [{ clientId }] = useContext(ClientContext); // Select which client to link to const displayClientId = clientId ? clientId : link.arguments.client ? link.arguments.client : null; const client = displayClientId ? clientMap[displayClientId] : null; return ( {content} ); }; export default LinkPreview;