3d46f47817
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unsafe-return,
|
|
@typescript-eslint/no-explicit-any,
|
|
@typescript-eslint/no-unsafe-assignment */
|
|
|
|
import { useEffect, useCallback } from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { useRenderSignal } from 'mastodon/../hooks/useRenderSignal';
|
|
import { fetchStatus, toggleStatusSpoilers } from 'mastodon/actions/statuses';
|
|
import { hydrateStore } from 'mastodon/actions/store';
|
|
import { Router } from 'mastodon/components/router';
|
|
import { DetailedStatus } from 'mastodon/features/status/components/detailed_status';
|
|
import initialState from 'mastodon/initial_state';
|
|
import { IntlProvider } from 'mastodon/locales';
|
|
import { makeGetStatus, makeGetPictureInPicture } from 'mastodon/selectors';
|
|
import { store, useAppSelector, useAppDispatch } from 'mastodon/store';
|
|
|
|
const getStatus = makeGetStatus() as unknown as (arg0: any, arg1: any) => any;
|
|
const getPictureInPicture = makeGetPictureInPicture() as unknown as (
|
|
arg0: any,
|
|
arg1: any,
|
|
) => any;
|
|
|
|
const Embed: React.FC<{ id: string }> = ({ id }) => {
|
|
const status = useAppSelector((state) => getStatus(state, { id }));
|
|
const pictureInPicture = useAppSelector((state) =>
|
|
getPictureInPicture(state, { id }),
|
|
);
|
|
const domain = useAppSelector((state) => state.meta.get('domain'));
|
|
const dispatch = useAppDispatch();
|
|
const dispatchRenderSignal = useRenderSignal();
|
|
|
|
useEffect(() => {
|
|
dispatch(fetchStatus(id, false, false));
|
|
}, [dispatch, id]);
|
|
|
|
const handleToggleHidden = useCallback(() => {
|
|
dispatch(toggleStatusSpoilers(id));
|
|
}, [dispatch, id]);
|
|
|
|
// This allows us to calculate the correct page height for embeds
|
|
if (status) {
|
|
dispatchRenderSignal();
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
const permalink = status?.get('url') as string;
|
|
|
|
return (
|
|
<div className='embed'>
|
|
<DetailedStatus
|
|
status={status}
|
|
domain={domain}
|
|
pictureInPicture={pictureInPicture}
|
|
onToggleHidden={handleToggleHidden}
|
|
withLogo
|
|
/>
|
|
|
|
<a
|
|
className='embed__overlay'
|
|
href={permalink}
|
|
target='_blank'
|
|
rel='noreferrer noopener'
|
|
aria-label=''
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const Status: React.FC<{ id: string }> = ({ id }) => {
|
|
useEffect(() => {
|
|
if (initialState) {
|
|
store.dispatch(hydrateStore(initialState));
|
|
}
|
|
}, []);
|
|
|
|
return (
|
|
<IntlProvider>
|
|
<Provider store={store}>
|
|
<Router>
|
|
<Embed id={id} />
|
|
</Router>
|
|
</Provider>
|
|
</IntlProvider>
|
|
);
|
|
};
|