mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 06:40:50 +01:00
Various changes
This commit is contained in:
parent
2fb2431db0
commit
9f04da5157
@ -353,7 +353,7 @@ $container-max-widths: (
|
|||||||
// Set the number of columns and specify the width of the gutters.
|
// Set the number of columns and specify the width of the gutters.
|
||||||
|
|
||||||
$grid-columns: 12 !default;
|
$grid-columns: 12 !default;
|
||||||
$grid-gutter-width: 1rem !default;
|
$grid-gutter-width: 16px !default;
|
||||||
$grid-row-columns: 6 !default;
|
$grid-row-columns: 6 !default;
|
||||||
|
|
||||||
$gutters: $spacers !default;
|
$gutters: $spacers !default;
|
||||||
|
@ -33,6 +33,8 @@ $grid-border-color: $muted;
|
|||||||
$grid-active-bg-color: #ECECEC;
|
$grid-active-bg-color: #ECECEC;
|
||||||
$grid-active-border-color: $white;
|
$grid-active-border-color: $white;
|
||||||
|
|
||||||
|
$toolbar-height: 55px;
|
||||||
|
|
||||||
@import './utils/Styles';
|
@import './utils/Styles';
|
||||||
@import './App';
|
@import './App';
|
||||||
@import './hooks/Styles';
|
@import './hooks/Styles';
|
||||||
|
@ -2,8 +2,41 @@ $nitro-card-header-height: 33px;
|
|||||||
$nitro-card-tabs-height: 33px;
|
$nitro-card-tabs-height: 33px;
|
||||||
$nitro-card-top-height: $nitro-card-header-height + $nitro-card-tabs-height;
|
$nitro-card-top-height: $nitro-card-header-height + $nitro-card-tabs-height;
|
||||||
|
|
||||||
@import './accordion/NitroCardAccordionView';
|
.nitro-card-responsive {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
.nitro-card {
|
||||||
|
pointer-events: all;
|
||||||
|
|
||||||
@import './content/NitroCardContentView';
|
@import './content/NitroCardContentView';
|
||||||
@import './header/NitroCardHeaderView';
|
@import './header/NitroCardHeaderView';
|
||||||
@import './simple-header/NitroCardSimpleHeaderView';
|
@import './simple-header/NitroCardSimpleHeaderView';
|
||||||
@import './tabs/NitroCardTabsView';
|
@import './tabs/NitroCardTabsView';
|
||||||
|
}
|
||||||
|
|
||||||
|
@include media-breakpoint-down(md) {
|
||||||
|
|
||||||
|
.draggable-window {
|
||||||
|
top: 0 !important;
|
||||||
|
left: 0 !important;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
transform: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nitro-card {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&.rounded {
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@import './accordion/NitroCardAccordionView';
|
||||||
|
@ -4,13 +4,15 @@ import { NitroCardViewProps } from './NitroCardView.types';
|
|||||||
|
|
||||||
export const NitroCardView: FC<NitroCardViewProps> = props =>
|
export const NitroCardView: FC<NitroCardViewProps> = props =>
|
||||||
{
|
{
|
||||||
const { className = '', disableDrag = false } = props;
|
const { className = '', disableDrag = false, children = null } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<div className="nitro-card-responsive">
|
||||||
<DraggableWindow handle=".drag-handler" disableDrag= { disableDrag }>
|
<DraggableWindow handle=".drag-handler" disableDrag= { disableDrag }>
|
||||||
<div className={ 'nitro-card d-flex flex-column rounded border shadow overflow-hidden ' + className }>
|
<div className={ 'nitro-card d-flex flex-column rounded border shadow overflow-hidden ' + className }>
|
||||||
{ props.children }
|
{ children }
|
||||||
</div>
|
</div>
|
||||||
</DraggableWindow>
|
</DraggableWindow>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
.content-area {
|
||||||
|
padding-top: $container-padding-x;
|
||||||
|
padding-bottom: $container-padding-x;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include media-breakpoint-down(md) {
|
||||||
|
|
||||||
|
.content-area {
|
||||||
|
height: 100% !important;
|
||||||
|
max-height: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
@ -4,7 +4,7 @@ import { NitroCardContentViewProps } from './NitroCardContextView.types';
|
|||||||
export const NitroCardContentView: FC<NitroCardContentViewProps> = props =>
|
export const NitroCardContentView: FC<NitroCardContentViewProps> = props =>
|
||||||
{
|
{
|
||||||
return (
|
return (
|
||||||
<div className="bg-light p-2 content-area">
|
<div className="container-fluid bg-light content-area">
|
||||||
{ props.children }
|
{ props.children }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -6,7 +6,7 @@ export const NitroCardHeaderView: FC<NitroCardHeaderViewProps> = props =>
|
|||||||
const { headerText = null, onCloseClick = null } = props;
|
const { headerText = null, onCloseClick = null } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="drag-handler d-flex align-items-center bg-primary px-2 py-1 nitro-card-header">
|
<div className="drag-handler container-fluid d-flex align-items-center bg-primary py-1 nitro-card-header">
|
||||||
<div className="d-flex flex-grow-1 justify-content-center align-items-center">
|
<div className="d-flex flex-grow-1 justify-content-center align-items-center">
|
||||||
<div className="h4 m-0 text-white text-shadow">{ headerText }</div>
|
<div className="h4 m-0 text-white text-shadow">{ headerText }</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,7 +6,7 @@ export const NitroCardSimpleHeaderView: FC<NitroCardSimpleHeaderViewProps> = pro
|
|||||||
const { headerText = null, onCloseClick = null } = props;
|
const { headerText = null, onCloseClick = null } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="d-flex align-items-center bg-light">
|
<div className="d-flex container-fluid align-items-center bg-light">
|
||||||
<div className="col-1"></div>
|
<div className="col-1"></div>
|
||||||
<div className="d-flex bg-primary-split flex-grow-1 justify-content-center align-items-center border border-top-0 rounded-bottom px-2 py-1">
|
<div className="d-flex bg-primary-split flex-grow-1 justify-content-center align-items-center border border-top-0 rounded-bottom px-2 py-1">
|
||||||
<div className="h5 m-0 text-white text-shadow">{ headerText }</div>
|
<div className="h5 m-0 text-white text-shadow">{ headerText }</div>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.nitro-card-tabs {
|
.nitro-card-tabs {
|
||||||
min-height: $nitro-card-tabs-height;
|
min-height: $nitro-card-tabs-height;
|
||||||
max-height: $nitro-card-tabs-height;
|
max-height: $nitro-card-tabs-height;
|
||||||
}
|
|
||||||
|
|
||||||
@import './tabs-item/NitroCardTabsItemView';
|
@import './tabs-item/NitroCardTabsItemView';
|
||||||
|
}
|
||||||
|
@ -4,8 +4,10 @@ import { NitroCardTabsViewProps } from './NitroCardTabsView.types';
|
|||||||
export const NitroCardTabsView: FC<NitroCardTabsViewProps> = props =>
|
export const NitroCardTabsView: FC<NitroCardTabsViewProps> = props =>
|
||||||
{
|
{
|
||||||
return (
|
return (
|
||||||
<ul className="nav nav-tabs justify-content-center bg-secondary px-2 pt-1 nitro-card-tabs">
|
<div className="container-fluid d-flex bg-secondary pt-1 nitro-card-tabs justify-content-center">
|
||||||
|
<ul className="nav nav-tabs">
|
||||||
{ props.children }
|
{ props.children }
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
.nav-item {
|
||||||
|
|
||||||
|
&:last-child() {
|
||||||
|
margin-right: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
@ -21,14 +21,14 @@ export const CatalogLayoutDefaultView: FC<CatalogLayoutDefaultViewProps> = props
|
|||||||
<CatalogPageOffersView offers={ pageParser.offers } />
|
<CatalogPageOffersView offers={ pageParser.offers } />
|
||||||
</div>
|
</div>
|
||||||
{ !product &&
|
{ !product &&
|
||||||
<div className="position-relative d-flex flex-column col justify-content-center align-items-center">
|
<div className="position-relative d-flex flex-column col-5 justify-content-center align-items-center">
|
||||||
<div className="d-block mb-2">
|
<div className="d-block mb-2">
|
||||||
<img alt="" src={ GetCatalogPageImage(pageParser, 1) } />
|
<img alt="" src={ GetCatalogPageImage(pageParser, 1) } />
|
||||||
</div>
|
</div>
|
||||||
<div className="fs-6 text-center text-black lh-sm overflow-hidden">{ GetCatalogPageText(pageParser, 0) }</div>
|
<div className="fs-6 text-center text-black lh-sm overflow-hidden">{ GetCatalogPageText(pageParser, 0) }</div>
|
||||||
</div> }
|
</div> }
|
||||||
{ product &&
|
{ product &&
|
||||||
<div className="position-relative d-flex flex-column col">
|
<div className="position-relative d-flex flex-column col-5">
|
||||||
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
||||||
{ product.uniqueLimitedItem &&
|
{ product.uniqueLimitedItem &&
|
||||||
<LimitedEditionCompletePlateView uniqueLimitedItemsLeft={ product.uniqueLimitedItemsLeft } uniqueLimitedSeriesSize={ product.uniqueLimitedSeriesSize } /> }
|
<LimitedEditionCompletePlateView uniqueLimitedItemsLeft={ product.uniqueLimitedItemsLeft } uniqueLimitedSeriesSize={ product.uniqueLimitedSeriesSize } /> }
|
||||||
|
@ -21,7 +21,7 @@ export const CatalogLayoutSingleBundleView: FC<CatalogLayoutSingleBundleViewProp
|
|||||||
}) }
|
}) }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="position-relative d-flex flex-column col justify-content-center align-items-center">
|
<div className="position-relative d-flex flex-column col-5 justify-content-center align-items-center">
|
||||||
<div className="d-block mb-2">
|
<div className="d-block mb-2">
|
||||||
<img alt="" src={ GetCatalogPageImage(pageParser, 1) } />
|
<img alt="" src={ GetCatalogPageImage(pageParser, 1) } />
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,9 +1,31 @@
|
|||||||
import { Nitro } from 'nitro-renderer';
|
import { Nitro, RoomSessionEvent } from 'nitro-renderer';
|
||||||
|
import { useCallback, useState } from 'react';
|
||||||
|
import { useRoomSessionManagerEvent } from '../../hooks/events/nitro/session/room-session-manager-event';
|
||||||
import { GetConfiguration } from '../../utils/GetConfiguration';
|
import { GetConfiguration } from '../../utils/GetConfiguration';
|
||||||
import { HotelViewProps } from './HotelView.types';
|
import { HotelViewProps } from './HotelView.types';
|
||||||
|
|
||||||
export function HotelView(props: HotelViewProps): JSX.Element
|
export function HotelView(props: HotelViewProps): JSX.Element
|
||||||
{
|
{
|
||||||
|
const [ isVisible, setIsVisible ] = useState(true);
|
||||||
|
|
||||||
|
const onRoomSessionEvent = useCallback((event: RoomSessionEvent) =>
|
||||||
|
{
|
||||||
|
switch(event.type)
|
||||||
|
{
|
||||||
|
case RoomSessionEvent.CREATED:
|
||||||
|
setIsVisible(false);
|
||||||
|
return;
|
||||||
|
case RoomSessionEvent.ENDED:
|
||||||
|
setIsVisible(event.openLandingView);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useRoomSessionManagerEvent(RoomSessionEvent.CREATED, onRoomSessionEvent);
|
||||||
|
useRoomSessionManagerEvent(RoomSessionEvent.ENDED, onRoomSessionEvent);
|
||||||
|
|
||||||
|
if(!isVisible) return null;
|
||||||
|
|
||||||
const backgroundColor = GetConfiguration('hotelview.images')['background.colour'];
|
const backgroundColor = GetConfiguration('hotelview.images')['background.colour'];
|
||||||
const background = Nitro.instance.core.configuration.interpolate(GetConfiguration('hotelview.images')['background']);
|
const background = Nitro.instance.core.configuration.interpolate(GetConfiguration('hotelview.images')['background']);
|
||||||
const sun = Nitro.instance.core.configuration.interpolate(GetConfiguration('hotelview.images')['sun']);
|
const sun = Nitro.instance.core.configuration.interpolate(GetConfiguration('hotelview.images')['sun']);
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
width: 475px;
|
width: 475px;
|
||||||
|
|
||||||
.content-area {
|
.content-area {
|
||||||
height: 243.5px;
|
height: calc(220px + (#{$container-padding-x} * 2));
|
||||||
max-height: 243.5px;
|
max-height: calc(220px + (#{$container-padding-x} * 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty-image {
|
.empty-image {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.badge-item-container {
|
.badge-item-container {
|
||||||
height: 144px;
|
height: 139px;
|
||||||
max-height: 144px;
|
max-height: 139px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -70,7 +70,7 @@ export const InventoryBotView: FC<InventoryBotViewProps> = props =>
|
|||||||
<div className="col-5 d-flex justify-content-center align-items-center">
|
<div className="col-5 d-flex justify-content-center align-items-center">
|
||||||
<div className="empty-image"></div>
|
<div className="empty-image"></div>
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex flex-column col justify-content-center">
|
<div className="d-flex flex-column col-7 justify-content-center">
|
||||||
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
||||||
{ LocalizeText('inventory.empty.bots.title') }
|
{ LocalizeText('inventory.empty.bots.title') }
|
||||||
</div>
|
</div>
|
||||||
@ -81,11 +81,11 @@ export const InventoryBotView: FC<InventoryBotViewProps> = props =>
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="row h-100">
|
<div className="row">
|
||||||
<div className="col-7">
|
<div className="col-7">
|
||||||
<InventoryBotResultsView botItems={ botItems } />
|
<InventoryBotResultsView botItems={ botItems } />
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex flex-column col justify-space-between">
|
<div className="d-flex flex-column col-5 justify-space-between">
|
||||||
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
||||||
{ botItem && <div className="d-flex flex-column flex-grow-1">
|
{ botItem && <div className="d-flex flex-column flex-grow-1">
|
||||||
<p className="flex-grow-1 fs-6 text-black my-2">{ botItem.botData.name }</p>
|
<p className="flex-grow-1 fs-6 text-black my-2">{ botItem.botData.name }</p>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.bot-item-container {
|
.bot-item-container {
|
||||||
height: 226px;
|
height: 220px;
|
||||||
max-height: 226px;
|
max-height: 220px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ export const InventoryFurnitureView: FC<InventoryFurnitureViewProps> = props =>
|
|||||||
<div className="col-5 d-flex justify-content-center align-items-center">
|
<div className="col-5 d-flex justify-content-center align-items-center">
|
||||||
<div className="empty-image"></div>
|
<div className="empty-image"></div>
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex flex-column col justify-content-center">
|
<div className="d-flex flex-column col-7 justify-content-center">
|
||||||
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
||||||
{ LocalizeText('inventory.empty.title') }
|
{ LocalizeText('inventory.empty.title') }
|
||||||
</div>
|
</div>
|
||||||
@ -116,12 +116,12 @@ export const InventoryFurnitureView: FC<InventoryFurnitureViewProps> = props =>
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="row h-100">
|
<div className="row">
|
||||||
<div className="col-7">
|
<div className="col-7">
|
||||||
<InventoryFurnitureSearchView groupItems={ groupItems } setGroupItems={ setFilteredGroupItems } />
|
<InventoryFurnitureSearchView groupItems={ groupItems } setGroupItems={ setFilteredGroupItems } />
|
||||||
<InventoryFurnitureResultsView groupItems={ filteredGroupItems } />
|
<InventoryFurnitureResultsView groupItems={ filteredGroupItems } />
|
||||||
</div>
|
</div>
|
||||||
<div className="position-relative d-flex flex-column col justify-space-between">
|
<div className="position-relative d-flex flex-column col-5 justify-space-between">
|
||||||
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
||||||
{ groupItem && groupItem.stuffData.isUnique &&
|
{ groupItem && groupItem.stuffData.isUnique &&
|
||||||
<div className="position-absolute limited-edition-info-container">
|
<div className="position-absolute limited-edition-info-container">
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.furni-item-container {
|
.furni-item-container {
|
||||||
height: 192px;
|
height: 188px;
|
||||||
max-height: 192px;
|
max-height: 188px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -70,7 +70,7 @@ export const InventoryPetView: FC<InventoryPetViewProps> = props =>
|
|||||||
<div className="col-5 d-flex justify-content-center align-items-center">
|
<div className="col-5 d-flex justify-content-center align-items-center">
|
||||||
<div className="empty-image"></div>
|
<div className="empty-image"></div>
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex flex-column col justify-content-center">
|
<div className="d-flex flex-column col-7 justify-content-center">
|
||||||
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
<div className="h5 m-0 text-black fw-bold m-0 mb-2">
|
||||||
{ LocalizeText('inventory.empty.pets.title') }
|
{ LocalizeText('inventory.empty.pets.title') }
|
||||||
</div>
|
</div>
|
||||||
@ -85,7 +85,7 @@ export const InventoryPetView: FC<InventoryPetViewProps> = props =>
|
|||||||
<div className="col-7">
|
<div className="col-7">
|
||||||
<InventoryPetResultsView petItems={ petItems } />
|
<InventoryPetResultsView petItems={ petItems } />
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex flex-column col justify-space-between">
|
<div className="d-flex flex-column col-5 justify-space-between">
|
||||||
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
<RoomPreviewerView roomPreviewer={ roomPreviewer } height={ 140 } />
|
||||||
{ petItem && <div className="d-flex flex-column flex-grow-1">
|
{ petItem && <div className="d-flex flex-column flex-grow-1">
|
||||||
<p className="flex-grow-1 fs-6 text-black my-2">{ petItem.petData.name }</p>
|
<p className="flex-grow-1 fs-6 text-black my-2">{ petItem.petData.name }</p>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.pet-item-container {
|
.pet-item-container {
|
||||||
height: 226px;
|
height: 220px;
|
||||||
max-height: 226px;
|
max-height: 220px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
.room-preview-image {
|
.room-preview-image {
|
||||||
position: absolute;
|
position: relative;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 55px;
|
height: $toolbar-height;
|
||||||
z-index: $toolbar-zindex;
|
z-index: $toolbar-zindex;
|
||||||
|
|
||||||
.nitro-toolbar {
|
.nitro-toolbar {
|
||||||
|
Loading…
Reference in New Issue
Block a user