77670eb369
* Add Actions to ViewModel utility types and specify `this: void` signature Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add https://typescript-eslint.io/rules/unbound-method/ linter to shared-components also fix stray lint config which doesn't apply to SC Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add https://typescript-eslint.io/rules/unbound-method/ linter to element-web Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix genuine issues identified by the linter Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Specify this:void on i18napi Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update Module API Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add comment for MapToVoidThis Added utility type to map VM actions to unbound functions. --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { type MatrixClient, type Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { type RoomPermalinkCreator } from "../../../utils/permalinks/Permalinks";
|
|
import { PollHistory } from "../polls/pollHistory/PollHistory";
|
|
import BaseDialog from "./BaseDialog";
|
|
|
|
type PollHistoryDialogProps = {
|
|
room: Room;
|
|
matrixClient: MatrixClient;
|
|
permalinkCreator: RoomPermalinkCreator;
|
|
onFinished(this: void): void;
|
|
};
|
|
|
|
export const PollHistoryDialog: React.FC<PollHistoryDialogProps> = ({
|
|
room,
|
|
matrixClient,
|
|
permalinkCreator,
|
|
onFinished,
|
|
}) => {
|
|
// @TODO hide dialog title somehow
|
|
return (
|
|
<BaseDialog onFinished={onFinished}>
|
|
<PollHistory
|
|
room={room}
|
|
matrixClient={matrixClient}
|
|
permalinkCreator={permalinkCreator}
|
|
onFinished={onFinished}
|
|
/>
|
|
</BaseDialog>
|
|
);
|
|
};
|