MED-151: add profile view and working smoking dashboard card (#71)
* MED-151: add profile view and working smoking dashboard card * update zod * move some components to shared * move some components to shared * remove console.logs * remove unused password form components * only check null for variant * use pathsconfig
This commit is contained in:
@@ -41,6 +41,7 @@ export const defaultI18nNamespaces = [
|
||||
'orders',
|
||||
'analysis-results',
|
||||
'doctor',
|
||||
'error',
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,8 +1,14 @@
|
||||
import type { Tables } from '@/packages/supabase/src/database.types';
|
||||
|
||||
import { AccountWithParams } from '@kit/accounts/api';
|
||||
import { getSupabaseServerAdminClient } from '@kit/supabase/server-admin-client';
|
||||
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
||||
|
||||
import { AccountSettings } from '~/home/(user)/settings/_lib/account-settings.schema';
|
||||
|
||||
import { AccountPreferences } from '../../app/home/(user)/settings/_lib/account-preferences.schema';
|
||||
import { updateCustomer } from '../../packages/features/medusa-storefront/src/lib/data';
|
||||
|
||||
type Account = Tables<{ schema: 'medreport' }, 'accounts'>;
|
||||
type Membership = Tables<{ schema: 'medreport' }, 'accounts_memberships'>;
|
||||
|
||||
@@ -61,7 +67,9 @@ export async function getDoctorAccounts() {
|
||||
}
|
||||
|
||||
export async function getAssignedDoctorAccount(analysisOrderId: number) {
|
||||
const { data: doctorUser } = await getSupabaseServerAdminClient()
|
||||
const supabase = getSupabaseServerAdminClient();
|
||||
|
||||
const { data: doctorUser } = await supabase
|
||||
.schema('medreport')
|
||||
.from('doctor_analysis_feedback')
|
||||
.select('doctor_user_id')
|
||||
@@ -73,7 +81,7 @@ export async function getAssignedDoctorAccount(analysisOrderId: number) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const { data } = await getSupabaseServerAdminClient()
|
||||
const { data } = await supabase
|
||||
.schema('medreport')
|
||||
.from('accounts')
|
||||
.select('email')
|
||||
@@ -81,3 +89,58 @@ export async function getAssignedDoctorAccount(analysisOrderId: number) {
|
||||
|
||||
return { email: data?.[0]?.email };
|
||||
}
|
||||
|
||||
export async function updatePersonalAccount(
|
||||
accountId: string,
|
||||
account: AccountSettings,
|
||||
) {
|
||||
const supabase = getSupabaseServerClient();
|
||||
|
||||
return Promise.all([
|
||||
supabase
|
||||
.schema('medreport')
|
||||
.from('accounts')
|
||||
.update({
|
||||
name: account.firstName,
|
||||
last_name: account.lastName,
|
||||
email: account.email,
|
||||
phone: account.phone,
|
||||
})
|
||||
.eq('id', accountId)
|
||||
.throwOnError(),
|
||||
supabase
|
||||
.schema('medreport')
|
||||
.from('account_params')
|
||||
.upsert(
|
||||
{
|
||||
height: account.accountParams.height,
|
||||
weight: account.accountParams.weight,
|
||||
is_smoker: account.accountParams.isSmoker,
|
||||
},
|
||||
{ onConflict: 'account_id' },
|
||||
)
|
||||
.throwOnError(),
|
||||
updateCustomer({
|
||||
first_name: account.firstName,
|
||||
last_name: account.lastName,
|
||||
phone: account.phone,
|
||||
}),
|
||||
]);
|
||||
}
|
||||
export async function updatePersonalAccountPreferences(
|
||||
accountId: string,
|
||||
preferences: AccountPreferences,
|
||||
) {
|
||||
const supabase = getSupabaseServerClient();
|
||||
|
||||
return supabase
|
||||
.schema('medreport')
|
||||
.from('accounts')
|
||||
.update({
|
||||
preferred_locale: preferences.preferredLanguage,
|
||||
has_consent_anonymized_company_statistics:
|
||||
preferences.isConsentToAnonymizedCompanyStatistics,
|
||||
})
|
||||
.eq('id', accountId)
|
||||
.throwOnError();
|
||||
}
|
||||
|
||||
@@ -16,12 +16,12 @@ const env = () =>
|
||||
.object({
|
||||
medusaBackendPublicUrl: z
|
||||
.string({
|
||||
required_error: 'MEDUSA_BACKEND_PUBLIC_URL is required',
|
||||
error: 'MEDUSA_BACKEND_PUBLIC_URL is required',
|
||||
})
|
||||
.min(1),
|
||||
siteUrl: z
|
||||
.string({
|
||||
required_error: 'NEXT_PUBLIC_SITE_URL is required',
|
||||
error: 'NEXT_PUBLIC_SITE_URL is required',
|
||||
})
|
||||
.min(1),
|
||||
})
|
||||
|
||||
@@ -2,15 +2,14 @@ import { z } from 'zod';
|
||||
|
||||
export const companyOfferSchema = z.object({
|
||||
companyName: z.string({
|
||||
required_error: 'Company name is required',
|
||||
error: 'Company name is required',
|
||||
}),
|
||||
contactPerson: z.string({
|
||||
required_error: 'Contact person is required',
|
||||
error: 'Contact person is required',
|
||||
}),
|
||||
email: z
|
||||
.string({
|
||||
required_error: 'Email is required',
|
||||
})
|
||||
.email('Invalid email'),
|
||||
.email({
|
||||
error: 'Invalid email',
|
||||
}),
|
||||
phone: z.string().optional(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user