forked from Kispi/Core
feat(webapp): add check in functionality
This commit is contained in:
parent
eab98a13b7
commit
64f7c7393f
4 changed files with 72 additions and 2 deletions
|
@ -39,6 +39,16 @@ export const AccountService = {
|
||||||
} while(accountDocuments.total > offset);
|
} while(accountDocuments.total > offset);
|
||||||
return accounts;
|
return accounts;
|
||||||
},
|
},
|
||||||
|
async checkIn(accountNumber: string): Promise<IAccount> {
|
||||||
|
const account = await this.getAccount(accountNumber);
|
||||||
|
if(!account) {
|
||||||
|
throw new Error('Account not found');
|
||||||
|
}
|
||||||
|
const accountDocument = await database.updateDocument<IAccount & Models.Document>(ACCOUNTS_COLLECTION_ID, account.$id, {
|
||||||
|
lastCheckIn: Math.floor(+new Date() / 1000),
|
||||||
|
});
|
||||||
|
return accountDocument;
|
||||||
|
},
|
||||||
async addAccount(account: IAccount): Promise<IAccount> {
|
async addAccount(account: IAccount): Promise<IAccount> {
|
||||||
const accountDocument = await database.createDocument<IAccount & Models.Document>(ACCOUNTS_COLLECTION_ID, 'unique()', account);
|
const accountDocument = await database.createDocument<IAccount & Models.Document>(ACCOUNTS_COLLECTION_ID, 'unique()', account);
|
||||||
return accountDocument;
|
return accountDocument;
|
||||||
|
|
|
@ -28,4 +28,17 @@ export class DateService {
|
||||||
year: 'numeric',
|
year: 'numeric',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
public static toTime(date: Date | number): string {
|
||||||
|
if(typeof date === 'number') {
|
||||||
|
date = new Date(date * 1000);
|
||||||
|
}
|
||||||
|
if(!date) {
|
||||||
|
return 'n/a';
|
||||||
|
}
|
||||||
|
return date.toLocaleTimeString('de-DE', {
|
||||||
|
hour: '2-digit',
|
||||||
|
minute: '2-digit',
|
||||||
|
second: '2-digit',
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -131,10 +131,11 @@ onKeyStroke(['e', 'g', 'a'], (e) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
onKeyStroke(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Enter'], async (e) => {
|
onKeyStroke(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Enter'], (e) => {
|
||||||
if(depositModalOpen.value || salaryModalOpen.value || withdrawModalOpen.value) {
|
if(depositModalOpen.value || salaryModalOpen.value || withdrawModalOpen.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
accountNotFound.value = false;
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if(e.key === 'Enter') {
|
if(e.key === 'Enter') {
|
||||||
accountId.value = inputBuffer.value;
|
accountId.value = inputBuffer.value;
|
||||||
|
|
|
@ -1,10 +1,56 @@
|
||||||
<template>
|
<template>
|
||||||
<AtomHeroText>John Doe um 17:39:33</AtomHeroText>
|
<AtomHeroText>
|
||||||
|
{{ message }}
|
||||||
|
<div
|
||||||
|
v-if="accountNotFound"
|
||||||
|
class="alert alert-error shadow-lg mt-6"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<XCircleIcon class="w-6 h-6" />
|
||||||
|
<span class="text-base font-normal">Fehler: Der Account wurde nicht gefunden.</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</AtomHeroText>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { onKeyStroke, promiseTimeout } from '@vueuse/core';
|
||||||
|
import { AccountService } from '../services/account.service';
|
||||||
|
import { DateService } from '../services/date.service';
|
||||||
import AtomHeroText from '../atoms/AtomHeroText.vue';
|
import AtomHeroText from '../atoms/AtomHeroText.vue';
|
||||||
|
|
||||||
|
const DEFAULT_MESSAGE = 'Bitte Karte scannen...';
|
||||||
|
const accountId = ref<string>('');
|
||||||
|
const message = ref<string>(DEFAULT_MESSAGE);
|
||||||
|
const accountNotFound = ref<boolean>(false);
|
||||||
|
|
||||||
|
onKeyStroke(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Enter'], async (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
accountNotFound.value = false;
|
||||||
|
if(e.key === 'Enter') {
|
||||||
|
try {
|
||||||
|
const account = await AccountService.checkIn(accountId.value);
|
||||||
|
accountId.value = '';
|
||||||
|
message.value = `${account.firstName} ${account.lastName} um ${DateService.toTime(account.lastCheckIn)}`;
|
||||||
|
await promiseTimeout(5000);
|
||||||
|
message.value = DEFAULT_MESSAGE;
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (error: any) {
|
||||||
|
if(error.message == 'Account not found') {
|
||||||
|
accountId.value = '';
|
||||||
|
accountNotFound.value = true;
|
||||||
|
await promiseTimeout(3000);
|
||||||
|
accountNotFound.value = false;
|
||||||
|
} else {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
accountId.value += e.key;
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
Loading…
Reference in a new issue