import { targets, controller, target } from '@github/catalyst'; import { html, TemplateResult } from 'core/utils'; import { AuthService, TransactionsService, TransactionTypeService, WalletService } from 'services/'; import { AppFormElement, InputFieldElement } from 'components/'; import { RouterService } from 'core/services'; import { BasePageElement } from 'common/'; import { AppDropdownElement } from 'components/app-dropdown/AppDropdownElement'; import dayjs from 'dayjs'; @controller class TransactionCreateElement extends BasePageElement { @targets inputs: Array; @target appForm: AppFormElement; private transactionService: TransactionsService; private transactionTypeService: TransactionTypeService; private walletService: WalletService; walletData: any = null; authService: AuthService; errorMessage: string; private initial: boolean = false; constructor() { super({ title: 'New Transaction', }); } elementConnected = (): void => { this.walletService = new WalletService(this.appMain?.appService); this.transactionService = new TransactionsService(this.appMain?.appService); this.transactionTypeService = new TransactionTypeService(this.appMain?.appService); this.authService = new AuthService(this.appMain.appService); this.walletData = this.getData(); this.update(); if (this.walletData && this.walletData.walletId) { this.setTransactionType(); } else { this.initial = true; } }; get nameInput(): InputFieldElement | AppDropdownElement { for (const i in this.inputs) { if (this.inputs[i]?.name == 'name') { return this.inputs[i]; } } } get values(): any { const formObject: any = {}; this.inputs.forEach((input: InputFieldElement) => { const inputType = input.inp; formObject[input.name] = (inputType as HTMLInputElement).value; }); return formObject; } setTransactionType = async () => { this.appForm.isValid = false; try { const response = await this.transactionTypeService.getAll(); this.walletData.transactionTypeId = response?.find((type) => type.type == this.walletData.transactionType)?.id; } catch (err) { } finally { this.appForm.isValid = true; } }; getWallets = async (options): Promise => { try { const response = await this.walletService.getAll(options); return response; } catch (err) {} }; getTypes = async (options): Promise => { try { const response = await this.transactionTypeService.getAll(options); return response; } catch (err) {} }; onSubmit = async (values): Promise => { try { if (!this.validate()) { return; } const { description: description, wallet: walletId, amount, transactionType: transactionTypeId, transactionDate, } = values; const formattedDate = dayjs(transactionDate).format(); const walletData = this.walletData; const formData = { description, amount, walletId: walletData && walletData.walletId ? walletData.walletId : walletId, transactionDate: formattedDate, transactionTypeId: walletData && walletData.transactionTypeId ? walletData.transactionTypeId : transactionTypeId, }; const response = await this.transactionService.post(formData); if (response?.id) { this.appMain.triggerTransactionUpdate(); this.appMain.pushToast('success', 'Transaction created successfully!'); if (walletData.walletId) { this.appMain?.closeModal(); } else { this.routerService.goTo('/history', { walletId: response.walletId, }); } } } catch (err) { this.errorMessage = 'Unable to create transaction!'; this.update(); } }; validate(): boolean { let _return = true; this.inputs.forEach((input: InputFieldElement) => { const valid: boolean = input.validate(); if (!valid) _return = false; }); return _return; } render = (): TemplateResult => { const renderInput = (type, name, label, rules, hide?, customAction?) => { if (hide) { return html``; } return html``; }; const renderDropdown = (fetch, name, label, rules, hide?) => { if (hide) { return html``; } return html``; }; return html` ${renderInput('number', 'amount', 'Amount', 'required')} ${renderInput('text', 'description', 'Description', 'required')} ${renderInput('date', 'transactionDate', 'Transaction date', 'required')} ${renderDropdown( 'transaction-create#getWallets', 'wallet', 'Wallet', 'required', this.walletData && this.walletData.walletId )} ${renderDropdown( 'transaction-create#getTypes', 'transactionType', 'Transaction Type', 'required', this.walletData && this.walletData.walletId )} ${this.errorMessage ? html`
${this.errorMessage}
` : html``}
`; }; } export type { TransactionCreateElement };