Add multi-currency support

This commit is contained in:
Djuri Baars 2024-09-05 01:59:05 +02:00
parent 3f7384320f
commit 1ebd74fea2
8 changed files with 91 additions and 9 deletions

View File

@ -41,7 +41,8 @@
"flDisable": "Displaybeleuchtung deaktivieren", "flDisable": "Displaybeleuchtung deaktivieren",
"httpAuthUser": "WebUI-Benutzername", "httpAuthUser": "WebUI-Benutzername",
"httpAuthPass": "WebUI-Passwort", "httpAuthPass": "WebUI-Passwort",
"httpAuthText": "Schützt nur die WebUI mit einem Passwort, nicht API-Aufrufe." "httpAuthText": "Schützt nur die WebUI mit einem Passwort, nicht API-Aufrufe.",
"currencies": "Währungen"
}, },
"control": { "control": {
"systemInfo": "Systeminfo", "systemInfo": "Systeminfo",

View File

@ -51,7 +51,8 @@
"httpAuthEnabled": "Require authentication for WebUI", "httpAuthEnabled": "Require authentication for WebUI",
"httpAuthUser": "WebUI Username", "httpAuthUser": "WebUI Username",
"httpAuthPass": "WebUI Password", "httpAuthPass": "WebUI Password",
"httpAuthText": "Only password-protects WebUI, not API-calls." "httpAuthText": "Only password-protects WebUI, not API-calls.",
"currencies": "Currencies"
}, },
"control": { "control": {
"systemInfo": "System info", "systemInfo": "System info",

View File

@ -40,7 +40,8 @@
"flDisable": "Desactivar luz de la pantalla", "flDisable": "Desactivar luz de la pantalla",
"httpAuthUser": "Nombre de usuario WebUI", "httpAuthUser": "Nombre de usuario WebUI",
"httpAuthPass": "Contraseña WebUI", "httpAuthPass": "Contraseña WebUI",
"httpAuthText": "Solo la WebUI está protegida con contraseña, no las llamadas API." "httpAuthText": "Solo la WebUI está protegida con contraseña, no las llamadas API.",
"currencies": "Monedas"
}, },
"control": { "control": {
"turnOff": "Apagar", "turnOff": "Apagar",

View File

@ -41,7 +41,8 @@
"flDisable": "Schakel Displaylicht uit", "flDisable": "Schakel Displaylicht uit",
"httpAuthUser": "WebUI-gebruikersnaam", "httpAuthUser": "WebUI-gebruikersnaam",
"httpAuthPass": "WebUI-wachtwoord", "httpAuthPass": "WebUI-wachtwoord",
"httpAuthText": "Beveiligd enkel WebUI, niet de API." "httpAuthText": "Beveiligd enkel WebUI, niet de API.",
"currencies": "Valuta's"
}, },
"control": { "control": {
"systemInfo": "Systeeminformatie", "systemInfo": "Systeeminformatie",

View File

@ -4,7 +4,9 @@
//@import "@fontsource/antonio/latin-400.css"; //@import "@fontsource/antonio/latin-400.css";
@import '@fontsource/ubuntu/latin-400.css'; @import '@fontsource/ubuntu/latin-400.css';
@import '@fontsource/oswald/latin-400.css'; //@import '@fontsource/oswald/latin-400.css';
@import '@fontsource/antonio/latin-400.css';
@import './satsymbol'; @import './satsymbol';
$color-mode-type: media-query; $color-mode-type: media-query;
@ -62,7 +64,7 @@ nav {
background: #000; background: #000;
display: flex; display: flex;
font-size: calc(3vw + 3vh); font-size: calc(3vw + 3vh);
font-family: 'Oswald', sans-serif; font-family: 'Antonio', sans-serif;
font-weight: 400; font-weight: 400;
padding: 10px; padding: 10px;
gap: 10px; gap: 10px;
@ -76,7 +78,7 @@ nav {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
text-align: center; text-align: center;
padding: 10px; padding: 10px 10px 15px 10px;
width: calc(12vw + 12vh); /* Set a dynamic width based on viewport */ width: calc(12vw + 12vh); /* Set a dynamic width based on viewport */
aspect-ratio: 1 / 1.5; /* Maintain a 1:1 aspect ratio */ aspect-ratio: 1 / 1.5; /* Maintain a 1:1 aspect ratio */
@ -90,6 +92,10 @@ nav {
} }
} }
.digit.sats {
padding-top: 35px;
}
.mediumText { .mediumText {
font-size: calc(1.25vw + 1.25vh); font-size: calc(1.25vw + 1.25vh);
} }

View File

@ -9,6 +9,38 @@
}; };
export let className = 'btclock-wrapper'; export let className = 'btclock-wrapper';
// Define the currency symbols as constants
const CURRENCY_USD = '$';
const CURRENCY_EUR = '[';
const CURRENCY_GBP = ']';
const CURRENCY_JPY = '^';
const CURRENCY_AUD = '_';
//const CURRENCY_CHF = '_';
const CURRENCY_CAD = '`';
function getCurrencySymbol(input: string): string {
// Split the string into an array of characters to process each one
return input
.split('')
.map((char) => {
switch (char) {
case CURRENCY_EUR:
return '€'; // Euro symbol
case CURRENCY_GBP:
return '£'; // Pound symbol
case CURRENCY_JPY:
return '¥'; // Yen symbol
case CURRENCY_AUD:
case CURRENCY_CAD:
case CURRENCY_USD:
return '$'; // Dollar symbol
default:
return char; // Return the original character if no match
}
})
.join(''); // Join the array back into a string
}
</script> </script>
<div class={className} id={className}> <div class={className} id={className}>
@ -44,7 +76,7 @@
{:else if char.length === 0 || char === ' '} {:else if char.length === 0 || char === ' '}
<div class="digit">&nbsp;&nbsp;</div> <div class="digit">&nbsp;&nbsp;</div>
{:else} {:else}
<div class="digit">{char}</div> <div class="digit">{getCurrencySymbol(char)}</div>
{/if} {/if}
{/each} {/each}
</div> </div>

