mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
53 lines
2.4 KiB
TypeScript
53 lines
2.4 KiB
TypeScript
import { FC, useEffect, useState } from 'react';
|
|
import { LocalizeText, WiredFurniType } from '../../../../api';
|
|
import { Text } from '../../../../common';
|
|
import { useWired } from '../../../../hooks';
|
|
import { WiredHandItemField } from '../WiredHandItemField';
|
|
import { WiredConditionBaseView } from './WiredConditionBaseView';
|
|
import { WiredSourcesSelector } from '../WiredSourcesSelector';
|
|
|
|
interface WiredConditionActorHasHandItemViewProps
|
|
{
|
|
negative?: boolean;
|
|
}
|
|
|
|
export const WiredConditionActorHasHandItemView: FC<WiredConditionActorHasHandItemViewProps> = ({ negative = false }) =>
|
|
{
|
|
const [ handItemId, setHandItemId ] = useState(-1);
|
|
const [ quantifier, setQuantifier ] = useState(0);
|
|
const { trigger = null, setIntParams = null } = useWired();
|
|
const [ userSource, setUserSource ] = useState<number>(() =>
|
|
{
|
|
if(trigger?.intData?.length > 1) return trigger.intData[1];
|
|
return 0;
|
|
});
|
|
|
|
const save = () => setIntParams([ handItemId, userSource, quantifier ]);
|
|
|
|
useEffect(() =>
|
|
{
|
|
setHandItemId((trigger.intData.length > 0) ? trigger.intData[0] : 0);
|
|
setUserSource((trigger.intData.length > 1) ? trigger.intData[1] : 0);
|
|
setQuantifier((trigger.intData.length > 2 && trigger.intData[2] === 1) ? 1 : 0);
|
|
}, [ trigger ]);
|
|
|
|
return (
|
|
<WiredConditionBaseView
|
|
hasSpecialInput={ true }
|
|
requiresFurni={ WiredFurniType.STUFF_SELECTION_OPTION_NONE }
|
|
save={ save }
|
|
footer={ <WiredSourcesSelector showUsers={ true } userSource={ userSource } onChangeUsers={ setUserSource } /> }>
|
|
<div className="flex flex-col gap-1">
|
|
<Text bold>{ LocalizeText('wiredfurni.params.quantifier_selection') }</Text>
|
|
{ [ 0, 1 ].map(value => (
|
|
<label key={ value } className="flex items-center gap-1">
|
|
<input checked={ (quantifier === value) } className="form-check-input" name="handItemQuantifier" type="radio" onChange={ () => setQuantifier(value) } />
|
|
<Text>{ LocalizeText(`wiredfurni.params.quantifier.users${ negative ? '.neg' : '' }.${ value }`) }</Text>
|
|
</label>
|
|
)) }
|
|
</div>
|
|
<WiredHandItemField handItemId={ handItemId } onChange={ setHandItemId } showCopyButton={ true } />
|
|
</WiredConditionBaseView>
|
|
);
|
|
};
|