workadventure/front/src/Components/WarningContainer/WarningContainer.svelte

46 lines
1.3 KiB
Svelte
Raw Normal View History

<script lang="typescript">
2021-12-06 16:12:37 +01:00
import { fly } from "svelte/transition";
import { userIsAdminStore, limitMapStore } from "../../Stores/GameStore";
2021-12-06 16:12:37 +01:00
import { ADMIN_URL } from "../../Enum/EnvironmentVariable";
const upgradeLink = ADMIN_URL + "/pricing";
const registerLink = ADMIN_URL + "/second-step-register";
</script>
2021-12-06 16:12:37 +01:00
<main class="warningMain" transition:fly={{ y: -200, duration: 500 }}>
{#if $userIsAdminStore}
<h2>Warning!</h2>
2021-12-06 16:12:37 +01:00
<p>
This world is close to its limit!. You can upgrade its capacity <a href={upgradeLink} target="_blank"
>here</a
2021-12-06 16:12:37 +01:00
>
</p>
{:else if $limitMapStore}
<p>
This map is available for 2 days. You can register your domain <a href={registerLink}>here</a>!
</p>
{:else}
<h2>Warning!</h2>
<p>This world is close to its limit!</p>
2021-12-06 16:12:37 +01:00
{/if}
</main>
<style lang="scss">
2021-12-06 16:12:37 +01:00
main.warningMain {
pointer-events: auto;
width: 100vw;
background-color: red;
text-align: center;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
font-family: Lato;
min-width: 300px;
opacity: 0.9;
z-index: 2;
h2 {
2021-12-06 16:12:37 +01:00
padding: 5px;
}
}
2021-12-06 16:12:37 +01:00
</style>