Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
import { useSignal } from '@preact/signals';
|
|
|
|
|
|
|
|
|
|
import { Contact } from '/lib/models/contacts.ts';
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
import { convertObjectToFormData } from '/public/ts/utils/misc.ts';
|
|
|
|
|
import { FormField, generateFieldHtml } from '/public/ts/utils/form.ts';
|
|
|
|
|
import { RequestBody as DeleteRequestBody, ResponseBody as DeleteResponseBody } from '/pages/api/contacts/delete.ts';
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
|
|
|
|
|
interface ViewContactProps {
|
|
|
|
|
addressBookId: string;
|
|
|
|
|
initialContact: Contact;
|
|
|
|
|
formData: Record<string, any>;
|
|
|
|
|
error?: string;
|
|
|
|
|
notice?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function formFields(contact: Contact, updateType: 'raw' | 'ui') {
|
|
|
|
|
const fields: FormField[] = [
|
|
|
|
|
{
|
|
|
|
|
name: 'update-type',
|
|
|
|
|
label: 'Update type',
|
|
|
|
|
type: 'hidden',
|
|
|
|
|
value: updateType,
|
|
|
|
|
readOnly: true,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
if (updateType === 'ui') {
|
|
|
|
|
fields.push({
|
|
|
|
|
name: 'first_name',
|
|
|
|
|
label: 'First name',
|
|
|
|
|
type: 'text',
|
|
|
|
|
placeholder: 'John',
|
|
|
|
|
value: contact.firstName,
|
|
|
|
|
required: true,
|
|
|
|
|
}, {
|
|
|
|
|
name: 'last_name',
|
|
|
|
|
label: 'Last name',
|
|
|
|
|
type: 'text',
|
|
|
|
|
placeholder: 'Doe',
|
|
|
|
|
value: contact.lastName,
|
|
|
|
|
required: false,
|
|
|
|
|
}, {
|
|
|
|
|
name: 'main_phone',
|
|
|
|
|
label: 'Main phone',
|
|
|
|
|
type: 'tel',
|
|
|
|
|
placeholder: '+44 0000 111 2222',
|
|
|
|
|
value: contact.phone,
|
|
|
|
|
required: false,
|
|
|
|
|
}, {
|
|
|
|
|
name: 'main_email',
|
|
|
|
|
label: 'Main email',
|
|
|
|
|
type: 'email',
|
|
|
|
|
placeholder: 'john.doe@example.com',
|
|
|
|
|
value: contact.email,
|
|
|
|
|
required: false,
|
|
|
|
|
}, {
|
|
|
|
|
name: 'notes',
|
|
|
|
|
label: 'Notes',
|
|
|
|
|
type: 'textarea',
|
|
|
|
|
placeholder: 'Some notes...',
|
|
|
|
|
value: contact.notes,
|
|
|
|
|
required: false,
|
|
|
|
|
});
|
|
|
|
|
} else if (updateType === 'raw') {
|
|
|
|
|
fields.push({
|
|
|
|
|
name: 'vcard',
|
|
|
|
|
label: 'Raw vCard',
|
|
|
|
|
type: 'textarea',
|
|
|
|
|
placeholder: 'Raw vCard...',
|
|
|
|
|
value: contact.data,
|
|
|
|
|
description:
|
|
|
|
|
'This is the raw vCard for this contact. Use this to manually update the contact _if_ you know what you are doing.',
|
|
|
|
|
rows: '10',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fields;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function ViewContact(
|
|
|
|
|
{ initialContact, formData: formDataObject, error, notice, addressBookId }: ViewContactProps,
|
|
|
|
|
) {
|
|
|
|
|
const isDeleting = useSignal<boolean>(false);
|
|
|
|
|
const contact = useSignal<Contact>(initialContact);
|
|
|
|
|
|
|
|
|
|
const formData = convertObjectToFormData(formDataObject);
|
|
|
|
|
|
|
|
|
|
async function onClickDeleteContact() {
|
|
|
|
|
if (confirm('Are you sure you want to delete this contact?')) {
|
|
|
|
|
if (isDeleting.value) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isDeleting.value = true;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const requestBody: DeleteRequestBody = { contactId: contact.value.uid!, addressBookId };
|
|
|
|
|
const response = await fetch(`/api/contacts/delete`, {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
body: JSON.stringify(requestBody),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`Failed to delete contact. ${response.statusText} ${await response.text()}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json() as DeleteResponseBody;
|
|
|
|
|
|
|
|
|
|
if (!result.success) {
|
|
|
|
|
throw new Error('Failed to delete contact!');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.location.href = '/contacts';
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isDeleting.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<section class='flex flex-row items-center justify-between mb-4'>
|
|
|
|
|
<a href='/contacts' class='mr-2'>View contacts</a>
|
|
|
|
|
<section class='flex items-center'>
|
|
|
|
|
<button
|
|
|
|
|
class='inline-block justify-center gap-x-1.5 rounded-md bg-red-800 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-red-600 ml-2'
|
|
|
|
|
type='button'
|
|
|
|
|
title='Delete contact'
|
|
|
|
|
onClick={() => onClickDeleteContact()}
|
|
|
|
|
>
|
|
|
|
|
<img
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
src='/public/images/delete.svg'
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
alt='Delete contact'
|
|
|
|
|
class={`white ${isDeleting.value ? 'animate-spin' : ''}`}
|
|
|
|
|
width={20}
|
|
|
|
|
height={20}
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
|
|
|
|
</section>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class='mx-auto max-w-7xl my-8'>
|
|
|
|
|
{error
|
|
|
|
|
? (
|
|
|
|
|
<section class='notification-error'>
|
|
|
|
|
<h3>Failed to update!</h3>
|
|
|
|
|
<p>{error}</p>
|
|
|
|
|
</section>
|
|
|
|
|
)
|
|
|
|
|
: null}
|
|
|
|
|
{notice
|
|
|
|
|
? (
|
|
|
|
|
<section class='notification-success'>
|
|
|
|
|
<h3>Success!</h3>
|
|
|
|
|
<p>{notice}</p>
|
|
|
|
|
</section>
|
|
|
|
|
)
|
|
|
|
|
: null}
|
|
|
|
|
|
|
|
|
|
<form method='POST' class='mb-12'>
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
<div
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: formFields(contact.peek(), 'ui').map((field) => generateFieldHtml(field, formData)).join(''),
|
|
|
|
|
}}
|
|
|
|
|
/>
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
|
|
|
|
|
<section class='flex justify-end mt-8 mb-4'>
|
|
|
|
|
<button class='button' type='submit'>Update contact</button>
|
|
|
|
|
</section>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<hr class='my-8 border-slate-700' />
|
|
|
|
|
|
|
|
|
|
<details class='mb-12 group'>
|
|
|
|
|
<summary class='text-slate-100 flex items-center font-bold cursor-pointer text-center justify-center mx-auto hover:text-sky-400'>
|
|
|
|
|
Edit Raw vCard{' '}
|
|
|
|
|
<span class='ml-2 text-slate-400 group-open:rotate-90 transition-transform duration-200'>
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
<img src='/public/images/right.svg' alt='Expand' width={16} height={16} class='white' />
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
</span>
|
|
|
|
|
</summary>
|
|
|
|
|
|
|
|
|
|
<form method='POST' class='mb-12'>
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
<div
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: formFields(contact.peek(), 'raw').map((field) => generateFieldHtml(field, formData)).join(''),
|
|
|
|
|
}}
|
|
|
|
|
/>
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
|
|
|
|
|
<section class='flex justify-end mt-8 mb-4'>
|
|
|
|
|
<button class='button' type='submit'>Update vCard</button>
|
|
|
|
|
</section>
|
|
|
|
|
</form>
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
<span
|
|
|
|
|
class={`flex justify-end items-center text-sm mt-1 mx-2 text-slate-100`}
|
|
|
|
|
>
|
|
|
|
|
{isDeleting.value
|
|
|
|
|
? (
|
|
|
|
|
<>
|
Remove fresh
This implements a huge change, where Fresh is removed as a framework and serving files, allowing more control over importing, bundling, and serving files and components.
The biggest challenge was to continue making sure that there weren't too many places to look into for import versions, and `PasswordlessPasskeyLogin.tsx` became a prototype in migrating a component to fully SSR, no need for frontend parsing (via Babel) or bundling (via a custom-script, downloading frontend dependencies from esm.sh). Still, there are too many components to migrate like that, and it's all working, so I likely won't even attempt it unless there's some bug, new feature, or security vulnerability to address that warrants a rewrite of those.
This also updates all dependencies (except `@libs/xml` because that still causes some breaking in DAV endpoints), including Deno!
All other advantages can be seen in the related issues, and the breaking change this (v4.0.0) introduces is related simply to `config.email.tlsMode` (which had a deprecation warning throughout v3), and because, while I tested many things exhaustively, it's not impossible something broke that I didn't see.
Closes #141
Closes #132
2026-02-20 10:54:31 +00:00
|
|
|
<img src='/public/images/loading.svg' class='white mr-2' width={18} height={18} />Deleting...
|
Basic CardDav UI (Contacts)
This implements a basic CardDav UI, titled "Contacts". It allows creating new contacts with a first name + last name, and editing their first and last names, main email, main phone, and notes.
You can also import and export VCF (VCARD) files.
It also allows editing the VCARD directly, for power users.
Additionally, you can choose, create, or delete address books, and if there's no address book created yet in your CardDav server (first-time setup), it'll automatically create one, titled "Contacts".
Finally, there are some dependency updates and a fix for the config not allowing disabling the `cardDav` or the `calDav` server.
Related to #56
2025-08-10 06:48:16 +00:00
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
: null}
|
|
|
|
|
{!isDeleting.value ? <> </> : null}
|
|
|
|
|
</span>
|
|
|
|
|
</section>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|