Skip to content

Commit 99dce09

Browse files
committed
ui improvments
1 parent 9de9dcc commit 99dce09

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

delphinus-ui/src/views/FaqView.vue

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<div class="px-1 mt-1">
1010
<p>In order to use this software, you'll need to enter a string with the characters you want to generate the
1111
flashcards. For Japanese characters, you can separate the characters with the Japanese '、' for Chinese
12-
characters, you can use the Chinese ',' for both of them, you can use the traditional ',' however, you
13-
cannot mix them within the same input.</p>
12+
characters, you can use the Chinese ',' for both of them, you can use the traditional ',' <b>however, you
13+
cannot mix them within the same input.</b></p>
1414
<br>
1515
<p><b>Japanese Example:</b> 本棚、形、空、写真</p>
1616
<p><b>Japanese Example:</b> 本棚,形,空,写真</p>
@@ -33,8 +33,8 @@
3333
<li>Open the <a class="text-primary" href="https://quizlet.com" target="_blank">Quizlet webpage</a> and
3434
within your "Study Set" or "Unidad de Estudio" click on Import</li>
3535
<li>Paste the data generated by the program</li>
36-
<li>On the Between term and definition field, you have to enter /#*#/</li>
37-
<li>On the Between cards field, you have to enter \n\#\n</li>
36+
<li><b>On the Between term and definition field, you have to enter /#*#/</b></li>
37+
<li><b>On the Between cards field, you have to enter \n\#\n</b></li>
3838
<li>Click on Import</li>
3939
<li>Enjoy your flashcards!</li>
4040
</ol>
@@ -71,12 +71,13 @@
7171
<ul class="px-4">
7272
<li>Improve the speed of the Japanese flashcards generation process</li>
7373
<li>Improve the ability of the program to find words in the Japanese flashcards generation process</li>
74-
<li><strike>Give the user the option to select which meaning and reading they want for each word (right
75-
now the
76-
flashcards get generated with all possible meanings)</strike></li>
77-
<li><strike>Give the user the option to input the meaning and reading of the words that have not been
78-
found on
79-
the dictionary</strike></li>
74+
<li style="text-decoration: line-through;">Give the user the option to select which meaning and reading
75+
they want for each word (right
76+
now the flashcards get generated with all possible meanings)</li>
77+
<li style="text-decoration: line-through;">Give the user the option to input the meaning and reading of
78+
the words that have not been
79+
found on
80+
the dictionary</li>
8081
<li>If a word is found more than once, ask the user which is the correct word</li>
8182
<li>Improve the overall design of the application</li>
8283
<li>Add the ability to make an account and save previously generated flashcards</li>

delphinus-ui/src/views/GeneratedView.vue

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
Import to Quizlet
99
</v-card-title>
1010
<v-card-subtitle>
11-
See FAQ Page for more details...
11+
<RouterLink to="faq" style="text-decoration: none; color: inherit">
12+
See FAQ Page for more details...
13+
</RouterLink>
1214
</v-card-subtitle>
1315
<v-card-text>
1416
<ol class="px-4">
@@ -17,8 +19,8 @@
1719
and
1820
within your "Study Set" or "Unidad de Estudio" click on Import</li>
1921
<li>Paste the data generated by the program</li>
20-
<li>On the Between term and definition field, you have to enter /#*#/</li>
21-
<li>On the Between cards field, you have to enter \n\#\n</li>
22+
<li><b>On the Between term and definition field, you have to enter /#*#/</b></li>
23+
<li><b>On the Between cards field, you have to enter \n\#\n</b></li>
2224
<li>Click on Import</li>
2325
<li>Enjoy your flashcards!</li>
2426
</ol>
@@ -31,7 +33,9 @@
3133
Import to Vaia
3234
</v-card-title>
3335
<v-card-subtitle>
34-
See FAQ Page for more details...
36+
<RouterLink to="faq" style="text-decoration: none; color: inherit">
37+
See FAQ Page for more details...
38+
</RouterLink>
3539
</v-card-subtitle>
3640
<v-card-text>
3741
<ol class="px-4">

delphinus-ui/src/views/HomeView.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<template>
22
<custom-title headerText="Generate your flashcards!" />
3+
<div class="text-end my-3 d-none d-sm-block">
4+
<v-btn density="compact" size="sm">
5+
<v-icon icon="mdi-information" />
6+
<v-tooltip activator="parent" location="start">For Japanese characters, you can separate the characters with the
7+
Japanese '、' for Chinese characters, you can use the Chinese ',' for both of them, you can use the traditional ','
8+
however, you cannot mix them within the same input.</v-tooltip>
9+
</v-btn>
10+
</div>
311
<v-form @submit.prevent="submitForm" ref="generateForm">
412
<v-textarea label="Characters" variant="outlined" v-model="characters" :rules="rules"
513
:disabled="loading"></v-textarea>

0 commit comments

Comments
 (0)