Migrate InviteOneAcceptView and QuickActionBvcBeginView to Enhanced Triple Migration Pattern

- Complete database migration from databaseUtil to PlatformServiceMixin
- Migrate all notifications to helper methods + centralized constants
- Extract inline template handlers to documented methods
- Add comprehensive logging and error handling
- Add migration documentation for InviteOneAcceptView
This commit is contained in:
Matthew Raymer
2025-07-09 03:59:37 +00:00
parent 4f92656b7f
commit 6210a088dd
4 changed files with 248 additions and 95 deletions

View File

@@ -201,6 +201,26 @@ export function createBvcSuccessMessage(
}
}
// InviteOneAcceptView.vue specific constants
// Used in: InviteOneAcceptView.vue (handleMissingJwt method - missing invite error)
export const NOTIFY_INVITE_MISSING = {
title: "Missing Invite",
message: "There was no invite. Paste the entire text that has the data.",
};
// Used in: InviteOneAcceptView.vue (handleError method - invite processing error)
export const NOTIFY_INVITE_PROCESSING_ERROR = {
title: "Error",
message: "There was an error processing that invite.",
};
// Used in: InviteOneAcceptView.vue (checkInvite method - truncated invite data error)
export const NOTIFY_INVITE_TRUNCATED_DATA = {
title: "Error",
message:
"That is only part of the invite data; it's missing some at the end. Try another way to get the full data.",
};
// ClaimReportCertificateView.vue specific constants
// Used in: ClaimReportCertificateView.vue (fetchClaim method - error loading claim)
export const NOTIFY_ERROR_LOADING_CLAIM = {