forked from trent_larson/crowd-funder-for-time-pwa
Merge branch 'master' into clean-db-disconnects
- Resolves merge conflicts from master branch integration - Includes latest features and bug fixes from master - Maintains clean-db-disconnects branch functionality Files affected: Multiple components, views, and utilities Timestamp: Wed Oct 22 07:26:21 AM UTC 2025
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<QuickNav selected="Profile" />
|
||||
<TopMessage />
|
||||
|
||||
<!-- CONTENT -->
|
||||
<main
|
||||
@@ -9,10 +8,22 @@
|
||||
role="main"
|
||||
aria-label="Account Profile"
|
||||
>
|
||||
<!-- Heading -->
|
||||
<h1 id="ViewHeading" class="text-4xl text-center font-light">
|
||||
Your Identity
|
||||
</h1>
|
||||
<TopMessage />
|
||||
|
||||
<!-- Main View Heading -->
|
||||
<div class="flex gap-4 items-center mb-8">
|
||||
<h1 id="ViewHeading" class="text-2xl font-bold leading-none">
|
||||
Your Identity
|
||||
</h1>
|
||||
|
||||
<!-- Help button -->
|
||||
<router-link
|
||||
:to="{ name: 'help' }"
|
||||
class="block ms-auto text-sm text-center text-white bg-gradient-to-b from-blue-400 to-blue-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] p-1.5 rounded-full"
|
||||
>
|
||||
<font-awesome icon="question" class="block text-center w-[1em]" />
|
||||
</router-link>
|
||||
</div>
|
||||
|
||||
<!-- ID notice -->
|
||||
<div
|
||||
@@ -150,8 +161,6 @@
|
||||
</section>
|
||||
<PushNotificationPermission ref="pushNotificationPermission" />
|
||||
|
||||
<LocationSearchSection :search-box="searchBox" />
|
||||
|
||||
<!-- User Profile -->
|
||||
<section
|
||||
v-if="isRegistered"
|
||||
@@ -244,6 +253,8 @@
|
||||
<div v-else>Saving...</div>
|
||||
</section>
|
||||
|
||||
<LocationSearchSection :search-box="searchBox" />
|
||||
|
||||
<UsageLimitsSection
|
||||
v-if="activeDid"
|
||||
:loading-limits="loadingLimits"
|
||||
@@ -1064,55 +1075,8 @@ export default class AccountViewView extends Vue {
|
||||
this.hideRegisterPromptOnNewContact =
|
||||
!!settings.hideRegisterPromptOnNewContact;
|
||||
this.isRegistered = !!settings?.isRegistered;
|
||||
|
||||
// If settings show unregistered but user has activeDid, verify registration status
|
||||
if (!this.isRegistered && this.activeDid) {
|
||||
logger.debug(
|
||||
"[AccountViewView] Settings show unregistered, verifying with server:",
|
||||
{
|
||||
activeDid: this.activeDid,
|
||||
apiServer: this.apiServer,
|
||||
},
|
||||
);
|
||||
|
||||
try {
|
||||
const { fetchEndorserRateLimits } = await import(
|
||||
"@/libs/endorserServer"
|
||||
);
|
||||
const resp = await fetchEndorserRateLimits(
|
||||
this.apiServer,
|
||||
this.axios,
|
||||
this.activeDid,
|
||||
);
|
||||
|
||||
if (resp.status === 200) {
|
||||
logger.debug(
|
||||
"[AccountViewView] Server confirms user IS registered, updating settings:",
|
||||
{
|
||||
activeDid: this.activeDid,
|
||||
wasRegistered: false,
|
||||
nowRegistered: true,
|
||||
},
|
||||
);
|
||||
|
||||
// Update settings and state
|
||||
await this.$saveUserSettings(this.activeDid, {
|
||||
isRegistered: true,
|
||||
});
|
||||
this.isRegistered = true;
|
||||
}
|
||||
} catch (error) {
|
||||
logger.debug(
|
||||
"[AccountViewView] Registration check failed (expected for unregistered users):",
|
||||
{
|
||||
activeDid: this.activeDid,
|
||||
error: error instanceof Error ? error.message : String(error),
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
this.isSearchAreasSet = !!settings.searchBoxes;
|
||||
this.searchBox = settings.searchBoxes?.[0] || null;
|
||||
this.isSearchAreasSet =
|
||||
!!settings.searchBoxes && settings.searchBoxes.length > 0;
|
||||
this.notifyingNewActivity = !!settings.notifyingNewActivityTime;
|
||||
this.notifyingNewActivityTime = settings.notifyingNewActivityTime || "";
|
||||
this.notifyingReminder = !!settings.notifyingReminderTime;
|
||||
@@ -1126,6 +1090,7 @@ export default class AccountViewView extends Vue {
|
||||
this.passkeyExpirationMinutes =
|
||||
settings.passkeyExpirationMinutes ?? DEFAULT_PASSKEY_EXPIRATION_MINUTES;
|
||||
this.previousPasskeyExpirationMinutes = this.passkeyExpirationMinutes;
|
||||
this.searchBox = settings.searchBoxes?.[0] || null;
|
||||
this.showGeneralAdvanced = !!settings.showGeneralAdvanced;
|
||||
this.showShortcutBvc = !!settings.showShortcutBvc;
|
||||
this.warnIfProdServer = !!settings.warnIfProdServer;
|
||||
@@ -1511,9 +1476,6 @@ export default class AccountViewView extends Vue {
|
||||
|
||||
if (endorserResp.status === 200) {
|
||||
this.endorserLimits = endorserResp.data;
|
||||
} else {
|
||||
this.limitsMessage = ACCOUNT_VIEW_CONSTANTS.LIMITS.NO_LIMITS_FOUND;
|
||||
this.notify.warning(ACCOUNT_VIEW_CONSTANTS.LIMITS.BAD_SERVER_RESPONSE);
|
||||
}
|
||||
} catch (error) {
|
||||
this.limitsMessage =
|
||||
|
||||
Reference in New Issue
Block a user