mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-04 12:32:28 +02:00
55 lines
2.3 KiB
TypeScript
55 lines
2.3 KiB
TypeScript
import * as React from 'react';
|
|
import { useRecoilState, useRecoilValue } from 'recoil';
|
|
import { ViewAtom, SettingsSelector } from '../../state';
|
|
import { ViewListIcon, ViewGridIcon } from '@heroicons/react/solid';
|
|
import { Messenger } from '@estruyf/vscode/dist/client';
|
|
import { DashboardMessage } from '../../DashboardMessage';
|
|
import { DashboardViewType } from '../../models';
|
|
import useThemeColors from '../../hooks/useThemeColors';
|
|
|
|
export interface IViewSwitchProps {}
|
|
|
|
export const ViewSwitch: React.FunctionComponent<IViewSwitchProps> = (
|
|
props: React.PropsWithChildren<IViewSwitchProps>
|
|
) => {
|
|
const [view, setView] = useRecoilState(ViewAtom);
|
|
const settings = useRecoilValue(SettingsSelector);
|
|
const { getColors } = useThemeColors();
|
|
|
|
const toggleView = () => {
|
|
const newView =
|
|
view === DashboardViewType.Grid ? DashboardViewType.List : DashboardViewType.Grid;
|
|
setView(newView);
|
|
Messenger.send(DashboardMessage.setPageViewType, newView);
|
|
};
|
|
|
|
React.useEffect(() => {
|
|
if (settings?.pageViewType) {
|
|
setView(settings?.pageViewType);
|
|
}
|
|
}, [settings?.pageViewType]);
|
|
|
|
return (
|
|
<div className={`flex rounded-sm lg:mb-1 ${getColors('bg-vulcan-50', 'bg-[var(--vscode-button-secondaryBackground)]')}`}>
|
|
<button
|
|
className={`flex items-center px-2 py-1 rounded-l-sm ${
|
|
view === DashboardViewType.Grid ? getColors('bg-teal-500 text-vulcan-500', 'bg-[var(--vscode-button-background)] text-[var(--vscode-button-foreground)]') : 'text-[var(--vscode-button-secondaryForeground)] hover:bg-[var(--vscode-button-secondaryHoverBackground)]'
|
|
}`}
|
|
onClick={toggleView}
|
|
>
|
|
<ViewGridIcon className={`w-4 h-4`} />
|
|
<span className={`sr-only`}>Change to grid</span>
|
|
</button>
|
|
<button
|
|
className={`flex items-center px-2 py-1 rounded-r-sm ${
|
|
view === DashboardViewType.List ? getColors('bg-teal-500 text-vulcan-500', 'bg-[var(--vscode-button-background)] text-[var(--vscode-button-foreground)]') : 'text-[var(--vscode-button-secondaryForeground)] hover:bg-[var(--vscode-button-secondaryHoverBackground)]'
|
|
}`}
|
|
onClick={toggleView}
|
|
>
|
|
<ViewListIcon className={`w-4 h-4`} />
|
|
<span className={`sr-only`}>Change to list</span>
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|