mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import { Suspense } from 'react';
|
|
import { FilePath, useLibraryContext } from '@sd/client';
|
|
import { ContextMenu } from '@sd/ui';
|
|
import { Platform, usePlatform } from '~/util/Platform';
|
|
|
|
export default (props: { filePath: FilePath }) => {
|
|
const { getFilePathOpenWithApps, openFilePathWith } = usePlatform();
|
|
|
|
if (!getFilePathOpenWithApps || !openFilePathWith) return null;
|
|
|
|
return (
|
|
<ContextMenu.SubMenu label="Open with">
|
|
<Suspense>
|
|
<Items
|
|
filePath={props.filePath}
|
|
actions={{
|
|
getFilePathOpenWithApps,
|
|
openFilePathWith
|
|
}}
|
|
/>
|
|
</Suspense>
|
|
</ContextMenu.SubMenu>
|
|
);
|
|
};
|
|
|
|
const Items = ({
|
|
filePath,
|
|
actions
|
|
}: {
|
|
filePath: FilePath;
|
|
actions: Required<Pick<Platform, 'getFilePathOpenWithApps' | 'openFilePathWith'>>;
|
|
}) => {
|
|
const { library } = useLibraryContext();
|
|
|
|
const items = useQuery<any[]>(
|
|
['openWith', filePath.id],
|
|
() => actions.getFilePathOpenWithApps(library.uuid, filePath.id),
|
|
{ suspense: true }
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{items.data?.map((d) => (
|
|
<ContextMenu.Item
|
|
key={d.name}
|
|
onClick={() => actions.openFilePathWith(library.uuid, filePath.id, d.url)}
|
|
>
|
|
{d.name}
|
|
</ContextMenu.Item>
|
|
))}
|
|
</>
|
|
);
|
|
};
|