mirror of
https://github.com/Discreetly/frontend.git
synced 2026-01-09 21:08:02 -05:00
starting jubmoji integration + package v bump for interfaces
This commit is contained in:
@@ -40,6 +40,7 @@ export async function handleGatewayRequest<T>(
|
||||
alertQueue.enqueue('Already added to room', 'error');
|
||||
break;
|
||||
default:
|
||||
alertQueue.enqueue(result.message, 'error');
|
||||
break;
|
||||
}
|
||||
return null;
|
||||
|
||||
@@ -43,9 +43,11 @@
|
||||
{/if}
|
||||
{roomName}
|
||||
</h2>
|
||||
<div class="hidden sm:block ms-2 text-xs font-mono self-center">
|
||||
[{timeToNextEpoch.toFixed(1)}/{epochLengthSeconds}s]
|
||||
</div>
|
||||
{#if $configStore.beta}
|
||||
<div class="hidden sm:block ms-2 text-xs font-mono self-center">
|
||||
[{timeToNextEpoch.toFixed(0)}/{epochLengthSeconds}s]
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="flex flex-row">
|
||||
{#if connected && onlineMembers !== '?'}
|
||||
@@ -61,7 +63,9 @@
|
||||
</div>
|
||||
<div
|
||||
class="flex flex-row place-content-center"
|
||||
title={`These are action points, you get ${userMessageLimit} every ${epochLengthSeconds} seconds`}
|
||||
title={`These are action points, you get ${userMessageLimit} every ${epochLengthSeconds} seconds. [${timeToNextEpoch.toFixed(
|
||||
0
|
||||
)}/${epochLengthSeconds}s]`}
|
||||
>
|
||||
{#if $configStore.beta === true}<ExperienceMenu />{/if}
|
||||
<AP health={userMessageLimit - $messagesSent} maxHealth={userMessageLimit} />
|
||||
|
||||
2
src/routes/gateways/jubmoji/+page.svelte
Normal file
2
src/routes/gateways/jubmoji/+page.svelte
Normal file
@@ -0,0 +1,2 @@
|
||||
<script lang="ts">
|
||||
</script>
|
||||
@@ -43,7 +43,7 @@
|
||||
<div>Identity Backedup: {JSON.stringify($configStore.signUpStatus.identityBackedUp)}</div>
|
||||
<div>IdentityStore Type: {IdentityStoreE[$configStore.identityStore]}</div>
|
||||
<div on:click={toggleBeta}>Beta: {JSON.stringify($configStore.beta)}</div>
|
||||
<div on:click={toggleAnxiety}>Beta: {JSON.stringify($configStore.anxietyBar)}</div>
|
||||
<div on:click={toggleAnxiety}>AnxietyBar: {JSON.stringify($configStore.anxietyBar)}</div>
|
||||
<div>Hashed Password: {JSON.stringify($configStore.hashedPwd)}</div>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user