Added try...catch and linted

This commit is contained in:
Matthew Raymer
2023-07-03 19:44:41 +08:00
parent bcc6de6fc0
commit 8d8635a3e6
2 changed files with 25 additions and 19 deletions

View File

@@ -40,7 +40,6 @@ export default class AlertMessage extends Vue {
"duration-300": true,
};
}
}
</script>

View File

@@ -150,6 +150,7 @@ export default class ContactsView extends Vue {
// 'created' hook runs when the Vue instance is first created
async created() {
try {
await db.open();
const contactDid = this.$route.query.contactDid as string;
this.contact = (await db.contacts.get(contactDid)) || null;
@@ -161,6 +162,12 @@ export default class ContactsView extends Vue {
if (this.activeDid && this.contact) {
this.loadGives(this.activeDid, this.contact);
}
} catch (err) {
this.alertTitle = "Error";
this.alertMessage =
err.userMessage ||
"There was an error retrieving the latest sweet, sweet action.";
}
}
async loadGives(activeDid: string, contact: Contact) {