be5243f5f8
* Bump next from 10.2.3 to 11.0.1 Bumps [next](https://github.com/vercel/next.js) from 10.2.3 to 11.0.1. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v10.2.3...v11.0.1) --- updated-dependencies: - dependency-name: next dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * 🚨 apply automatic linting * 🎨 remove unused imports * 🔇 allow console.* to give more debugging options * 🎨 move stuff around to reduce linter messages * 🚨 use destructuring so lint won't complain * 📌 link Chartkick and Chart.js Commit uses the linking code which was previously imported with `import "chartkick/chart.js" [1]. Next did not like the import path, but this does works now. ¯\_(ツ)_/¯ [1]: https://github.com/ankane/chartkick.js/blob/master/chart.js/chart.esm.js Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
93 lines
2.5 KiB
TypeScript
93 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 } 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/chat/messages';
|
|
import { isEmptyObject } from '../utils/format';
|
|
|
|
interface MessageToggleProps {
|
|
isVisible: boolean;
|
|
message: MessageType;
|
|
setMessage: (message: MessageType) => void;
|
|
}
|
|
|
|
export default function MessageVisiblityToggle({
|
|
isVisible,
|
|
message,
|
|
setMessage,
|
|
}: MessageToggleProps) {
|
|
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>
|
|
);
|
|
}
|