/* Copyright 2022 Michael Telatynski <7t3chguy@gmail.com> 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, { useContext, useEffect, useMemo, useState } from "react"; import { IContent, MatrixEvent } from "matrix-js-sdk/src/models/event"; import classNames from "classnames"; import { _t } from "../../../../languageHandler"; import BaseTool, { DevtoolsContext, IDevtoolsProps } from "./BaseTool"; import MatrixClientContext from "../../../../contexts/MatrixClientContext"; import { EventEditor, EventViewer, eventTypeField, stateKeyField, IEditorProps, stringify } from "./Event"; import FilteredList from "./FilteredList"; export const StateEventEditor = ({ mxEvent, onBack }: IEditorProps) => { const context = useContext(DevtoolsContext); const cli = useContext(MatrixClientContext); const fields = useMemo(() => [ eventTypeField(mxEvent?.getType()), stateKeyField(mxEvent?.getStateKey()), ], [mxEvent]); const onSend = ([eventType, stateKey]: string[], content?: IContent) => { return cli.sendStateEvent(context.room.roomId, eventType, content, stateKey); }; const defaultContent = mxEvent ? stringify(mxEvent.getContent()) : undefined; return ; }; interface StateEventButtonProps { label: string; onClick(): void; } const StateEventButton = ({ label, onClick }: StateEventButtonProps) => { const trimmed = label.trim(); return ; }; interface IEventTypeProps extends Pick { eventType: string; } const RoomStateExplorerEventType = ({ eventType, onBack }: IEventTypeProps) => { const context = useContext(DevtoolsContext); const [query, setQuery] = useState(""); const [event, setEvent] = useState(null); const events = context.room.currentState.events.get(eventType)!; useEffect(() => { if (events.size === 1 && events.has("")) { setEvent(events.get("")!); } else { setEvent(null); } }, [events]); if (event) { const _onBack = () => { if (events?.size === 1 && events.has("")) { onBack(); } else { setEvent(null); } }; return ; } return { Array.from(events.entries()).map(([stateKey, ev]) => ( setEvent(ev)} /> )) } ; }; export const RoomStateExplorer = ({ onBack, setTool }: IDevtoolsProps) => { const context = useContext(DevtoolsContext); const [query, setQuery] = useState(""); const [eventType, setEventType] = useState(null); const events = context.room.currentState.events; if (eventType !== null) { const onBack = () => { setEventType(null); }; return ; } const onAction = async () => { setTool(_t("Send custom state event"), StateEventEditor); }; return { Array.from(events.keys()).map((eventType) => ( setEventType(eventType)} /> )) } ; };