mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { FC, useEffect, useState } from 'react';
|
|
import { WiredFurniType } from '../../../../api';
|
|
import { useWired } from '../../../../hooks';
|
|
import { WiredConditionBaseView } from './WiredConditionBaseView';
|
|
import { WiredSourcesSelector } from '../WiredSourcesSelector';
|
|
|
|
export const WiredConditionFurniHasAvatarOnView: FC<{}> = props =>
|
|
{
|
|
const { trigger = null, setIntParams = null } = useWired();
|
|
const [ furniSource, setFurniSource ] = useState<number>(() =>
|
|
{
|
|
if(trigger?.intData?.length >= 1) return trigger.intData[0];
|
|
return (trigger?.selectedItems?.length ?? 0) > 0 ? 100 : 0;
|
|
});
|
|
|
|
useEffect(() =>
|
|
{
|
|
if(!trigger) return;
|
|
if(trigger.intData.length >= 1) setFurniSource(trigger.intData[0]);
|
|
else setFurniSource((trigger.selectedItems?.length ?? 0) > 0 ? 100 : 0);
|
|
}, [ trigger ]);
|
|
|
|
const onChangeFurniSource = (next: number) => setFurniSource(next);
|
|
|
|
const save = () => setIntParams([ furniSource ]);
|
|
|
|
const requiresFurni = WiredFurniType.STUFF_SELECTION_OPTION_BY_ID;
|
|
|
|
return (
|
|
<WiredConditionBaseView
|
|
hasSpecialInput={ true }
|
|
requiresFurni={ requiresFurni }
|
|
save={ save }
|
|
footer={ <WiredSourcesSelector showFurni={ true } furniSource={ furniSource } onChangeFurni={ onChangeFurniSource } /> } />
|
|
);
|
|
};
|