View File

@ -160,7 +160,6 @@
let showPassword = false; let showPassword = false;
// You can also add more props if needed
export let xs = 12; export let xs = 12;
export let sm = xs; export let sm = xs;
export let md = sm; export let md = sm;
@ -768,6 +767,30 @@
{/each} {/each}
{/if} {/if}
</Row> </Row>
{#if $settings.actCurrencies}
<Row>
<h3>{$_('section.settings.currencies')}</h3>
<small>{$_('restartRequired')}</small>
{#if $settings.availableCurrencies}
{#each $settings.availableCurrencies as c}
<Col md="6" xl="12" xxl="6">
<div class="form-check form-control-{$uiSettings.inputSize}">
<input
id="currency_{c}"
bind:group={$settings.actCurrencies}
value={c}
type="checkbox"
class="form-check-input"
bsSize={$uiSettings.inputSize}
label={c}
/>
<label class="form-check-label" for="currency_{c}">{c}</label>
</div>
</Col>
{/each}
{/if}
</Row>
{/if}
<Row> <Row>
<Col class="d-flex justify-content-end"> <Col class="d-flex justify-content-end">
<Button on:click={handleReset} color="secondary">{$_('button.reset')}</Button> <Button on:click={handleReset} color="secondary">{$_('button.reset')}</Button>

View File

@ -83,6 +83,10 @@
fetch(`${PUBLIC_BASE_URL}/api/show/screen/${id}`).catch(() => {}); fetch(`${PUBLIC_BASE_URL}/api/show/screen/${id}`).catch(() => {});
}; };
const setCurrency = (c: string) => () => {
fetch(`${PUBLIC_BASE_URL}/api/show/currency/${c}`).catch(() => {});
};
const toggleTimer = (currentStatus: boolean) => (e: Event) => { const toggleTimer = (currentStatus: boolean) => (e: Event) => {
e.preventDefault(); e.preventDefault();
if (currentStatus) { if (currentStatus) {
@ -131,6 +135,19 @@
{/each} {/each}
</ButtonGroup> </ButtonGroup>
</div> </div>
{#if $settings.actCurrencies}
<div class="d-flex justify-content-center d-none d-sm-flex mt-2">
<ButtonGroup size="sm">
{#each $settings.actCurrencies as c}
<Button
color="outline-success"
active={$status.currency == c}
on:click={setCurrency(c)}>{c}</Button
>
{/each}
</ButtonGroup>
</div>
{/if}
<hr /> <hr />
{#if $status.data} {#if $status.data}
<section class={lightMode ? 'lightMode' : 'darkMode'}> <section class={lightMode ? 'lightMode' : 'darkMode'}>