mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 18:13:31 +00:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import isElectron from 'is-electron';
|
|
import { FileInput, Text, Button } from '/@/renderer/components';
|
|
|
|
const localSettings = isElectron() ? window.electron.localSettings : null;
|
|
|
|
export const MpvRequired = () => {
|
|
const [mpvPath, setMpvPath] = useState('');
|
|
const handleSetMpvPath = (e: File) => {
|
|
localSettings.set('mpv_path', e.path);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const getMpvPath = async () => {
|
|
if (!isElectron()) return setMpvPath('');
|
|
const mpvPath = localSettings.get('mpv_path') as string;
|
|
return setMpvPath(mpvPath);
|
|
};
|
|
|
|
getMpvPath();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Text size="lg">Set your MPV executable location below and restart the application.</Text>
|
|
<Text>
|
|
MPV is available at the following:{' '}
|
|
<a
|
|
href="https://mpv.io/installation/"
|
|
rel="noreferrer"
|
|
target="_blank"
|
|
>
|
|
https://mpv.io/
|
|
</a>
|
|
</Text>
|
|
<FileInput
|
|
placeholder={mpvPath}
|
|
onChange={handleSetMpvPath}
|
|
/>
|
|
<Button onClick={() => localSettings.restart()}>Restart</Button>
|
|
</>
|
|
);
|
|
};
|