mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
9bd012b7cb
Port 5fad7bd58a
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
24 lines
788 B
TypeScript
24 lines
788 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
import React from 'react';
|
|
|
|
import type { History } from 'history';
|
|
import { createBrowserHistory } from 'history';
|
|
import { Router as OriginalRouter } from 'react-router';
|
|
|
|
import { layoutFromWindow } from 'flavours/glitch/is_mobile';
|
|
|
|
const browserHistory = createBrowserHistory();
|
|
const originalPush = browserHistory.push.bind(browserHistory);
|
|
|
|
browserHistory.push = (path: string, state: History.LocationState) => {
|
|
if (layoutFromWindow() === 'multi-column' && !path.startsWith('/deck')) {
|
|
originalPush(`/deck${path}`, state);
|
|
} else {
|
|
originalPush(path, state);
|
|
}
|
|
};
|
|
|
|
export const Router: React.FC<PropsWithChildren> = ({ children }) => {
|
|
return <OriginalRouter history={browserHistory}>{children}</OriginalRouter>;
|
|
};
|