mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-26 23:50:52 +01:00
Update navigator settings
This commit is contained in:
parent
10ae353c02
commit
98fb0084d0
@ -42,7 +42,6 @@
|
|||||||
|
|
||||||
.nitro-room-info {
|
.nitro-room-info {
|
||||||
width: $room-info-width;
|
width: $room-info-width;
|
||||||
max-height: 300px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nitro-room-link {
|
.nitro-room-link {
|
||||||
|
@ -116,7 +116,10 @@ export const NavigatorRoomInfoView: FC<NavigatorRoomInfoViewProps> = props =>
|
|||||||
<Column grow gap={ 1 } overflow="hidden">
|
<Column grow gap={ 1 } overflow="hidden">
|
||||||
<Flex gap={ 1 }>
|
<Flex gap={ 1 }>
|
||||||
<Column grow gap={ 1 }>
|
<Column grow gap={ 1 }>
|
||||||
|
<Flex gap={ 1 }>
|
||||||
|
<i onClick={ () => processAction('set_home_room') } className={ 'flex-shrink-0 icon icon-house-small cursor-pointer' + classNames({ ' gray': homeRoomId !== roomInfoData.enteredGuestRoom.roomId }) } />
|
||||||
<Text bold>{ roomInfoData.enteredGuestRoom.roomName }</Text>
|
<Text bold>{ roomInfoData.enteredGuestRoom.roomName }</Text>
|
||||||
|
</Flex>
|
||||||
{ roomInfoData.enteredGuestRoom.showOwner &&
|
{ roomInfoData.enteredGuestRoom.showOwner &&
|
||||||
<Flex alignItems="center" gap={ 1 }>
|
<Flex alignItems="center" gap={ 1 }>
|
||||||
<Text variant="muted">{ LocalizeText('navigator.roomownercaption') }</Text>
|
<Text variant="muted">{ LocalizeText('navigator.roomownercaption') }</Text>
|
||||||
@ -129,25 +132,20 @@ export const NavigatorRoomInfoView: FC<NavigatorRoomInfoViewProps> = props =>
|
|||||||
<Text variant="muted">{ LocalizeText('navigator.roomrating') }</Text>
|
<Text variant="muted">{ LocalizeText('navigator.roomrating') }</Text>
|
||||||
<Text>{ roomInfoData.enteredGuestRoom.score }</Text>
|
<Text>{ roomInfoData.enteredGuestRoom.score }</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
{
|
{ (roomInfoData.enteredGuestRoom.tags.length > 0) &&
|
||||||
<Flex alignItems="center" gap={ 1 }>
|
<Flex alignItems="center" gap={ 1 }>
|
||||||
<Text pointer className="bg-muted rounded p-1" onClick={ event => processAction('navigator_search_tag', 'test') }>#test</Text>
|
{ roomInfoData.enteredGuestRoom.tags.map(tag =>
|
||||||
{ (roomInfoData.enteredGuestRoom.tags.length > 0) && roomInfoData.enteredGuestRoom.tags.map(tag =>
|
|
||||||
{
|
{
|
||||||
return <Text key={ tag } pointer className="bg-muted rounded p-1" onClick={ event => processAction('navigator_search_tag', tag) }>#{ tag }</Text>
|
return <Text key={ tag } pointer className="bg-muted rounded p-1" onClick={ event => processAction('navigator_search_tag', tag) }>#{ tag }</Text>
|
||||||
}) }
|
}) }
|
||||||
</Flex> }
|
</Flex> }
|
||||||
</Column>
|
</Column>
|
||||||
<Column gap={ 1 }>
|
<Column>
|
||||||
<Flex gap={ 1 }>
|
<Flex alignItems="center" gap={ 1 }>
|
||||||
<i onClick={ () => processAction('set_home_room') } className={ 'flex-shrink-0 icon icon-house-small cursor-pointer' + classNames({ ' gray': homeRoomId !== roomInfoData.enteredGuestRoom.roomId }) } />
|
|
||||||
<FontAwesomeIcon icon="link" title={ LocalizeText('navigator.embed.caption') } className="cursor-pointer" onClick={ event => DispatchUiEvent(new NavigatorEvent(NavigatorEvent.TOGGLE_ROOM_LINK)) } />
|
<FontAwesomeIcon icon="link" title={ LocalizeText('navigator.embed.caption') } className="cursor-pointer" onClick={ event => DispatchUiEvent(new NavigatorEvent(NavigatorEvent.TOGGLE_ROOM_LINK)) } />
|
||||||
</Flex>
|
|
||||||
{ hasPermission('settings') &&
|
{ hasPermission('settings') &&
|
||||||
<Flex gap={ 1 }>
|
<i className="icon icon-cog cursor-pointer" title={ LocalizeText('navigator.room.popup.info.room.settings') } onClick={ event => processAction('open_room_settings') } /> }
|
||||||
<FontAwesomeIcon icon="cogs" title={ LocalizeText('navigator.room.popup.info.room.settings') } className="cursor-pointer" onClick={ event => processAction('open_room_settings') } />
|
</Flex>
|
||||||
<FontAwesomeIcon icon="tools" title={ LocalizeText('open.floor.plan.editor') } className="cursor-pointer" onClick={ event => processAction('open_floorplan_editor') } />
|
|
||||||
</Flex> }
|
|
||||||
</Column>
|
</Column>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Text overflow="auto" style={ { maxHeight: 50 } }>{ roomInfoData.enteredGuestRoom.description }</Text>
|
<Text overflow="auto" style={ { maxHeight: 50 } }>{ roomInfoData.enteredGuestRoom.description }</Text>
|
||||||
@ -173,6 +171,9 @@ export const NavigatorRoomInfoView: FC<NavigatorRoomInfoViewProps> = props =>
|
|||||||
<Button onClick={ () => processAction('toggle_mute') }>
|
<Button onClick={ () => processAction('toggle_mute') }>
|
||||||
{ LocalizeText(isRoomMuted ? 'navigator.muteall_on' : 'navigator.muteall_off') }
|
{ LocalizeText(isRoomMuted ? 'navigator.muteall_on' : 'navigator.muteall_off') }
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button onClick={ () => processAction('open_floorplan_editor') }>
|
||||||
|
{ LocalizeText('open.floor.plan.editor') }
|
||||||
|
</Button>
|
||||||
</> }
|
</> }
|
||||||
</Column>
|
</Column>
|
||||||
</> }
|
</> }
|
||||||
|
Loading…
Reference in New Issue
Block a user