🏷️ Made ts-compiler happy

This commit is contained in:
Mawoka
2022-04-09 10:05:45 +02:00
parent 01d423ba04
commit dad9559a38
11 changed files with 3398 additions and 4380 deletions
+2
View File
@@ -22,6 +22,8 @@
"@sveltejs/adapter-node": "^1.0.0-next.71", "@sveltejs/adapter-node": "^1.0.0-next.71",
"@sveltejs/kit": "next", "@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.0-alpha.3", "@tailwindcss/typography": "^0.5.0-alpha.3",
"@types/cookie": "^0.4.1",
"@types/ioredis": "^4.28.10",
"@types/js-cookie": "^3.0.1", "@types/js-cookie": "^3.0.1",
"@types/luxon": "^2.0.9", "@types/luxon": "^2.0.9",
"@types/yup": "^0.29.13", "@types/yup": "^0.29.13",
+3153 -4162
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -13,7 +13,7 @@
execute: async (_a, _b) => ({ response: '' }), execute: async (_a, _b) => ({ response: '' }),
render: (_a, _b) => {} render: (_a, _b) => {}
}; };
let hcaptchaWidgetID; let hcaptchaWidgetID: any;
onMount(() => { onMount(() => {
if (browser) { if (browser) {
@@ -41,7 +41,7 @@
if (username.length <= 3) { if (username.length <= 3) {
return; return;
} }
let captcha_resp; let captcha_resp: string;
try { try {
const { response } = await hcaptcha.execute(hcaptchaWidgetID, { const { response } = await hcaptcha.execute(hcaptchaWidgetID, {
async: true async: true
+4 -3
View File
@@ -3,10 +3,11 @@
export let results: Array<Answer>; export let results: Array<Answer>;
export let game_data: QuizData; export let game_data: QuizData;
export let question_index: number; export let question_index: string;
let data_store = {}; let data_store = {};
const question = game_data.questions[question_index].answers;
const question = game_data.questions[parseInt(question_index)].answers;
for (let i = 0; i < question.length; i++) { for (let i = 0; i < question.length; i++) {
console.log(question[i].answer, 'HI!!!'); console.log(question[i].answer, 'HI!!!');
data_store[question[i].answer] = 0; data_store[question[i].answer] = 0;
@@ -56,7 +57,7 @@
</thead> </thead>
<tbody> <tbody>
<!-- Product 1 --> <!-- Product 1 -->
{#each game_data.questions[question_index].answers as answer} {#each game_data.questions[parseInt(question_index)].answers as answer}
<tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700"> <tr class="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<td <td
class="py-4 px-6 text-sm font-medium text-gray-900 whitespace-nowrap dark:text-white" class="py-4 px-6 text-sm font-medium text-gray-900 whitespace-nowrap dark:text-white"
+2 -2
View File
@@ -1,7 +1,7 @@
<script> <script>
import '../app.css'; import '../app.css';
import Navbar from '$lib/navbar.svelte'; import Navbar from '$lib/navbar.svelte';
import { navbarVisible } from '$lib/stores.ts'; import { navbarVisible } from '$lib/stores';
import * as Sentry from '@sentry/browser'; import * as Sentry from '@sentry/browser';
import { BrowserTracing } from '@sentry/tracing'; import { BrowserTracing } from '@sentry/tracing';
import { initLocalizationContext } from '$lib/i18n'; import { initLocalizationContext } from '$lib/i18n';
@@ -10,7 +10,7 @@
if (import.meta.env.VITE_SENTRY !== null) { if (import.meta.env.VITE_SENTRY !== null) {
Sentry.init({ Sentry.init({
dsn: import.meta.env.VITE_SENTRY, dsn: String(import.meta.env.VITE_SENTRY),
integrations: [new BrowserTracing()], integrations: [new BrowserTracing()],
// Set tracesSampleRate to 1.0 to capture 100% // Set tracesSampleRate to 1.0 to capture 100%
@@ -1,4 +1,4 @@
<script lang="ts" context="module"> <script lang='ts' context='module'>
export async function load({ url }) { export async function load({ url }) {
const token = url.searchParams.get('token'); const token = url.searchParams.get('token');
@@ -10,18 +10,22 @@
} }
</script> </script>
<script lang="ts"> <script lang='ts'>
import { getLocalization } from '../../lib/i18n'; import { getLocalization } from '../../lib/i18n';
const { t } = getLocalization(); const { t } = getLocalization();
export let token: string; export let token: string;
let isSubmitting = false; let isSubmitting = false;
let passwordData = { interface PasswordData {
password1: string;
password2: string;
}
let passwordData: PasswordData = {
password1: '', password1: '',
password2: '' password2: ''
}; };
let passwordsValid = false; let passwordsValid = false;
const checkIfPasswordsValid = (pwdata) => { const checkIfPasswordsValid = (pwdata: PasswordData): void => {
passwordsValid = pwdata.password1 === pwdata.password2 && pwdata.password1.length >= 8; passwordsValid = pwdata.password1 === pwdata.password2 && pwdata.password1.length >= 8;
}; };
$: checkIfPasswordsValid(passwordData); $: checkIfPasswordsValid(passwordData);
@@ -51,13 +55,13 @@
}; };
</script> </script>
<div class="flex items-center justify-center h-full px-4"> <div class='flex items-center justify-center h-full px-4'>
<div> <div>
<div <div
class="w-full max-w-sm mx-auto overflow-hidden bg-white rounded-lg shadow-md dark:bg-gray-800" class='w-full max-w-sm mx-auto overflow-hidden bg-white rounded-lg shadow-md dark:bg-gray-800'
> >
<div class="px-6 py-4"> <div class='px-6 py-4'>
<h2 class="text-3xl font-bold text-center text-gray-700 dark:text-white"> <h2 class='text-3xl font-bold text-center text-gray-700 dark:text-white'>
ClassQuiz ClassQuiz
</h2> </h2>
@@ -66,70 +70,70 @@
</h3> </h3>
--> -->
<p class="mt-1 text-center text-gray-500 dark:text-gray-400"> <p class='mt-1 text-center text-gray-500 dark:text-gray-400'>
{$t('password_reset_page.reset_password')} {$t('password_reset_page.reset_password')}
</p> </p>
<form on:submit|preventDefault={submit}> <form on:submit|preventDefault={submit}>
<div class="w-full mt-4"> <div class='w-full mt-4'>
<div class="dark:bg-gray-800 bg-white p-4 rounded-lg"> <div class='dark:bg-gray-800 bg-white p-4 rounded-lg'>
<div class="relative bg-inherit w-full"> <div class='relative bg-inherit w-full'>
<input <input
id="password1" id='password1'
bind:value={passwordData.password1} bind:value={passwordData.password1}
name="password1" name='password1'
type="password" type='password'
class="w-full peer bg-transparent h-10 rounded-lg text-gray-700 dark:text-white placeholder-transparent ring-2 px-2 ring-gray-500 focus:ring-sky-600 focus:outline-none focus:border-rose-600" class='w-full peer bg-transparent h-10 rounded-lg text-gray-700 dark:text-white placeholder-transparent ring-2 px-2 ring-gray-500 focus:ring-sky-600 focus:outline-none focus:border-rose-600'
placeholder={$t('words.password')} placeholder={$t('words.password')}
/> />
<label <label
for="password1" for='password1'
class="absolute cursor-text left-0 -top-3 text-sm text-gray-700 dark:text-white bg-inherit mx-1 px-1 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-2 peer-focus:-top-3 peer-focus:text-sky-600 peer-focus:text-sm transition-all" class='absolute cursor-text left-0 -top-3 text-sm text-gray-700 dark:text-white bg-inherit mx-1 px-1 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-2 peer-focus:-top-3 peer-focus:text-sky-600 peer-focus:text-sm transition-all'
> >
{$t('words.password')} {$t('words.password')}
</label> </label>
</div> </div>
</div> </div>
<div class="dark:bg-gray-800 bg-white p-4 rounded-lg"> <div class='dark:bg-gray-800 bg-white p-4 rounded-lg'>
<div class="relative bg-inherit w-full"> <div class='relative bg-inherit w-full'>
<input <input
id="password2" id='password2'
name="password2" name='password2'
type="password" type='password'
bind:value={passwordData.password2} bind:value={passwordData.password2}
class="w-full peer bg-transparent h-10 rounded-lg text-gray-700 dark:text-white placeholder-transparent ring-2 px-2 ring-gray-500 focus:ring-sky-600 focus:outline-none focus:border-rose-600" class='w-full peer bg-transparent h-10 rounded-lg text-gray-700 dark:text-white placeholder-transparent ring-2 px-2 ring-gray-500 focus:ring-sky-600 focus:outline-none focus:border-rose-600'
placeholder={$t('words.repeat_password')} placeholder={$t('words.repeat_password')}
/> />
<label <label
for="password2" for='password2'
class="absolute cursor-text left-0 -top-3 text-sm text-gray-500 bg-inherit mx-1 px-1 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-2 peer-focus:-top-3 peer-focus:text-sky-600 peer-focus:text-sm transition-all" class='absolute cursor-text left-0 -top-3 text-sm text-gray-500 bg-inherit mx-1 px-1 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-2 peer-focus:-top-3 peer-focus:text-sky-600 peer-focus:text-sm transition-all'
> >
{$t('words.repeat_password')} {$t('words.repeat_password')}
</label> </label>
</div> </div>
</div> </div>
<div class="flex items-center justify-between mt-4"> <div class='flex items-center justify-between mt-4'>
<a <a
href="/account/login" href='/account/login'
class="text-sm text-gray-600 dark:text-gray-200 hover:text-gray-500" class='text-sm text-gray-600 dark:text-gray-200 hover:text-gray-500'
>{$t('register_page.already_have_account?')}</a >{$t('register_page.already_have_account?')}</a
> >
<button <button
class="px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50" class='px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50'
disabled={!passwordsValid} disabled={!passwordsValid}
type="submit" type='submit'
> >
{#if isSubmitting} {#if isSubmitting}
<svg class="h-4 w-4 animate-spin mx-auto" viewBox="3 3 18 18"> <svg class='h-4 w-4 animate-spin mx-auto' viewBox='3 3 18 18'>
<path <path
class="fill-black" class='fill-black'
d="M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z" d='M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z'
/> />
<path <path
class="fill-blue-100" class='fill-blue-100'
d="M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z" d='M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z'
/> />
</svg> </svg>
{:else} {:else}
@@ -142,16 +146,16 @@
</div> </div>
<div <div
class="flex items-center justify-center py-4 text-center bg-gray-50 dark:bg-gray-700" class='flex items-center justify-center py-4 text-center bg-gray-50 dark:bg-gray-700'
> >
<span class="text-sm text-gray-600 dark:text-gray-200" <span class='text-sm text-gray-600 dark:text-gray-200'
>{$t('login_page.already_have_account')} >{$t('login_page.already_have_account')}
</span> </span>
<a <a
href="/account/register" href='/account/register'
class="mx-2 text-sm font-bold text-blue-500 dark:text-blue-400 hover:underline" class='mx-2 text-sm font-bold text-blue-500 dark:text-blue-400 hover:underline'
>{$t('words.register')}</a >{$t('words.register')}</a
> >
</div> </div>
</div> </div>
+41 -36
View File
@@ -1,4 +1,4 @@
<script context="module" lang="ts"> <script context='module' lang='ts'>
export async function load({ session }) { export async function load({ session }) {
if (!session.authenticated) { if (!session.authenticated) {
return { return {
@@ -14,7 +14,7 @@
} }
</script> </script>
<script lang="ts"> <script lang='ts'>
import { getLocalization } from '$lib/i18n'; import { getLocalization } from '$lib/i18n';
const { t } = getLocalization(); const { t } = getLocalization();
@@ -27,15 +27,20 @@
created_at: string; created_at: string;
} }
let changePasswordData = { interface ChangePasswordData {
oldPassword: string,
newPassword: string,
newPasswordConfirm: string
}
let changePasswordData: ChangePasswordData = {
oldPassword: '', oldPassword: '',
newPassword: '', newPassword: '',
newPasswordConfirm: '' newPasswordConfirm: ''
}; };
let passwordChangeDataValid = false; let passwordChangeDataValid = false;
const checkPasswords = (data) => { const checkPasswords = (data: ChangePasswordData): void => {
console.log('Check password');
passwordChangeDataValid = passwordChangeDataValid =
data.newPassword === data.newPasswordConfirm && data.newPassword === data.newPasswordConfirm &&
data.newPassword.length >= 8 && data.newPassword.length >= 8 &&
@@ -81,58 +86,58 @@
</script> </script>
{#await getUser()} {#await getUser()}
<svg class="h-8 w-8 animate-spin mx-auto my-20" viewBox="3 3 18 18"> <svg class='h-8 w-8 animate-spin mx-auto my-20' viewBox='3 3 18 18'>
<path <path
class="fill-black" class='fill-black'
d="M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z" d='M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z'
/> />
<path <path
class="fill-blue-100" class='fill-blue-100'
d="M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z" d='M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z'
/> />
</svg> </svg>
{:then user} {:then user}
<div class="w-full"> <div class='w-full'>
<div class="sm:flex space-x-7 md:items-start items-center"> <div class='sm:flex space-x-7 md:items-start items-center'>
<div class="mb-4"> <div class='mb-4'>
<img <img
class="rounded-md md:w-80" class='rounded-md md:w-80'
src="https://cdn.statically.io/avatar/shape=rounded/{user.username}" src='https://cdn.statically.io/avatar/shape=rounded/{user.username}'
alt="Profile image of {user.username}" alt='Profile image of {user.username}'
/> />
</div> </div>
<div> <div>
<h1 class="text-slate-100 text-4xl font-bold my-2">{user.username}</h1> <h1 class='text-slate-100 text-4xl font-bold my-2'>{user.username}</h1>
<p class="text-slate-100 text-lg mb-6 md:max-w-lg"> <p class='text-slate-100 text-lg mb-6 md:max-w-lg'>
{$t('words.email')}: {user.email} {$t('words.email')}: {user.email}
</p> </p>
<!-- TODO: Add translation --> <!-- TODO: Add translation -->
<form class="flex flex-col md:flex-row" on:submit|preventDefault={changePassword}> <form class='flex flex-col md:flex-row' on:submit|preventDefault={changePassword}>
<label <label
>Old Password:<input >Old Password:<input
type="password" type='password'
class="m-2 text-black" class='m-2 text-black'
bind:value={changePasswordData.oldPassword} bind:value={changePasswordData.oldPassword}
/></label /></label
> >
<label <label
>New Password:<input >New Password:<input
type="password" type='password'
class="m-2 text-black" class='m-2 text-black'
bind:value={changePasswordData.newPassword} bind:value={changePasswordData.newPassword}
/></label /></label
> >
<label <label
>New Password again:<input >New Password again:<input
type="password" type='password'
class="m-2 text-black" class='m-2 text-black'
bind:value={changePasswordData.newPasswordConfirm} bind:value={changePasswordData.newPasswordConfirm}
/></label /></label
> >
<button <button
class="border-2 px-2 py-1 rounded-md border-black text-slate-100 hover:bg-amber-700 hover:text-indigo-100 transition duration-75 disabled:cursor-not-allowed disabled:opacity-50" class='border-2 px-2 py-1 rounded-md border-black text-slate-100 hover:bg-amber-700 hover:text-indigo-100 transition duration-75 disabled:cursor-not-allowed disabled:opacity-50'
disabled={!passwordChangeDataValid} disabled={!passwordChangeDataValid}
type="submit" type='submit'
> >
Change Password! Change Password!
</button> </button>
+4 -1
View File
@@ -41,7 +41,10 @@
export let auto_connect: boolean; export let auto_connect: boolean;
export let game_token: string; export let game_token: string;
let success = false; let success = false;
let players: Array<string> = []; interface Player {
username: string
}
let players: Array<Player> = [];
let errorMessage = ''; let errorMessage = '';
let game_started = false; let game_started = false;
let quiz_data: QuizData; let quiz_data: QuizData;
+1 -1
View File
@@ -102,7 +102,7 @@
d="M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z" d="M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z"
/> />
</svg> </svg>
{:then lol} {:then _}
{#if data !== undefined} {#if data !== undefined}
<form on:submit|preventDefault={submit} class="grid grid-cols-1 gap-2"> <form on:submit|preventDefault={submit} class="grid grid-cols-1 gap-2">
<Editor bind:data submit_button_text={$t('words.save')} /> <Editor bind:data submit_button_text={$t('words.save')} />
+137 -126
View File
@@ -1,4 +1,4 @@
<script context="module" lang="ts"> <script context='module' lang='ts'>
export async function load({ session }) { export async function load({ session }) {
if (!session.authenticated) { if (!session.authenticated) {
return { return {
@@ -14,13 +14,24 @@
} }
</script> </script>
<script lang="ts"> <script lang='ts'>
import type { QuizData } from '../app'; import type { Question } from '../app';
import { DateTime } from 'luxon'; import { DateTime } from 'luxon';
import { getLocalization } from '$lib/i18n'; import { getLocalization } from '$lib/i18n';
import Footer from '$lib/footer.svelte'; import Footer from '$lib/footer.svelte';
import { navbarVisible, signedIn } from '$lib/stores'; import { navbarVisible, signedIn } from '$lib/stores';
interface QuizData {
id: string;
public: boolean;
title: string;
description: string;
created_at: string;
updated_at: string;
user_id: string;
questions: Question[];
}
signedIn.set(true); signedIn.set(true);
navbarVisible.set(true); navbarVisible.set(true);
const { t } = getLocalization(); const { t } = getLocalization();
@@ -63,161 +74,161 @@
<title>ClassQuiz - Overview</title> <title>ClassQuiz - Overview</title>
</svelte:head> </svelte:head>
<div class="min-h-screen flex flex-col"> <div class='min-h-screen flex flex-col'>
{#await getData()} {#await getData()}
<svg class="h-8 w-8 animate-spin mx-auto my-20" viewBox="3 3 18 18"> <svg class='h-8 w-8 animate-spin mx-auto my-20' viewBox='3 3 18 18'>
<path <path
class="fill-black" class='fill-black'
d="M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z" d='M12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5ZM3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12Z'
/> />
<path <path
class="fill-blue-100" class='fill-blue-100'
d="M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z" d='M16.9497 7.05015C14.2161 4.31648 9.78392 4.31648 7.05025 7.05015C6.65973 7.44067 6.02656 7.44067 5.63604 7.05015C5.24551 6.65962 5.24551 6.02646 5.63604 5.63593C9.15076 2.12121 14.8492 2.12121 18.364 5.63593C18.7545 6.02646 18.7545 6.65962 18.364 7.05015C17.9734 7.44067 17.3403 7.44067 16.9497 7.05015Z'
/> />
</svg> </svg>
{:then quizzes} {:then quizzes}
<div class="flex flex-col w-fit mx-auto"> <div class='flex flex-col w-fit mx-auto'>
<!-- <button <!-- <button
class='px-4 py-2 font-medium tracking-wide text-gray-500 whitespace-nowrap dark:text-gray-400 capitalize transition-colors dark:bg-gray-700 duration-200 transform bg-gray-50 rounded-md hover:bg-green-600 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80'> class='px-4 py-2 font-medium tracking-wide text-gray-500 whitespace-nowrap dark:text-gray-400 capitalize transition-colors dark:bg-gray-700 duration-200 transform bg-gray-50 rounded-md hover:bg-green-600 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80'>
Primary Primary
</button>--> </button>-->
<div class="w-full grid grid-cols-4 gap-2"> <div class='w-full grid grid-cols-4 gap-2'>
<a <a
href="/create" href='/create'
class="px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50" class='px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50'
>{$t('words.create')} >{$t('words.create')}
</a> </a>
<a <a
href="/import" href='/import'
class="px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50" class='px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50'
>{$t('words.import')} >{$t('words.import')}
</a> </a>
<a <a
href="/api/v1/users/logout" href='/api/v1/users/logout'
class="px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50" class='px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50'
>{$t('words.logout')} >{$t('words.logout')}
</a> </a>
<a <a
href="/account/settings" href='/account/settings'
class="px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50" class='px-4 py-2 leading-5 text-white transition-colors duration-200 transform bg-gray-700 rounded text-center hover:bg-gray-600 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50'
> >
{$t('words.settings')} {$t('words.settings')}
</a> </a>
</div> </div>
<div class="overflow-x-auto sm:-mx-8 lg:-mx-8"> <div class='overflow-x-auto sm:-mx-8 lg:-mx-8'>
<div class="inline-block py-2 min-w-full sm:px-6 lg:px-8"> <div class='inline-block py-2 min-w-full sm:px-6 lg:px-8'>
<div class="overflow-hidden shadow-md sm:rounded-lg"> <div class='overflow-hidden shadow-md sm:rounded-lg'>
<table class="min-w-full"> <table class='min-w-full'>
<thead class="bg-gray-50 dark:bg-gray-700"> <thead class='bg-gray-50 dark:bg-gray-700'>
<tr> <tr>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('words.title')} {$t('words.title')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('overview_page.created_at')} {$t('overview_page.created_at')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('overview_page.question_count')} {$t('overview_page.question_count')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('words.play')} {$t('words.play')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('words.edit')} {$t('words.edit')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('words.delete')} {$t('words.delete')}
</th> </th>
<th <th
scope="col" scope='col'
class="py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400" class='py-3 px-6 text-xs font-medium tracking-wider text-left text-gray-700 uppercase dark:text-gray-400'
> >
{$t('words.public')} {$t('words.public')}
</th> </th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{#each quizzes as quiz} {#each quizzes as quiz}
<tr <tr
class="bg-white border-b dark:bg-gray-800 dark:border-gray-700" class='bg-white border-b dark:bg-gray-800 dark:border-gray-700'
>
<td
class='py-4 px-6 text-sm font-medium text-gray-900 whitespace-nowrap dark:text-white'
> >
<td {quiz.title}
class="py-4 px-6 text-sm font-medium text-gray-900 whitespace-nowrap dark:text-white" </td>
> <td
{quiz.title} class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
</td> >
<td {formatDate(quiz.created_at)}
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400" </td>
> <td
{formatDate(quiz.created_at)} class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
</td> >
<td {quiz.questions.length}
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400" </td>
> <td
{quiz.questions.length} class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
</td> >
<td <button
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400" on:click={() => {
>
<button
on:click={() => {
startGame(quiz.id); startGame(quiz.id);
}} }}
class="border border-green-600" class='border border-green-600'
>
{$t('words.start')}
</button>
</td>
<td
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400"
> >
<a {$t('words.start')}
href="/edit?quiz_id={quiz.id}" </button>
class="border border-yellow-600" </td>
>{$t('words.edit')}</a <td
> class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
</td> >
<td <a
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400" href='/edit?quiz_id={quiz.id}'
class='border border-yellow-600'
>{$t('words.edit')}</a
> >
<button </td>
on:click={() => { <td
class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
>
<button
on:click={() => {
deleteQuiz(quiz.id); deleteQuiz(quiz.id);
}} }}
class="border border-red-600" class='border border-red-600'
>
{$t('words.delete')}
</button>
</td>
<td
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400"
> >
{#if quiz.public} {$t('words.delete')}
</button>
{:else} </td>
<td
{/if} class='py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400'
</td> >
</tr> {#if quiz.public}
{/each}
{:else}
{/if}
</td>
</tr>
{/each}
</tbody> </tbody>
</table> </table>
</div> </div>
+5 -4
View File
@@ -1,5 +1,6 @@
<script context="module" lang="ts"> <script context='module' lang='ts'>
import { signedIn } from '$lib/stores'; import { signedIn } from '$lib/stores';
export async function load({ url, session }) { export async function load({ url, session }) {
if (session.authenticated) { if (session.authenticated) {
signedIn.set(true); signedIn.set(true);
@@ -13,7 +14,7 @@
} }
</script> </script>
<script lang="ts"> <script lang='ts'>
import { socket } from '$lib/socket'; import { socket } from '$lib/socket';
import JoinGame from '$lib/play/join.svelte'; import JoinGame from '$lib/play/join.svelte';
import type { Answer, QuizData } from '../app'; import type { Answer, QuizData } from '../app';
@@ -31,7 +32,7 @@
} }
// Variables init // Variables init
let question_index = ''; let question_index: string = '';
let unique = {}; let unique = {};
navbarVisible.set(false); navbarVisible.set(false);
let game_pin_valid: boolean; let game_pin_valid: boolean;
@@ -79,7 +80,7 @@
{#if gameData !== undefined} {#if gameData !== undefined}
{#each gameData.questions as question} {#each gameData.questions as question}
{#if question.image !== undefined} {#if question.image !== undefined}
<link rel="preload" as="image" href={question.image} /> <link rel='preload' as='image' href={question.image} />
{/if} {/if}
{/each} {/each}
{/if} {/if}