refac: styling

This commit is contained in:
Timothy J. Baek
2024-09-19 03:22:55 +02:00
parent dd4cf102cc
commit ff2fff857a
3 changed files with 28 additions and 61 deletions

View File

@@ -23,6 +23,10 @@
let voices = [];
let voice = '';
// Audio speed control
let speechRate = 1;
const speedOptions = [2, 1.75, 1.5, 1.25, 1, 0.75, 0.5];
const getVoices = async () => {
if ($config.audio.tts.engine === '') {
const getVoicesLoop = setInterval(async () => {
@@ -56,6 +60,7 @@
};
onMount(async () => {
speechRate = $settings.audio?.tts?.speedRate ?? 1;
conversationMode = $settings.conversationMode ?? false;
speechAutoSend = $settings.speechAutoSend ?? false;
responseAutoPlayback = $settings.responseAutoPlayback ?? false;
@@ -83,6 +88,7 @@
engine: STTEngine !== '' ? STTEngine : undefined
},
tts: {
speedRate: speechRate,
voice: voice !== '' ? voice : undefined,
defaultVoice: $config?.audio?.tts?.voice ?? '',
nonLocalVoices: $config.audio.tts.engine === '' ? nonLocalVoices : undefined
@@ -153,6 +159,21 @@
{/if}
</button>
</div>
<div class=" py-0.5 flex w-full justify-between">
<div class=" self-center text-xs font-medium">{$i18n.t('Speed Rate')}</div>
<div class="flex items-center relative">
<select
class="dark:bg-gray-900 w-fit pr-8 rounded px-2 p-1 text-xs bg-transparent outline-none text-right"
bind:value={speechRate}
>
{#each speedOptions as option}
<option value={option} selected={speechRate === option}>{option}x</option>
{/each}
</select>
</div>
</div>
</div>
<hr class=" dark:border-gray-850" />