mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 10:55:57 +08:00
* First pass at configuring localization * Add CI job for translations * Update CI job * Update default value * Update parser config * Update defaults again * try to fix the multiple parsing of a file * Update crowdlin config * Update configs * New Crowdin translations by GitHub Action (#3448) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Point to updated translated files * Tooltip i18n * Run translation job when web components are updated * Commit updated translations * Translations update (#3453) * Update source file strings.json Updated translations * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (English, United States) Updated translations * Commit updated translations * New Crowdin translations by GitHub Action (#3452) Co-authored-by: Owncast <owncast@owncast.online> * chore(deps): update to next config to address build errors * New Crowdin translations by GitHub Action (#3455) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Translations update (#3456) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action (#3457) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Commit updated API documentation * Update translations job * New Crowdin translations by GitHub Action (#3698) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Update Crowdin configuration file * Translations update (#3700) * New translations strings.json (French) Updated translations * New translations strings.json (Italian) Updated translations * Translations update (#3699) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> * New Crowdin translations by GitHub Action (#3701) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Draft: Mark strings for translation. (#3458) * Mark strings for translation. * Mark up strings for translation * fix(web): fix linter warnings --------- Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * do not pull from cowdin via workflow * Commit updated translations * feat: add translations support to admin pages and components (#3977) * feat: add translations support to admin pages and components Added translations support admin main page and its components, help page, handware-info page. Added translations support for LogTable, NewsFeed and StreamHealthOverview components. * update package.json * fix rendering issue * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * Offline banner i18n formatting (#3997) * Fix "Last live ago" string formatting with i18n interpolation * Change some base translation jsons to use i18n interpolation * Linting fix * chore(js): ignore i18n pkgs in knip * fix(test): fix browser ui test * fix(js): remove unused var --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: taintedcypher <119351153+taintedcypher@users.noreply.github.com> Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Sufyaan Khateeb <81009832+SufyaanKhateeb@users.noreply.github.com> Co-authored-by: mahmed2000 <mahmad2000@protonmail.com>
274 lines
7.7 KiB
TypeScript
274 lines
7.7 KiB
TypeScript
import React, { useState, useEffect, ReactElement } from 'react';
|
|
import { Table, Typography, Button } from 'antd';
|
|
import classNames from 'classnames';
|
|
import { ColumnsType } from 'antd/es/table';
|
|
import { format } from 'date-fns';
|
|
|
|
import dynamic from 'next/dynamic';
|
|
import { useTranslation } from 'next-export-i18n';
|
|
import { MessageType } from '../../../types/chat';
|
|
import {
|
|
CHAT_HISTORY,
|
|
fetchData,
|
|
FETCH_INTERVAL,
|
|
UPDATE_CHAT_MESSGAE_VIZ,
|
|
} from '../../../utils/apis';
|
|
import { isEmptyObject } from '../../../utils/format';
|
|
import { MessageVisiblityToggle } from '../../../components/admin/MessageVisiblityToggle';
|
|
import { UserPopover } from '../../../components/admin/UserPopover';
|
|
|
|
import { AdminLayout } from '../../../components/layouts/AdminLayout';
|
|
|
|
const { Title } = Typography;
|
|
|
|
// Lazy loaded components
|
|
|
|
const CheckCircleFilled = dynamic(() => import('@ant-design/icons/CheckCircleFilled'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const ExclamationCircleFilled = dynamic(() => import('@ant-design/icons/ExclamationCircleFilled'), {
|
|
ssr: false,
|
|
});
|
|
|
|
function createUserNameFilters(messages: MessageType[]) {
|
|
const filtered = messages.reduce((acc, curItem) => {
|
|
const curAuthor = curItem.user.id;
|
|
if (!acc.some(item => item.text === curAuthor)) {
|
|
acc.push({ text: curAuthor, value: curAuthor });
|
|
}
|
|
return acc;
|
|
}, []);
|
|
|
|
// sort by name
|
|
return filtered.sort((a, b) => {
|
|
const nameA = a.text.toUpperCase(); // ignore upper and lowercase
|
|
const nameB = b.text.toUpperCase(); // ignore upper and lowercase
|
|
if (nameA < nameB) {
|
|
return -1;
|
|
}
|
|
if (nameA > nameB) {
|
|
return 1;
|
|
}
|
|
// names must be equal
|
|
return 0;
|
|
});
|
|
}
|
|
export const OUTCOME_TIMEOUT = 3000;
|
|
|
|
export default function Chat() {
|
|
const [messages, setMessages] = useState([]);
|
|
const [selectedRowKeys, setSelectedRows] = useState([]);
|
|
const [bulkProcessing, setBulkProcessing] = useState(false);
|
|
const [bulkOutcome, setBulkOutcome] = useState(null);
|
|
const [bulkAction, setBulkAction] = useState('');
|
|
const { t } = useTranslation();
|
|
let outcomeTimeout = null;
|
|
let chatReloadInterval = null;
|
|
|
|
const getInfo = async () => {
|
|
try {
|
|
const result = await fetchData(CHAT_HISTORY, { auth: true });
|
|
if (isEmptyObject(result)) {
|
|
setMessages([]);
|
|
} else {
|
|
setMessages(result);
|
|
}
|
|
} catch (error) {
|
|
console.log('==== error', error);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
getInfo();
|
|
|
|
chatReloadInterval = setInterval(() => {
|
|
getInfo();
|
|
}, FETCH_INTERVAL);
|
|
|
|
return () => {
|
|
clearTimeout(outcomeTimeout);
|
|
clearTimeout(chatReloadInterval);
|
|
};
|
|
}, []);
|
|
|
|
const nameFilters = createUserNameFilters(messages);
|
|
|
|
const rowSelection = {
|
|
selectedRowKeys,
|
|
onChange: (selectedKeys: string[]) => {
|
|
setSelectedRows(selectedKeys);
|
|
},
|
|
};
|
|
|
|
const updateMessage = message => {
|
|
const messageIndex = messages.findIndex(m => m.id === message.id);
|
|
messages.splice(messageIndex, 1, message);
|
|
setMessages([...messages]);
|
|
};
|
|
|
|
const resetBulkOutcome = () => {
|
|
outcomeTimeout = setTimeout(() => {
|
|
setBulkOutcome(null);
|
|
setBulkAction('');
|
|
}, OUTCOME_TIMEOUT);
|
|
};
|
|
const handleSubmitBulk = async bulkVisibility => {
|
|
setBulkProcessing(true);
|
|
const result = await fetchData(UPDATE_CHAT_MESSGAE_VIZ, {
|
|
auth: true,
|
|
method: 'POST',
|
|
data: {
|
|
visible: bulkVisibility,
|
|
idArray: selectedRowKeys,
|
|
},
|
|
});
|
|
|
|
if (result.success && result.message === 'changed') {
|
|
setBulkOutcome(<CheckCircleFilled />);
|
|
resetBulkOutcome();
|
|
|
|
// update messages
|
|
const updatedList = [...messages];
|
|
selectedRowKeys.map(key => {
|
|
const messageIndex = updatedList.findIndex(m => m.id === key);
|
|
const newMessage = { ...messages[messageIndex], visible: bulkVisibility };
|
|
updatedList.splice(messageIndex, 1, newMessage);
|
|
return null;
|
|
});
|
|
setMessages(updatedList);
|
|
setSelectedRows([]);
|
|
} else {
|
|
setBulkOutcome(<ExclamationCircleFilled />);
|
|
resetBulkOutcome();
|
|
}
|
|
setBulkProcessing(false);
|
|
};
|
|
const handleSubmitBulkShow = () => {
|
|
setBulkAction('show');
|
|
handleSubmitBulk(true);
|
|
};
|
|
const handleSubmitBulkHide = () => {
|
|
setBulkAction('hide');
|
|
handleSubmitBulk(false);
|
|
};
|
|
|
|
const chatColumns: ColumnsType<MessageType> = [
|
|
{
|
|
title: t('Time'),
|
|
dataIndex: 'timestamp',
|
|
key: 'timestamp',
|
|
className: 'timestamp-col',
|
|
defaultSortOrder: 'descend',
|
|
render: timestamp => {
|
|
const dateObject = new Date(timestamp);
|
|
return format(dateObject, 'PP pp');
|
|
},
|
|
sorter: (a, b) => new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime(),
|
|
width: 90,
|
|
},
|
|
{
|
|
title: t('User'),
|
|
dataIndex: 'user',
|
|
key: 'user',
|
|
className: 'name-col',
|
|
filters: nameFilters,
|
|
onFilter: (value, record) => record.user.id === value,
|
|
sorter: (a, b) => a.user.displayName.localeCompare(b.user.displayName),
|
|
sortDirections: ['ascend', 'descend'],
|
|
ellipsis: true,
|
|
render: user => {
|
|
const { displayName } = user;
|
|
return <UserPopover user={user}>{displayName}</UserPopover>;
|
|
},
|
|
width: 110,
|
|
},
|
|
{
|
|
title: t('Message'),
|
|
dataIndex: 'body',
|
|
key: 'body',
|
|
className: 'message-col',
|
|
width: 320,
|
|
render: body => (
|
|
<div
|
|
className="message-contents"
|
|
// eslint-disable-next-line react/no-danger
|
|
dangerouslySetInnerHTML={{ __html: body }}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
title: '',
|
|
dataIndex: 'hiddenAt',
|
|
key: 'hiddenAt',
|
|
className: 'toggle-col',
|
|
filters: [
|
|
{ text: t('Visible messages'), value: true },
|
|
{ text: t('Hidden messages'), value: false },
|
|
],
|
|
onFilter: (value, record) => record.visible === value,
|
|
render: (hiddenAt, record) => (
|
|
<MessageVisiblityToggle isVisible={!hiddenAt} message={record} setMessage={updateMessage} />
|
|
),
|
|
width: 30,
|
|
},
|
|
];
|
|
|
|
const bulkDivClasses = classNames({
|
|
'bulk-editor': true,
|
|
active: selectedRowKeys.length,
|
|
});
|
|
|
|
return (
|
|
<div className="chat-messages">
|
|
<Title>{t('Chat Messages')}</Title>
|
|
<p>{t('Manage the messages from viewers that show up on your stream.')}</p>
|
|
<div className={bulkDivClasses}>
|
|
<span className="label">
|
|
{t('Check multiple messages to change their visibility to:')}{' '}
|
|
</span>
|
|
|
|
<Button
|
|
type="primary"
|
|
size="small"
|
|
shape="round"
|
|
className="button"
|
|
loading={bulkAction === 'show' && bulkProcessing}
|
|
icon={bulkAction === 'show' && bulkOutcome}
|
|
disabled={!selectedRowKeys.length || (bulkAction && bulkAction !== 'show')}
|
|
onClick={handleSubmitBulkShow}
|
|
>
|
|
{t('Show')}
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
size="small"
|
|
shape="round"
|
|
className="button"
|
|
loading={bulkAction === 'hide' && bulkProcessing}
|
|
icon={bulkAction === 'hide' && bulkOutcome}
|
|
disabled={!selectedRowKeys.length || (bulkAction && bulkAction !== 'hide')}
|
|
onClick={handleSubmitBulkHide}
|
|
>
|
|
{t('Hide')}
|
|
</Button>
|
|
</div>
|
|
<Table
|
|
size="small"
|
|
className="table-container"
|
|
pagination={{ defaultPageSize: 100, showSizeChanger: true }}
|
|
scroll={{ y: 540 }}
|
|
rowClassName={record => (record.hiddenAt ? 'hidden' : '')}
|
|
dataSource={messages}
|
|
columns={chatColumns}
|
|
rowKey={row => row.id}
|
|
rowSelection={rowSelection}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Chat.getLayout = function getLayout(page: ReactElement) {
|
|
return <AdminLayout page={page} />;
|
|
};
|