Added remove-buttons in editor instead of right-click

This commit is contained in:
Mawoka
2022-12-28 18:11:11 +01:00
parent 6f08613382
commit 7f949b585e
3 changed files with 81 additions and 25 deletions
+24 -5
View File
@@ -44,21 +44,40 @@
{#each data.questions[selected_question].answers as answer, index} {#each data.questions[selected_question].answers as answer, index}
<div <div
out:fade={{ duration: 150 }} out:fade={{ duration: 150 }}
class="p-4 rounded-lg flex justify-center w-full transition" class="p-4 rounded-lg flex justify-center w-full transition relative"
class:bg-red-500={!answer.right} class:bg-red-500={!answer.right}
class:bg-green-500={answer.right} class:bg-green-500={answer.right}
class:bg-yellow-500={!reach(ABCDQuestionSchema, 'answer').isValidSync( class:bg-yellow-500={!reach(ABCDQuestionSchema, 'answer').isValidSync(
answer.answer answer.answer
)} )}
> >
<input <button
bind:value={answer.answer} class="rounded-full absolute -top-2 -right-2 opacity-70 hover:opacity-100 transition"
type="text" type="button"
on:contextmenu|preventDefault={() => { on:click={() => {
data.questions[selected_question].answers.splice(index, 1); data.questions[selected_question].answers.splice(index, 1);
data.questions[selected_question].answers = data.questions[selected_question].answers =
data.questions[selected_question].answers; data.questions[selected_question].answers;
}} }}
>
<svg
class="w-6 h-6 bg-red-500 rounded-full"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
</button>
<input
bind:value={answer.answer}
type="text"
class="border-b-2 border-dotted w-5/6 text-center rounded-lg" class="border-b-2 border-dotted w-5/6 text-center rounded-lg"
style="background-color: {answer.color ?? 'transparent'}" style="background-color: {answer.color ?? 'transparent'}"
placeholder="Empty..." placeholder="Empty..."
+27 -9
View File
@@ -93,16 +93,37 @@
{/await} {/await}
</div> </div>
{#if data.questions[selected_question].image != undefined && data.questions[selected_question].image !== ''} {#if data.questions[selected_question].image != undefined && data.questions[selected_question].image !== ''}
<div class="flex justify-center pt-10 w-full max-h-72 w-full"> <div class="flex justify-center pt-10 w-full max-h-72">
<div class="max-h-72 h-auto relative">
<button
class="rounded-full absolute -top-2 -right-2 opacity-70 hover:opacity-100 transition"
type="button"
on:click={() => {
data.questions[selected_question].image = '';
}}
>
<svg
class="w-6 h-6 bg-red-500 rounded-full"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
</button>
<img <img
src={data.questions[selected_question].image} src={data.questions[selected_question].image}
alt="not available" alt="not available"
class="max-h-72 h-auto w-auto" class="max-h-64 h-auto w-auto"
on:contextmenu|preventDefault={() => {
data.questions[selected_question].image = '';
}}
/> />
</div> </div>
</div>
{:else if pow_data === undefined} {:else if pow_data === undefined}
<a <a
href="/docs/pow" href="/docs/pow"
@@ -163,7 +184,7 @@
<option value={QuizQuestionType.VOTING}>{$t('words.voting')}</option> <option value={QuizQuestionType.VOTING}>{$t('words.voting')}</option>
</select> </select>
</div> </div>
<div class="flex justify-center pt-10 w-full"> <div class="flex justify-center py-10 w-full">
{#if data.questions[selected_question].type === QuizQuestionType.ABCD} {#if data.questions[selected_question].type === QuizQuestionType.ABCD}
{#await import('$lib/editor/ABCDEditorPart.svelte')} {#await import('$lib/editor/ABCDEditorPart.svelte')}
<Spinner my_20={false} /> <Spinner my_20={false} />
@@ -180,9 +201,6 @@
{/await} {/await}
{/if} {/if}
</div> </div>
<p class="italic text-center mt-auto pt-4">
{$t('editor_page.right_click_to_delete')}
</p>
</div> </div>
{/if} {/if}
</div> </div>
+24 -5
View File
@@ -147,18 +147,37 @@
class="bg-white shadow rounded-lg h-40 p-2 mb-6 hover:cursor-pointer drop-shadow-2xl border border-gray-500 dark:bg-gray-600 transition" class="bg-white shadow rounded-lg h-40 p-2 mb-6 hover:cursor-pointer drop-shadow-2xl border border-gray-500 dark:bg-gray-600 transition"
class:bg-green-300={index === selected_question} class:bg-green-300={index === selected_question}
class:dark:bg-green-500={index === selected_question} class:dark:bg-green-500={index === selected_question}
on:contextmenu|preventDefault={() => { on:click={() => {
setSelectedQuestion(index);
}}
bind:this={arr_of_cards[index]}
>
<button
class="rounded-full absolute -top-3 -right-3 opacity-70 hover:opacity-100 transition"
type="button"
on:click={() => {
if (confirm('Do you really want to delete this Question?')) { if (confirm('Do you really want to delete this Question?')) {
selected_question = selected_question - 1; selected_question = selected_question - 1;
data.questions.splice(index, 1); data.questions.splice(index, 1);
data.questions = data.questions; data.questions = data.questions;
} }
}} }}
on:click={() => {
setSelectedQuestion(index);
}}
bind:this={arr_of_cards[index]}
> >
<svg
class="w-6 h-6 bg-red-500 rounded-full"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
</button>
<div <div
use:tippy={{ content: question.question === '' ? 'No title' : question.question }} use:tippy={{ content: question.question === '' ? 'No title' : question.question }}
class="m-1 border border-gray-500 rounded-lg p-0.5" class="m-1 border border-gray-500 rounded-lg p-0.5"