mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-22 22:30:52 +01:00
Clear confirmation on recipe selected
This commit is contained in:
parent
8d076b2b1a
commit
5168eed641
@ -1,5 +1,5 @@
|
|||||||
import { CraftingRecipeIngredientParser, RoomObjectCategory } from '@nitrots/nitro-renderer';
|
import { CraftingRecipeIngredientParser, RoomObjectCategory } from '@nitrots/nitro-renderer';
|
||||||
import { FC, useMemo, useState } from 'react';
|
import { FC, useEffect, useMemo, useState } from 'react';
|
||||||
import { GetRoomEngine, IsOwnerOfFurniture, LocalizeText } from '../../../../api';
|
import { GetRoomEngine, IsOwnerOfFurniture, LocalizeText } from '../../../../api';
|
||||||
import { AutoGrid, Button, Column, Flex, LayoutGridItem, LayoutLoadingSpinnerView, NitroCardContentView, NitroCardHeaderView, NitroCardView } from '../../../../common';
|
import { AutoGrid, Button, Column, Flex, LayoutGridItem, LayoutLoadingSpinnerView, NitroCardContentView, NitroCardHeaderView, NitroCardView } from '../../../../common';
|
||||||
import { useFurnitureCraftingWidget, useRoom } from '../../../../hooks';
|
import { useFurnitureCraftingWidget, useRoom } from '../../../../hooks';
|
||||||
@ -11,6 +11,11 @@ export const FurnitureCraftingView: FC<{}> = props =>
|
|||||||
|
|
||||||
const [ waitingToConfirm, setWaitingToConfirm ] = useState(false);
|
const [ waitingToConfirm, setWaitingToConfirm ] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() =>
|
||||||
|
{
|
||||||
|
setWaitingToConfirm(false);
|
||||||
|
}, [ selectedRecipe ]);
|
||||||
|
|
||||||
const isOwner = useMemo(() =>
|
const isOwner = useMemo(() =>
|
||||||
{
|
{
|
||||||
const roomObject = GetRoomEngine().getRoomObject(roomSession.roomId, objectId, RoomObjectCategory.FLOOR);
|
const roomObject = GetRoomEngine().getRoomObject(roomSession.roomId, objectId, RoomObjectCategory.FLOOR);
|
||||||
|
Loading…
Reference in New Issue
Block a user