mirror of
https://github.com/hexastack/hexabot
synced 2025-04-05 05:29:33 +00:00
94 lines
2.8 KiB
TypeScript
94 lines
2.8 KiB
TypeScript
/*
|
|
* Copyright © 2024 Hexastack. All rights reserved.
|
|
*
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
*/
|
|
|
|
import React from "react";
|
|
|
|
import { useTranslation } from "../../hooks/useTranslation";
|
|
import { useColors } from "../../providers/ColorProvider";
|
|
import { Direction, TMessage } from "../../types/message.types";
|
|
import FileIcon from "../icons/FileIcon";
|
|
|
|
import "./FileMessage.scss";
|
|
|
|
interface FileMessageProps {
|
|
message: TMessage;
|
|
}
|
|
|
|
const FileMessage: React.FC<FileMessageProps> = ({ message }) => {
|
|
const { t } = useTranslation();
|
|
const { colors: allColors } = useColors();
|
|
const colors = allColors[message.direction || Direction.received];
|
|
|
|
if (!("type" in message.data)) {
|
|
throw new Error("Unable to detect type for file message");
|
|
}
|
|
|
|
if (
|
|
message.data &&
|
|
message.data.type !== "image" &&
|
|
message.data.type !== "audio" &&
|
|
message.data.type !== "video" &&
|
|
message.data.type !== "file"
|
|
) {
|
|
throw new Error("Uknown type for file message");
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="sc-message--file"
|
|
style={{
|
|
color: colors.text,
|
|
backgroundColor: colors.bg,
|
|
}}
|
|
>
|
|
{message.data.type === "image" && (
|
|
<div className="sc-message--file-icon">
|
|
<img src={message.data.url || ""} className="sc-image" alt="File" />
|
|
</div>
|
|
)}
|
|
{message.data.type === "audio" && (
|
|
<div className="sc-message--file-audio">
|
|
<audio controls>
|
|
<source src={message.data.url} />
|
|
{t("messages.file_message.browser_audio_unsupport")}
|
|
</audio>
|
|
</div>
|
|
)}
|
|
{message.data.type === "video" && (
|
|
<div className="sc-message--file-video">
|
|
<video controls width="100%">
|
|
<source src={message.data.url} />
|
|
{t("messages.file_message.browser_video_unsupport")}
|
|
</video>
|
|
</div>
|
|
)}
|
|
{message.data.type === "file" && (
|
|
<div
|
|
className="sc-message--file-download"
|
|
style={{
|
|
color: colors.text,
|
|
backgroundColor: colors.bg,
|
|
}}
|
|
>
|
|
<a
|
|
href={message.data.url ? message.data.url : "#"}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
download
|
|
>
|
|
<FileIcon />
|
|
{t("messages.file_message.download")}
|
|
</a>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FileMessage;
|