mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
d1f3fffe2f
* refactor: move/rename BanUserButton file * refactor: move/rename Chart file * refactor: update generic component filenames to PascalCase * refactor: update config component filenames to PascalCase * refactor: update AdminLayout component filename to PascalCase * refactor: update/move VideoJS component * chore(eslint): disable bad react/require-default-props rule * refactor: normalize ActionButton component * refactor: normalize ActionButtonRow component * refactor: normalize FollowButton component * refactor: normalize NotifyButton component * refactor: normalize ChatActionMessage component * refactor: normalize ChatContainer component * refactor: normalize ChatJoinMessage component * refactor: normalize ChatModerationActionMenu component * refactor: normalize ChatModerationDetailsModal component * refactor: normalize ChatModeratorNotification component * refactor: normalize ChatSocialMessage component * refactor: normalize ChatSystemMessage component * refactor: normalize ChatTextField component * refactor: normalize ChatUserBadge component * refactor: normalize ChatUserMessage component * refactor: normalize ContentHeader component * refactor: normalize OwncastLogo component * refactor: normalize UserDropdown component * chore(eslint): modify react/function-component-definition rule * refactor: normalize CodecSelector component * refactor: update a bunch of functional components using eslint * refactor: update a bunch of functional components using eslint, pt2 * refactor: update a bunch of functional components using eslint, pt3 * refactor: replace all component->component default imports with named imports * refactor: replace all component-stories->component default imports with named imports * refactor: remove default exports from most components * chore(eslint): add eslint config files for the components and pages dirs * fix: use-before-define error in ChatContainer * Fix ChatContainer import * Only process .tsx files in Next builds Co-authored-by: Gabe Kangas <gabek@real-ity.com>
92 lines
2.5 KiB
TypeScript
92 lines
2.5 KiB
TypeScript
// Custom component for AntDesign Button that makes an api call, then displays a confirmation icon upon
|
|
import React, { useState, useEffect, FC } from 'react';
|
|
import { Button, Tooltip } from 'antd';
|
|
import {
|
|
EyeOutlined,
|
|
EyeInvisibleOutlined,
|
|
CheckCircleFilled,
|
|
ExclamationCircleFilled,
|
|
} from '@ant-design/icons';
|
|
import { fetchData, UPDATE_CHAT_MESSGAE_VIZ } from '../utils/apis';
|
|
import { MessageType } from '../types/chat';
|
|
import { OUTCOME_TIMEOUT } from '../pages/admin/chat/messages';
|
|
import { isEmptyObject } from '../utils/format';
|
|
|
|
export type MessageToggleProps = {
|
|
isVisible: boolean;
|
|
message: MessageType;
|
|
setMessage: (message: MessageType) => void;
|
|
};
|
|
|
|
export const MessageVisiblityToggle: FC<MessageToggleProps> = ({
|
|
isVisible,
|
|
message,
|
|
setMessage,
|
|
}) => {
|
|
if (!message || isEmptyObject(message)) {
|
|
return null;
|
|
}
|
|
|
|
let outcomeTimeout = null;
|
|
const [outcome, setOutcome] = useState(0);
|
|
|
|
const { id: messageId } = message || {};
|
|
|
|
const resetOutcome = () => {
|
|
outcomeTimeout = setTimeout(() => {
|
|
setOutcome(0);
|
|
}, OUTCOME_TIMEOUT);
|
|
};
|
|
|
|
useEffect(() => () => {
|
|
clearTimeout(outcomeTimeout);
|
|
});
|
|
|
|
const updateChatMessage = async () => {
|
|
clearTimeout(outcomeTimeout);
|
|
setOutcome(0);
|
|
const result = await fetchData(UPDATE_CHAT_MESSGAE_VIZ, {
|
|
auth: true,
|
|
method: 'POST',
|
|
data: {
|
|
visible: !isVisible,
|
|
idArray: [messageId],
|
|
},
|
|
});
|
|
|
|
if (result.success && result.message === 'changed') {
|
|
setMessage({ ...message, visible: !isVisible });
|
|
setOutcome(1);
|
|
} else {
|
|
setMessage({ ...message, visible: isVisible });
|
|
setOutcome(-1);
|
|
}
|
|
resetOutcome();
|
|
};
|
|
|
|
let outcomeIcon = <CheckCircleFilled style={{ color: 'transparent' }} />;
|
|
if (outcome) {
|
|
outcomeIcon =
|
|
outcome > 0 ? (
|
|
<CheckCircleFilled style={{ color: 'var(--ant-success)' }} />
|
|
) : (
|
|
<ExclamationCircleFilled style={{ color: 'var(--ant-warning)' }} />
|
|
);
|
|
}
|
|
|
|
const toolTipMessage = `Click to ${isVisible ? 'hide' : 'show'} this message`;
|
|
return (
|
|
<div className={`toggle-switch ${isVisible ? '' : 'hidden'}`}>
|
|
<span className="outcome-icon">{outcomeIcon}</span>
|
|
<Tooltip title={toolTipMessage} placement="topRight">
|
|
<Button
|
|
shape="circle"
|
|
size="small"
|
|
type="text"
|
|
icon={isVisible ? <EyeOutlined /> : <EyeInvisibleOutlined />}
|
|
onClick={updateChatMessage}
|
|
/>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
};
|