forked from trent_larson/crowd-funder-for-time-pwa
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:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user