mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-20 22:23:02 +03:00
npm install was failing with ERESOLVE: the lockfile pinned storybook 10.5.7 and vitest 4.1.10 as peers while package.json asked for ^10.5.9 and ^4.1.11, and npm would not move either. Neither npm update, a targeted install, nor --package-lock-only broke the cycle, so node_modules and package-lock.json were regenerated from scratch (601 packages, 0 vulnerabilities). oxlint 1.79.0 then promoted five React Compiler rules into the correctness category, flagging 101 pre-existing sites. 1.78.0 exits 0 on the same tree, so nothing in our code changed - the rule set grew. They are fixed rather than suppressed: - refs (31): latest-value ref writes moved out of render into an effect. onlineClientsRef turned out to be write-only and is gone; expireDiffRef and trafficDiffRef were replaced by reading the values directly. - set-state-in-effect (55): reset-on-open modals now adjust state during render; where an effect mixed a synchronous reset with an async fetch, the reset moved to render and the effect kept only the request. useMediaQuery became useSyncExternalStore. - preserve-manual-memoization (11): optional-chained deps the compiler cannot match, hoisted to locals or dropped where the memo wrapped a string concat. - purity (3): Date.now() in render replaced by a state-backed clock, which also refreshes the expiry tag every 60s instead of freezing it until the next unrelated re-render. - immutability (1): applyClientStatsEvent merged websocket traffic into DBInbound rows in place; it now rebuilds only the rows it touches. Two things fell out of that. clientCount is derived with useMemo instead of an imperative rebuildClientCount() called from five sites, which also fixes a staleness bug where changing the expiry or traffic threshold left the counts alone until some later rebuild. statsVersion existed only to force a re-render after an in-place mutation, is meaningless now that rows are replaced, and nothing read it, so it is removed. Also adds a lint:fix script - oxlint --fix was previously only reachable through the lint-staged hook.
108 lines
2.7 KiB
TypeScript
108 lines
2.7 KiB
TypeScript
import { useCallback, useState } from 'react';
|
|
import { Button, Input, Modal, Tabs, message } from 'antd';
|
|
import { CopyOutlined, DownloadOutlined } from '@ant-design/icons';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import JsonEditor from '@/components/form/JsonEditor';
|
|
import { ClipboardManager, FileManager } from '@/utils';
|
|
|
|
export interface TextModalTab {
|
|
key: string;
|
|
label: string;
|
|
content: string;
|
|
}
|
|
|
|
interface TextModalProps {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
title: string;
|
|
content: string;
|
|
fileName?: string;
|
|
json?: boolean;
|
|
tabs?: TextModalTab[];
|
|
}
|
|
|
|
export default function TextModal({
|
|
open,
|
|
onClose,
|
|
title,
|
|
content,
|
|
fileName = '',
|
|
json = false,
|
|
tabs,
|
|
}: TextModalProps) {
|
|
const { t } = useTranslation();
|
|
const [messageApi, messageContextHolder] = message.useMessage();
|
|
const [activeKey, setActiveKey] = useState('');
|
|
|
|
// Reset on the way out so the next open starts on the first tab; activeTab
|
|
// falls back to tabs[0] whenever activeKey no longer matches.
|
|
const close = useCallback(() => {
|
|
setActiveKey('');
|
|
onClose();
|
|
}, [onClose]);
|
|
|
|
const activeTab = tabs?.find((tab) => tab.key === activeKey) ?? tabs?.[0];
|
|
const activeContent = activeTab ? activeTab.content : content;
|
|
|
|
async function copy() {
|
|
const ok = await ClipboardManager.copyText(activeContent || '');
|
|
if (ok) {
|
|
messageApi.success(t('copied'));
|
|
close();
|
|
}
|
|
}
|
|
|
|
function download() {
|
|
if (!fileName) return;
|
|
FileManager.downloadTextFile(activeContent, fileName);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{messageContextHolder}
|
|
<Modal
|
|
open={open}
|
|
title={title}
|
|
onCancel={close}
|
|
destroyOnHidden
|
|
footer={
|
|
<>
|
|
{fileName && (
|
|
<Button icon={<DownloadOutlined />} onClick={download}>
|
|
{fileName}
|
|
</Button>
|
|
)}
|
|
<Button type="primary" icon={<CopyOutlined />} onClick={copy}>
|
|
{t('copy')}
|
|
</Button>
|
|
</>
|
|
}
|
|
>
|
|
{tabs && tabs.length > 0 && (
|
|
<Tabs
|
|
activeKey={activeTab?.key}
|
|
onChange={setActiveKey}
|
|
items={tabs.map((tab) => ({ key: tab.key, label: tab.label }))}
|
|
/>
|
|
)}
|
|
{json ? (
|
|
<JsonEditor value={activeContent} readOnly minHeight="240px" maxHeight="60vh" />
|
|
) : (
|
|
<Input.TextArea
|
|
aria-label={title}
|
|
value={activeContent}
|
|
readOnly
|
|
autoSize={{ minRows: 10, maxRows: 20 }}
|
|
style={{
|
|
fontFamily: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace',
|
|
fontSize: 12,
|
|
overflowY: 'auto',
|
|
}}
|
|
/>
|
|
)}
|
|
</Modal>
|
|
</>
|
|
);
|
|
}
|