7c956d1481
* WIP: svelte menu * temp * temp * New menu svelte * Migration of report menu in svelte * Migration of registerCustomMenu for Menu in Svelte Refactor subMenuStore Suppression of old MenuScene and ReportMenu * Suppression of HTML files that aren't use anymore * fix deeployer * First pass on css * First pass on css * Second pass on css and reportMenu * Second pass on css and reportMenu * Second pass on css and reportMenu * Third pass on css and reportMenu * Correction following test * Contact page only if environment variable exist * Update service worker Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com> * Change requested * Change requested Co-authored-by: kharhamel <oognic@gmail.com> Co-authored-by: Gregoire Parant <g.parant@thecodingmachine.com>
141 lines
5.2 KiB
Svelte
141 lines
5.2 KiB
Svelte
<script lang="typescript">
|
|
import MenuIcon from "./Menu/MenuIcon.svelte";
|
|
import {menuIconVisiblilityStore, menuVisiblilityStore} from "../Stores/MenuStore";
|
|
import {enableCameraSceneVisibilityStore} from "../Stores/MediaStore";
|
|
import CameraControls from "./CameraControls.svelte";
|
|
import MyCamera from "./MyCamera.svelte";
|
|
import SelectCompanionScene from "./SelectCompanion/SelectCompanionScene.svelte";
|
|
import {selectCompanionSceneVisibleStore} from "../Stores/SelectCompanionStore";
|
|
import {selectCharacterSceneVisibleStore} from "../Stores/SelectCharacterStore";
|
|
import SelectCharacterScene from "./selectCharacter/SelectCharacterScene.svelte";
|
|
import {customCharacterSceneVisibleStore} from "../Stores/CustomCharacterStore";
|
|
import {errorStore} from "../Stores/ErrorStore";
|
|
import CustomCharacterScene from "./CustomCharacterScene/CustomCharacterScene.svelte";
|
|
import LoginScene from "./Login/LoginScene.svelte";
|
|
import Chat from "./Chat/Chat.svelte";
|
|
import {loginSceneVisibleStore} from "../Stores/LoginSceneStore";
|
|
import EnableCameraScene from "./EnableCamera/EnableCameraScene.svelte";
|
|
import VisitCard from "./VisitCard/VisitCard.svelte";
|
|
import {requestVisitCardsStore} from "../Stores/GameStore";
|
|
|
|
import type {Game} from "../Phaser/Game/Game";
|
|
import {chatVisibilityStore} from "../Stores/ChatStore";
|
|
import {helpCameraSettingsVisibleStore} from "../Stores/HelpCameraSettingsStore";
|
|
import HelpCameraSettingsPopup from "./HelpCameraSettings/HelpCameraSettingsPopup.svelte";
|
|
import AudioPlaying from "./UI/AudioPlaying.svelte";
|
|
import {soundPlayingStore} from "../Stores/SoundPlayingStore";
|
|
import ErrorDialog from "./UI/ErrorDialog.svelte";
|
|
import Menu from "./Menu/Menu.svelte";
|
|
import VideoOverlay from "./Video/VideoOverlay.svelte";
|
|
import {gameOverlayVisibilityStore} from "../Stores/GameOverlayStoreVisibility";
|
|
import AdminMessage from "./TypeMessage/BanMessage.svelte";
|
|
import TextMessage from "./TypeMessage/TextMessage.svelte";
|
|
import {banMessageVisibleStore} from "../Stores/TypeMessageStore/BanMessageStore";
|
|
import {textMessageVisibleStore} from "../Stores/TypeMessageStore/TextMessageStore";
|
|
import {warningContainerStore} from "../Stores/MenuStore";
|
|
import WarningContainer from "./WarningContainer/WarningContainer.svelte";
|
|
import {layoutManagerVisibilityStore} from "../Stores/LayoutManagerStore";
|
|
import LayoutManager from "./LayoutManager/LayoutManager.svelte";
|
|
import {audioManagerVisibilityStore} from "../Stores/AudioManagerStore";
|
|
import AudioManager from "./AudioManager/AudioManager.svelte"
|
|
import { showReportScreenStore, userReportEmpty } from "../Stores/ShowReportScreenStore";
|
|
import ReportMenu from "./ReportMenu/ReportMenu.svelte";
|
|
|
|
export let game: Game;
|
|
|
|
</script>
|
|
|
|
<div>
|
|
{#if $loginSceneVisibleStore}
|
|
<div class="scrollable">
|
|
<LoginScene game={game}></LoginScene>
|
|
</div>
|
|
{/if}
|
|
{#if $selectCharacterSceneVisibleStore}
|
|
<div>
|
|
<SelectCharacterScene game={ game }></SelectCharacterScene>
|
|
</div>
|
|
{/if}
|
|
{#if $customCharacterSceneVisibleStore}
|
|
<div>
|
|
<CustomCharacterScene game={ game }></CustomCharacterScene>
|
|
</div>
|
|
{/if}
|
|
{#if $selectCompanionSceneVisibleStore}
|
|
<div>
|
|
<SelectCompanionScene game={ game }></SelectCompanionScene>
|
|
</div>
|
|
{/if}
|
|
{#if $enableCameraSceneVisibilityStore}
|
|
<div class="scrollable">
|
|
<EnableCameraScene game={game}></EnableCameraScene>
|
|
</div>
|
|
{/if}
|
|
{#if $banMessageVisibleStore}
|
|
<div>
|
|
<AdminMessage></AdminMessage>
|
|
</div>
|
|
{/if}
|
|
{#if $textMessageVisibleStore}
|
|
<div>
|
|
<TextMessage></TextMessage>
|
|
</div>
|
|
{/if}
|
|
{#if $soundPlayingStore}
|
|
<div>
|
|
<AudioPlaying url={$soundPlayingStore} />
|
|
</div>
|
|
{/if}
|
|
{#if $audioManagerVisibilityStore}
|
|
<div>
|
|
<AudioManager></AudioManager>
|
|
</div>
|
|
{/if}
|
|
{#if $layoutManagerVisibilityStore}
|
|
<div>
|
|
<LayoutManager></LayoutManager>
|
|
</div>
|
|
{/if}
|
|
{#if $showReportScreenStore !== userReportEmpty}
|
|
<div>
|
|
<ReportMenu></ReportMenu>
|
|
</div>
|
|
{/if}
|
|
{#if $menuIconVisiblilityStore}
|
|
<div>
|
|
<MenuIcon></MenuIcon>
|
|
</div>
|
|
{/if}
|
|
{#if $menuVisiblilityStore}
|
|
<div>
|
|
<Menu></Menu>
|
|
</div>
|
|
{/if}
|
|
{#if $gameOverlayVisibilityStore}
|
|
<div>
|
|
<VideoOverlay></VideoOverlay>
|
|
<MyCamera></MyCamera>
|
|
<CameraControls></CameraControls>
|
|
</div>
|
|
{/if}
|
|
{#if $helpCameraSettingsVisibleStore}
|
|
<div>
|
|
<HelpCameraSettingsPopup></HelpCameraSettingsPopup>
|
|
</div>
|
|
{/if}
|
|
{#if $requestVisitCardsStore}
|
|
<VisitCard visitCardUrl={$requestVisitCardsStore}></VisitCard>
|
|
{/if}
|
|
{#if $errorStore.length > 0}
|
|
<div>
|
|
<ErrorDialog></ErrorDialog>
|
|
</div>
|
|
{/if}
|
|
{#if $chatVisibilityStore}
|
|
<Chat></Chat>
|
|
{/if}
|
|
{#if $warningContainerStore}
|
|
<WarningContainer></WarningContainer>
|
|
{/if}
|
|
</div>
|