-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ import { EmailSubscriptionType } from '@/types'; | |
useTitle('Email notifications'); | ||
const CREATE_SUBSCRIBE_FORM_STATE = { | ||
const SUBSCRIBE_FORM_STATE = { | ||
email: '', | ||
subscriptions: [] | ||
}; | ||
|
@@ -15,12 +15,13 @@ const DEFINITION = { | |
type: 'object', | ||
title: 'Email subscription', | ||
additionalProperties: false, | ||
required: ['email'], | ||
required: [], | ||
properties: { | ||
email: { | ||
type: 'string', | ||
format: 'email', | ||
title: 'Email', | ||
maxLength: 256, | ||
examples: ['e.g. [email protected]'] | ||
}, | ||
subscriptions: { | ||
|
@@ -39,7 +40,7 @@ const SUBSCRIPTIONS_TYPE = [ | |
key: 'summary', | ||
title: 'Weekly summary', | ||
description: | ||
'Get a weekly report detailing the activity in your followed spaces.' | ||
'Get a weekly report detailing the activities in your followed spaces.' | ||
}, | ||
{ | ||
key: 'newProposal', | ||
|
@@ -59,22 +60,23 @@ const SUBSCRIPTIONS_TYPE = [ | |
const usersStore = useUsersStore(); | ||
const { web3 } = useWeb3(); | ||
const user = computed(() => usersStore.getUser(web3.value.account)); | ||
const loading = computed( | ||
() => web3.value.authLoading || usersStore.users[web3.value.account]?.loading | ||
); | ||
const form: Ref<{ | ||
const form = ref<{ | ||
email: string; | ||
subscriptions: EmailSubscriptionType[]; | ||
}> = ref(clone(CREATE_SUBSCRIBE_FORM_STATE)); | ||
}>(clone(SUBSCRIBE_FORM_STATE)); | ||
const formErrors = ref<Record<string, any>>({}); | ||
const formValidated = ref(false); | ||
const subscriptions = reactive<Record<EmailSubscriptionType, boolean>>({ | ||
summary: true, | ||
newProposal: true, | ||
closedProposal: true | ||
}); | ||
const formErrors = ref({} as Record<string, any>); | ||
const formValidated = ref(false); | ||
const user = computed(() => usersStore.getUser(web3.value.account)); | ||
const loading = computed( | ||
() => web3.value.authLoading || usersStore.users[web3.value.account]?.loading | ||
); | ||
function handleCreateSubscribeClick() {} | ||
|
@@ -125,10 +127,10 @@ watchEffect(async () => { | |
</div> | ||
<div class="s-box"> | ||
<UiForm | ||
:error="formErrors" | ||
:model-value="form" | ||
:definition="DEFINITION" | ||
<UiInputString | ||
v-model="form.email" | ||
:error="formErrors.email" | ||
:definition="DEFINITION.properties.email" | ||
/> | ||
<UiButton @click="handleCreateSubscribeClick">Subscribe now</UiButton> | ||
</div> | ||
|