phanpy/src/compose.jsx

99 lines
2.1 KiB
React
Raw Normal View History

import './index.css';
import './app.css';
2024-06-14 08:34:50 +08:00
import './polyfills';
2024-08-13 15:26:23 +08:00
import { i18n } from '@lingui/core';
import { t, Trans } from '@lingui/macro';
import { I18nProvider } from '@lingui/react';
import { render } from 'preact';
import { useEffect, useState } from 'preact/hooks';
import ComposeSuspense from './components/compose-suspense';
2024-08-13 15:26:23 +08:00
import { initActivateLang } from './utils/lang';
import { initStates } from './utils/states';
import useTitle from './utils/useTitle';
2024-08-13 15:26:23 +08:00
initActivateLang();
if (window.opener) {
console = window.opener.console;
}
function App() {
const [uiState, setUIState] = useState('default');
const { editStatus, replyToStatus, draftStatus } = window.__COMPOSE__ || {};
useTitle(
editStatus
2024-08-13 15:26:23 +08:00
? t`Editing source status`
: replyToStatus
2024-08-13 15:26:23 +08:00
? t`Replying to @${
replyToStatus.account?.acct || replyToStatus.account?.username
}`
2024-08-13 15:26:23 +08:00
: t`Compose`,
);
useEffect(() => {
initStates();
}, []);
useEffect(() => {
if (uiState === 'closed') {
try {
// Focus parent window
window.opener.focus();
} catch (e) {}
window.close();
}
}, [uiState]);
if (uiState === 'closed') {
return (
2022-12-14 21:48:17 +08:00
<div class="box">
2024-08-13 15:26:23 +08:00
<p>
<Trans>You may close this page now.</Trans>
</p>
<p>
<button
onClick={() => {
window.close();
}}
>
2024-08-13 15:26:23 +08:00
<Trans>Close window</Trans>
</button>
</p>
</div>
);
}
2023-01-11 17:07:47 +08:00
console.debug('OPEN COMPOSE');
return (
<ComposeSuspense
editStatus={editStatus}
replyToStatus={replyToStatus}
draftStatus={draftStatus}
standalone
hasOpener={window.opener}
onClose={(results) => {
const { newStatus, fn = () => {} } = results || {};
try {
if (newStatus) {
window.opener.__STATES__.reloadStatusPage++;
}
fn();
setUIState('closed');
} catch (e) {}
}}
/>
);
}
2024-08-13 15:26:23 +08:00
render(
<I18nProvider i18n={i18n}>
<App />
</I18nProvider>,
document.getElementById('app-standalone'),
);