mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
feat(wired-ui): expand advanced wired editors
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
import { FC, useCallback, useEffect, useState } from 'react';
|
||||
import { LocalizeText } from '../../../../api';
|
||||
import { Text } from '../../../../common';
|
||||
import { useWired } from '../../../../hooks';
|
||||
import { WiredSelectorBaseView } from './WiredSelectorBaseView';
|
||||
import { WiredHandItemField } from '../WiredHandItemField';
|
||||
|
||||
export const WiredSelectorUsersHandItemView: FC<{}> = () =>
|
||||
{
|
||||
const [ handItemId, setHandItemId ] = useState(0);
|
||||
const [ filterExisting, setFilterExisting ] = useState(false);
|
||||
const [ invert, setInvert ] = useState(false);
|
||||
const { trigger = null, setIntParams = null } = useWired();
|
||||
|
||||
useEffect(() =>
|
||||
{
|
||||
if(!trigger) return;
|
||||
|
||||
const params = trigger.intData;
|
||||
|
||||
setHandItemId(params.length > 0 ? params[0] : 0);
|
||||
setFilterExisting(params.length > 1 ? (params[1] === 1) : false);
|
||||
setInvert(params.length > 2 ? (params[2] === 1) : false);
|
||||
}, [ trigger ]);
|
||||
|
||||
const save = useCallback(() =>
|
||||
{
|
||||
setIntParams([
|
||||
handItemId,
|
||||
filterExisting ? 1 : 0,
|
||||
invert ? 1 : 0
|
||||
]);
|
||||
}, [ handItemId, filterExisting, invert, setIntParams ]);
|
||||
|
||||
return (
|
||||
<WiredSelectorBaseView hasSpecialInput={ true } requiresFurni={ 0 } save={ save } hideDelay={ true } cardStyle={ { width: 400 } }>
|
||||
<div className="flex flex-col gap-2">
|
||||
<WiredHandItemField handItemId={ handItemId } onChange={ setHandItemId } showCopyButton={ true } />
|
||||
|
||||
<hr className="m-0 bg-dark" />
|
||||
|
||||
<Text bold>{ LocalizeText('wiredfurni.params.selector_options_selector') }</Text>
|
||||
|
||||
<label className="flex items-center gap-2">
|
||||
<input
|
||||
type="checkbox"
|
||||
className="form-check-input"
|
||||
checked={ filterExisting }
|
||||
onChange={ event => setFilterExisting(event.target.checked) } />
|
||||
<Text small>{ LocalizeText('wiredfurni.params.selector_option.0') }</Text>
|
||||
</label>
|
||||
|
||||
<label className="flex items-center gap-2">
|
||||
<input
|
||||
type="checkbox"
|
||||
className="form-check-input"
|
||||
checked={ invert }
|
||||
onChange={ event => setInvert(event.target.checked) } />
|
||||
<Text small>{ LocalizeText('wiredfurni.params.selector_option.1') }</Text>
|
||||
</label>
|
||||
</div>
|
||||
</WiredSelectorBaseView>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user