docs: Update migration status after ContactEditView human testing

- Update CURRENT_MIGRATION_STATUS.md with latest progress (34% complete)
- Add ContactEditView.vue to human testing completion list
- Update migration-time-tracker.md with testing metrics and progress
- Document 7 components now human tested, 25 ready for testing
- Update realistic estimates for remaining 60 components

Migration Progress: 32/92 components (34%) | Human Tested: 7 components
This commit is contained in:
Matthew Raymer
2025-07-07 13:06:58 +00:00
parent 861f0ee012
commit dacd30a5d5
4 changed files with 80 additions and 63 deletions

View File

@@ -435,3 +435,23 @@ export const getVisibilitySuccessMessage = (
visible = true,
): string =>
`${name || "That user"} can ${visible ? "" : "not "}see your activity.`;
// ContactEditView.vue constants
export const NOTIFY_CONTACT_NOT_FOUND = {
title: "Contact Not Found",
message: "Contact not found with DID",
};
export const NOTIFY_CONTACT_METHODS_UPDATED = {
title: "Contact Methods Updated",
message: "Contact methods updated. Note that some methods have been updated, such as uppercasing 'email' to 'EMAIL'. Save again if the changes are acceptable.",
};
export const NOTIFY_CONTACT_SAVED = {
title: "Contact Saved",
message: "Contact saved successfully",
};
// Dynamic message template for contact not found (used in ContactEditView.vue)
export const createContactNotFoundMessage = (did: string): string =>
`${NOTIFY_CONTACT_NOT_FOUND.message} ${did}`;