Formatted code

This commit is contained in:
Mawoka
2023-10-18 18:44:17 +02:00
parent 0e97e23b98
commit a1bfd921b2
3 changed files with 29 additions and 32 deletions
+25 -27
View File
@@ -4,7 +4,7 @@ SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
SPDX-License-Identifier: MPL-2.0 SPDX-License-Identifier: MPL-2.0
--> -->
<script lang='ts'> <script lang="ts">
import { socket } from '$lib/socket'; import { socket } from '$lib/socket';
import { onDestroy, onMount } from 'svelte'; import { onDestroy, onMount } from 'svelte';
import { browser } from '$app/environment'; import { browser } from '$app/environment';
@@ -28,8 +28,7 @@ SPDX-License-Identifier: MPL-2.0
let hcaptcha = { let hcaptcha = {
execute: async (_a, _b) => ({ response: '' }), // eslint-disable-line @typescript-eslint/no-unused-vars execute: async (_a, _b) => ({ response: '' }), // eslint-disable-line @typescript-eslint/no-unused-vars
// eslint-disable-next-line @typescript-eslint/no-empty-function // eslint-disable-next-line @typescript-eslint/no-empty-function
render: (_a, _b) => { render: (_a, _b) => {} // eslint-disable-line @typescript-eslint/no-unused-vars
} // eslint-disable-line @typescript-eslint/no-unused-vars
}; };
let hcaptchaWidgetID; let hcaptchaWidgetID;
@@ -52,8 +51,7 @@ SPDX-License-Identifier: MPL-2.0
hcaptcha = { hcaptcha = {
execute: async () => ({ response: '' }), execute: async () => ({ response: '' }),
// eslint-disable-next-line @typescript-eslint/no-empty-function // eslint-disable-next-line @typescript-eslint/no-empty-function
render: () => { render: () => {}
}
}; };
} }
}); });
@@ -118,7 +116,7 @@ SPDX-License-Identifier: MPL-2.0
} }
let captcha_resp: string; let captcha_resp: string;
if (Cookies.get('kicked')) { if (Cookies.get('kicked')) {
console.log('%cYou\'re Banned!', 'font-size:6rem'); console.log("%cYou're Banned!", 'font-size:6rem');
return; return;
} }
@@ -185,54 +183,54 @@ SPDX-License-Identifier: MPL-2.0
<svelte:head> <svelte:head>
{#if captcha_enabled && hcaptchaSitekey} {#if captcha_enabled && hcaptchaSitekey}
<script src='https://js.hcaptcha.com/1/api.js' async defer></script> <script src="https://js.hcaptcha.com/1/api.js" async defer></script>
{/if} {/if}
{#if import.meta.env.VITE_RECAPTCHA && captcha_enabled} {#if import.meta.env.VITE_RECAPTCHA && captcha_enabled}
<script <script
src='https://www.google.com/recaptcha/api.js?render={import.meta.env.VITE_RECAPTCHA}' src="https://www.google.com/recaptcha/api.js?render={import.meta.env.VITE_RECAPTCHA}"
></script> ></script>
{/if} {/if}
</svelte:head> </svelte:head>
{#if game_pin === '' || game_pin.length < 6} {#if game_pin === '' || game_pin.length < 6}
<div class='flex flex-col justify-center align-center w-screen h-screen'> <div class="flex flex-col justify-center align-center w-screen h-screen">
<form on:submit|preventDefault class='flex-col flex justify-center align-center mx-auto'> <form on:submit|preventDefault class="flex-col flex justify-center align-center mx-auto">
<h1 class='text-lg text-center'>{$t('words.game_pin')}</h1> <h1 class="text-lg text-center">{$t('words.game_pin')}</h1>
<input <input
class='border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all' class="border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all"
bind:value={game_pin} bind:value={game_pin}
maxlength='6' maxlength="6"
inputmode='numeric' inputmode="numeric"
/> />
<!-- use:tippy={{content: "Please enter the game pin", sticky: true, placement: 'top'}}--> <!-- use:tippy={{content: "Please enter the game pin", sticky: true, placement: 'top'}}-->
<br /> <br />
<div class='mt-2'> <div class="mt-2">
<BrownButton disabled={game_pin.length < 6}>{$t('words.submit')}</BrownButton> <BrownButton disabled={game_pin.length < 6}>{$t('words.submit')}</BrownButton>
</div> </div>
</form> </form>
</div> </div>
{:else} {:else}
<div class='flex flex-col justify-center align-center w-screen h-screen'> <div class="flex flex-col justify-center align-center w-screen h-screen">
<form <form
on:submit|preventDefault={setUsername} on:submit|preventDefault={setUsername}
class='flex-col flex justify-center align-center mx-auto' class="flex-col flex justify-center align-center mx-auto"
> >
<h1 class='text-lg text-center'>{$t('words.username')}</h1> <h1 class="text-lg text-center">{$t('words.username')}</h1>
<input <input
class='border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all' class="border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all"
bind:value={username} bind:value={username}
maxlength='17' maxlength="17"
/> />
{#if custom_field} {#if custom_field}
<h1 class='text-lg text-center'>{custom_field}</h1> <h1 class="text-lg text-center">{custom_field}</h1>
<input <input
class='border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all' class="border border-gray-400 self-center text-center text-black ring-0 outline-none p-2 rounded-lg focus:shadow-2xl transition-all"
bind:value={custom_field_value} bind:value={custom_field_value}
/> />
{/if} {/if}
<div class='mt-2'> <div class="mt-2">
<BrownButton disabled={username.length <= 3} on:click={setUsername} <BrownButton disabled={username.length <= 3} on:click={setUsername}
>{$t('words.submit')}</BrownButton >{$t('words.submit')}</BrownButton
> >
@@ -241,9 +239,9 @@ SPDX-License-Identifier: MPL-2.0
</div> </div>
{/if} {/if}
<div <div
id='hcaptcha' id="hcaptcha"
class='h-captcha' class="h-captcha"
data-sitekey={hcaptchaSitekey} data-sitekey={hcaptchaSitekey}
data-size='invisible' data-size="invisible"
data-theme='dark' data-theme="dark"
/> />
+1 -1
View File
@@ -80,7 +80,7 @@ SPDX-License-Identifier: MPL-2.0
const classquiz_reasons = [ const classquiz_reasons = [
{ {
headline: $t('index_page.no_player_limit'), headline: $t('index_page.no_player_limit'),
content: $t('index_page.no_player_limit_content'), content: $t('index_page.no_player_limit_content')
}, },
{ {
headline: $t('index_page.no_tracking'), headline: $t('index_page.no_tracking'),
@@ -82,8 +82,7 @@ SPDX-License-Identifier: MPL-2.0
</li> </li>
<li> <li>
Start the background worker: Start the background worker:
<pre><code>pipenv run arq classquiz.worker.WorkerSettings</code <pre><code>pipenv run arq classquiz.worker.WorkerSettings</code></pre>
></pre>
</li> </li>
<li> <li>
Start the frontend-dev-server: Start the frontend-dev-server: