Add chat start dialog

This commit is contained in:
Jon Staab
2024-10-03 15:28:06 -07:00
parent d956e5ac4a
commit 749185190b
8 changed files with 148 additions and 74 deletions
+7 -2
View File
@@ -2,11 +2,16 @@
import {fly} from "@lib/transition"
import Icon from "@lib/components/Icon.svelte"
import Page from "@lib/components/Page.svelte"
import Button from "@lib/components/Button.svelte"
import SecondaryNav from "@lib/components/SecondaryNav.svelte"
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte"
import SecondaryNavHeader from "@lib/components/SecondaryNavHeader.svelte"
import SecondaryNavSection from "@lib/components/SecondaryNavSection.svelte"
import ChatStart from "@app/components/ChatStart.svelte"
import {chats} from '@app/state'
import {pushModal} from '@app/modal'
const startChat = () => pushModal(ChatStart)
</script>
<SecondaryNav>
@@ -29,9 +34,9 @@
<div in:fly={{delay: 150}}>
<SecondaryNavHeader>
Chats
<div class="cursor-pointer">
<Button on:click={startChat}>
<Icon icon="add-circle" />
</div>
</Button>
</SecondaryNavHeader>
</div>
{#each $chats as {id, pubkeys}, i (id)}
+3 -65
View File
@@ -12,33 +12,13 @@
import Button from '@lib/components/Button.svelte'
import Suggestions from '@lib/editor/Suggestions.svelte'
import SuggestionProfile from '@lib/editor/SuggestionProfile.svelte'
import Name from '@app/components/Name.svelte'
import ProfileMultiSelect from '@app/components/ProfileMultiSelect.svelte'
import {entityLink} from '@app/state'
import {updateList} from '@app/commands'
import {pushToast} from '@app/toast'
let term = ""
let input: Element
let popover: Instance
let instance: SvelteComponent
let mutedPubkeys = getListValues("p", $userMutes)
const addMute = (pubkey: string) => {
term = ""
popover.hide()
mutedPubkeys = uniq(append(pubkey, mutedPubkeys))
}
const removeMute = (pubkey: string) => {
mutedPubkeys = remove(pubkey, mutedPubkeys)
}
const onKeyDown = (e: Event) => {
if (instance.onKeyDown(e)) {
e.preventDefault()
}
}
const reset = () => {
mutedPubkeys = getListValues("p", $userMutes)
}
@@ -48,56 +28,14 @@
pushToast({message: "Your settings have been saved!"})
}
$: {
if (term) {
popover?.show()
} else {
popover?.hide()
}
}
</script>
<form class="content column gap-4" on:submit|preventDefault={onSubmit}>
<div class="card2 bg-alt shadow-xl">
<Field>
<p slot="label">Muted Accounts</p>
<div slot="input" class="flex flex-col gap-2">
<div>
{#each mutedPubkeys as pubkey (pubkey)}
<div class="badge badge-neutral mr-1 flex-inline gap-1">
<Button on:click={() => removeMute(pubkey)}>
<Icon icon="close-circle" size={4} class="-ml-1 mt-px" />
</Button>
<Link href={entityLink(nip19.npubEncode(pubkey))}>
<Name {pubkey} />
</Link>
</div>
{/each}
</div>
<label class="input input-bordered flex w-full items-center gap-2" bind:this={input}>
<Icon icon="magnifer" />
<input class="grow" type="text" bind:value={term} on:keydown={onKeyDown} />
</label>
<Tippy
bind:popover
bind:instance
component={Suggestions}
props={{
term,
select: addMute,
search: profileSearch,
component: SuggestionProfile,
class: 'rounded-box',
style: `left: 4px; width: ${input?.clientWidth + 12}px`,
}}
params={{
trigger: "manual",
interactive: true,
maxWidth: 'none',
getReferenceClientRect: () => input.getBoundingClientRect(),
}}
/>
<div slot="input">
<ProfileMultiSelect bind:value={mutedPubkeys} />
</div>
</Field>
<div class="flex flex-row items-center justify-between gap-4 mt-4">