Merge feature/community-connections into main
Adds Community Connections system: predefined tags with engagement states, suggested connections page, and member discovery based on shared interests.
This commit is contained in:
commit
689548e389
33 changed files with 2743 additions and 407 deletions
823
app/pages/connections.vue
Normal file
823
app/pages/connections.vue
Normal file
|
|
@ -0,0 +1,823 @@
|
|||
<template>
|
||||
<div class="connections-page">
|
||||
<PageHeader
|
||||
title="Connections"
|
||||
subtitle="Find members who share your cooperative interests"
|
||||
/>
|
||||
|
||||
<ClientOnly>
|
||||
<!-- Loading State -->
|
||||
<div v-if="loading" class="loading-state">
|
||||
<p>Loading connections...</p>
|
||||
</div>
|
||||
|
||||
<template v-else>
|
||||
<!-- Filter Bar -->
|
||||
<div v-if="tagOptions.length > 0" class="filter-bar">
|
||||
<select
|
||||
v-model="filterTag"
|
||||
class="filter-select"
|
||||
@change="loadSuggestions"
|
||||
>
|
||||
<option value="">All topics</option>
|
||||
<option v-for="tag in tagOptions" :key="tag.slug" :value="tag.slug">
|
||||
{{ tag.label }}
|
||||
</option>
|
||||
</select>
|
||||
<select
|
||||
v-model="filterState"
|
||||
class="filter-select"
|
||||
@change="loadSuggestions"
|
||||
>
|
||||
<option value="">All states</option>
|
||||
<option value="help">Can help</option>
|
||||
<option value="interested">Interested</option>
|
||||
<option value="seeking">Need help</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Suggested Connections -->
|
||||
<div class="connections-section">
|
||||
<div class="section-label">Suggested Connections</div>
|
||||
|
||||
<div v-if="suggestions.length > 0" class="connection-grid">
|
||||
<div
|
||||
v-for="suggestion in suggestions"
|
||||
:key="suggestion.member._id"
|
||||
class="connection-card"
|
||||
>
|
||||
<div class="cc-head">
|
||||
<div class="cc-avatar">
|
||||
<img
|
||||
v-if="suggestion.member.avatar"
|
||||
:src="`/ghosties/Ghost-${capitalize(suggestion.member.avatar)}.png`"
|
||||
:alt="suggestion.member.name"
|
||||
class="cc-avatar-img"
|
||||
/>
|
||||
<span v-else>{{ getInitials(suggestion.member.name) }}</span>
|
||||
</div>
|
||||
<div class="cc-info">
|
||||
<div class="cc-name">
|
||||
<NuxtLink :to="`/members/${suggestion.member._id}`">
|
||||
{{ suggestion.member.name }}
|
||||
</NuxtLink>
|
||||
</div>
|
||||
<div class="cc-meta">
|
||||
<CircleBadge :circle="suggestion.member.circle || 'community'" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Craft tags -->
|
||||
<div
|
||||
v-if="suggestion.member.craftTags?.length"
|
||||
class="cc-craft-tags"
|
||||
>
|
||||
<span
|
||||
v-for="tag in suggestion.member.craftTags.slice(0, 5)"
|
||||
:key="tag"
|
||||
class="craft-pill"
|
||||
>{{ craftTagLabel(tag) }}</span>
|
||||
</div>
|
||||
|
||||
<!-- Matching topics with state labels -->
|
||||
<div class="cc-matches">
|
||||
<div
|
||||
v-for="match in suggestion.matchingTags"
|
||||
:key="match.tagSlug"
|
||||
class="match-row"
|
||||
>
|
||||
<span class="match-tag">{{ cooperativeTagLabel(match.tagSlug) }}</span>
|
||||
<span class="match-states">
|
||||
<span class="match-you">You: {{ stateLabel(match.yourState) }}</span>
|
||||
<span class="match-sep">·</span>
|
||||
<span class="match-them">They: {{ stateLabel(match.theirState) }}</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Actions -->
|
||||
<div class="cc-actions">
|
||||
<button
|
||||
class="btn btn-primary btn-sm"
|
||||
:disabled="actionLoading === suggestion.member._id"
|
||||
@click="handleConnect(suggestion.member._id)"
|
||||
>
|
||||
Mark as connected
|
||||
</button>
|
||||
<button
|
||||
class="text-action"
|
||||
:disabled="actionLoading === suggestion.member._id"
|
||||
@click="handleHide(suggestion.member._id)"
|
||||
>
|
||||
Hide
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-else class="empty-state">
|
||||
<p class="empty-title">No suggestions right now</p>
|
||||
<p class="empty-sub">
|
||||
Add cooperative topics to your
|
||||
<NuxtLink to="/member/profile">profile</NuxtLink>
|
||||
to find members with shared interests
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Your Connections -->
|
||||
<div class="connections-section">
|
||||
<div class="section-label">Your Connections</div>
|
||||
|
||||
<!-- Pending Incoming -->
|
||||
<template v-if="pendingIncoming.length > 0">
|
||||
<div class="subsection-label">Pending Incoming</div>
|
||||
<div class="connection-grid">
|
||||
<div
|
||||
v-for="conn in pendingIncoming"
|
||||
:key="conn._id"
|
||||
class="connection-card"
|
||||
>
|
||||
<div class="cc-head">
|
||||
<div class="cc-avatar">
|
||||
<img
|
||||
v-if="getOtherMember(conn).avatar"
|
||||
:src="`/ghosties/Ghost-${capitalize(getOtherMember(conn).avatar)}.png`"
|
||||
:alt="getOtherMember(conn).name"
|
||||
class="cc-avatar-img"
|
||||
/>
|
||||
<span v-else>{{ getInitials(getOtherMember(conn).name) }}</span>
|
||||
</div>
|
||||
<div class="cc-info">
|
||||
<div class="cc-name">
|
||||
<NuxtLink :to="`/members/${getOtherMember(conn)._id}`">
|
||||
{{ getOtherMember(conn).name }}
|
||||
</NuxtLink>
|
||||
</div>
|
||||
<div class="cc-meta">
|
||||
<CircleBadge :circle="getOtherMember(conn).circle || 'community'" />
|
||||
<span class="pending-label">Wants to connect</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="conn.matchingTags?.length" class="cc-tags-inline">
|
||||
<span
|
||||
v-for="mt in conn.matchingTags"
|
||||
:key="mt.tagSlug"
|
||||
class="craft-pill"
|
||||
>{{ cooperativeTagLabel(mt.tagSlug) }}</span>
|
||||
</div>
|
||||
|
||||
<div class="cc-actions">
|
||||
<button
|
||||
class="btn btn-primary btn-sm"
|
||||
:disabled="actionLoading === conn._id"
|
||||
@click="handleConfirm(conn._id)"
|
||||
>
|
||||
Confirm
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Pending Outgoing -->
|
||||
<template v-if="pendingOutgoing.length > 0">
|
||||
<div class="subsection-label">Pending Outgoing</div>
|
||||
<div class="connection-grid">
|
||||
<div
|
||||
v-for="conn in pendingOutgoing"
|
||||
:key="conn._id"
|
||||
class="connection-card"
|
||||
>
|
||||
<div class="cc-head">
|
||||
<div class="cc-avatar">
|
||||
<img
|
||||
v-if="getOtherMember(conn).avatar"
|
||||
:src="`/ghosties/Ghost-${capitalize(getOtherMember(conn).avatar)}.png`"
|
||||
:alt="getOtherMember(conn).name"
|
||||
class="cc-avatar-img"
|
||||
/>
|
||||
<span v-else>{{ getInitials(getOtherMember(conn).name) }}</span>
|
||||
</div>
|
||||
<div class="cc-info">
|
||||
<div class="cc-name">
|
||||
<NuxtLink :to="`/members/${getOtherMember(conn)._id}`">
|
||||
{{ getOtherMember(conn).name }}
|
||||
</NuxtLink>
|
||||
</div>
|
||||
<div class="cc-meta">
|
||||
<CircleBadge :circle="getOtherMember(conn).circle || 'community'" />
|
||||
<span class="pending-label">Pending</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="conn.matchingTags?.length" class="cc-tags-inline">
|
||||
<span
|
||||
v-for="mt in conn.matchingTags"
|
||||
:key="mt.tagSlug"
|
||||
class="craft-pill"
|
||||
>{{ cooperativeTagLabel(mt.tagSlug) }}</span>
|
||||
</div>
|
||||
|
||||
<div class="cc-actions">
|
||||
<button
|
||||
class="text-action"
|
||||
:disabled="actionLoading === conn._id"
|
||||
@click="handleWithdraw(conn._id)"
|
||||
>
|
||||
Withdraw
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Confirmed -->
|
||||
<template v-if="confirmed.length > 0">
|
||||
<div class="subsection-label">Connected</div>
|
||||
<div class="connection-grid">
|
||||
<div
|
||||
v-for="conn in confirmed"
|
||||
:key="conn._id"
|
||||
class="connection-card"
|
||||
>
|
||||
<div class="cc-head">
|
||||
<div class="cc-avatar">
|
||||
<img
|
||||
v-if="getOtherMember(conn).avatar"
|
||||
:src="`/ghosties/Ghost-${capitalize(getOtherMember(conn).avatar)}.png`"
|
||||
:alt="getOtherMember(conn).name"
|
||||
class="cc-avatar-img"
|
||||
/>
|
||||
<span v-else>{{ getInitials(getOtherMember(conn).name) }}</span>
|
||||
</div>
|
||||
<div class="cc-info">
|
||||
<div class="cc-name">
|
||||
<NuxtLink :to="`/members/${getOtherMember(conn)._id}`">
|
||||
{{ getOtherMember(conn).name }}
|
||||
</NuxtLink>
|
||||
</div>
|
||||
<div class="cc-meta">
|
||||
<CircleBadge :circle="getOtherMember(conn).circle || 'community'" />
|
||||
<span
|
||||
v-if="getSlackHandle(conn)"
|
||||
class="cc-slack"
|
||||
>@{{ getSlackHandle(conn) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="conn.matchingTags?.length" class="cc-tags-inline">
|
||||
<span
|
||||
v-for="mt in conn.matchingTags"
|
||||
:key="mt.tagSlug"
|
||||
class="craft-pill"
|
||||
>{{ cooperativeTagLabel(mt.tagSlug) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- No connections at all -->
|
||||
<div
|
||||
v-if="!confirmed.length && !pendingIncoming.length && !pendingOutgoing.length && !showHidden"
|
||||
class="empty-state"
|
||||
>
|
||||
<p class="empty-sub">
|
||||
You don't have any connections yet. Use the suggestions above to get started.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Show hidden toggle -->
|
||||
<div v-if="hiddenCount > 0" class="hidden-toggle">
|
||||
<label class="filter-toggle">
|
||||
<input
|
||||
type="checkbox"
|
||||
v-model="showHidden"
|
||||
@change="handleShowHiddenToggle"
|
||||
/>
|
||||
Show {{ hiddenCount }} hidden suggestion{{ hiddenCount === 1 ? '' : 's' }}
|
||||
</label>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #fallback>
|
||||
<div class="loading-state">
|
||||
<p>Loading connections...</p>
|
||||
</div>
|
||||
</template>
|
||||
</ClientOnly>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
definePageMeta({ middleware: 'auth' })
|
||||
|
||||
const { memberData } = useAuth()
|
||||
const {
|
||||
getSuggestions,
|
||||
getMyConnections,
|
||||
requestConnection,
|
||||
confirmConnection,
|
||||
hideConnection,
|
||||
withdrawConnection,
|
||||
} = useConnections()
|
||||
|
||||
// State
|
||||
const loading = ref(true)
|
||||
const actionLoading = ref(null)
|
||||
const suggestions = ref([])
|
||||
const confirmed = ref([])
|
||||
const pendingIncoming = ref([])
|
||||
const pendingOutgoing = ref([])
|
||||
const filterTag = ref('')
|
||||
const filterState = ref('')
|
||||
const showHidden = ref(false)
|
||||
const hiddenCount = ref(0)
|
||||
const tagOptions = ref([])
|
||||
const craftTagOptions = ref([])
|
||||
|
||||
// State display text
|
||||
const stateLabels = {
|
||||
help: 'Can help',
|
||||
interested: 'Interested',
|
||||
seeking: 'Need help',
|
||||
}
|
||||
const stateLabel = (state) => stateLabels[state] || state || ''
|
||||
|
||||
// Tag label lookups
|
||||
const cooperativeTagLabel = (slug) => {
|
||||
const found = tagOptions.value.find(t => t.slug === slug)
|
||||
return found ? found.label : slug
|
||||
}
|
||||
const craftTagLabel = (slug) => {
|
||||
const found = craftTagOptions.value.find(t => t.slug === slug)
|
||||
return found ? found.label : slug
|
||||
}
|
||||
|
||||
// Helpers
|
||||
const getInitials = (name) => {
|
||||
if (!name) return '?'
|
||||
return name.split(' ').map(w => w[0]).join('').toUpperCase().slice(0, 2)
|
||||
}
|
||||
|
||||
const capitalize = (str) => {
|
||||
if (!str) return ''
|
||||
return str.split('-')
|
||||
.map(w => w.charAt(0).toUpperCase() + w.slice(1).toLowerCase())
|
||||
.join('-')
|
||||
}
|
||||
|
||||
const getOtherMember = (conn) => {
|
||||
const myId = memberData.value?._id || memberData.value?.id
|
||||
if (conn.initiator?._id === myId || conn.initiator?.id === myId) {
|
||||
return conn.recipient || {}
|
||||
}
|
||||
return conn.initiator || {}
|
||||
}
|
||||
|
||||
const getSlackHandle = (conn) => {
|
||||
const other = getOtherMember(conn)
|
||||
return other.communityConnections?.slackHandle || null
|
||||
}
|
||||
|
||||
// Data loading
|
||||
const loadSuggestions = async () => {
|
||||
try {
|
||||
const params = {}
|
||||
if (filterTag.value) params.tag = filterTag.value
|
||||
if (filterState.value) params.state = filterState.value
|
||||
if (showHidden.value) params.showHidden = 'true'
|
||||
const data = await getSuggestions(params)
|
||||
suggestions.value = data.suggestions || []
|
||||
} catch (error) {
|
||||
console.error('Failed to load suggestions:', error)
|
||||
suggestions.value = []
|
||||
}
|
||||
}
|
||||
|
||||
const loadConnections = async () => {
|
||||
try {
|
||||
const data = await getMyConnections()
|
||||
confirmed.value = data.confirmed || []
|
||||
pendingOutgoing.value = data.pendingOutgoing || []
|
||||
pendingIncoming.value = data.pendingIncoming || []
|
||||
} catch (error) {
|
||||
console.error('Failed to load connections:', error)
|
||||
}
|
||||
}
|
||||
|
||||
const loadTags = async () => {
|
||||
try {
|
||||
const data = await $fetch('/api/tags')
|
||||
const tags = data.tags || []
|
||||
const cooperativeTags = tags
|
||||
.filter(t => t.pool === 'cooperative')
|
||||
.map(t => ({ slug: t.slug, label: t.label }))
|
||||
tagOptions.value = cooperativeTags
|
||||
craftTagOptions.value = tags
|
||||
.filter(t => t.pool === 'craft')
|
||||
.map(t => ({ slug: t.slug, label: t.label }))
|
||||
|
||||
// Filter tag options to only member's selected topics
|
||||
const myTopicSlugs = (memberData.value?.communityConnections?.topics || [])
|
||||
.map(t => t.tagSlug)
|
||||
if (myTopicSlugs.length > 0) {
|
||||
tagOptions.value = cooperativeTags.filter(t => myTopicSlugs.includes(t.slug))
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Failed to load tags:', error)
|
||||
}
|
||||
}
|
||||
|
||||
// Count hidden suggestions (for the toggle label)
|
||||
const countHidden = async () => {
|
||||
// We don't have a dedicated hidden-count endpoint, so we track locally
|
||||
// Hidden count increments when user hides, decrements on show
|
||||
// This is approximate; it resets on page load
|
||||
hiddenCount.value = 0
|
||||
}
|
||||
|
||||
// Actions
|
||||
const handleConnect = async (memberId) => {
|
||||
actionLoading.value = memberId
|
||||
try {
|
||||
await requestConnection(memberId)
|
||||
// Remove from suggestions, refresh connections
|
||||
suggestions.value = suggestions.value.filter(s => s.member._id !== memberId)
|
||||
await loadConnections()
|
||||
} catch (error) {
|
||||
console.error('Failed to create connection:', error)
|
||||
} finally {
|
||||
actionLoading.value = null
|
||||
}
|
||||
}
|
||||
|
||||
const handleHide = async (memberId) => {
|
||||
actionLoading.value = memberId
|
||||
try {
|
||||
// The hide endpoint requires a connection ID. For suggestions (no connection yet),
|
||||
// we create a pending connection first, then immediately hide it.
|
||||
const result = await requestConnection(memberId)
|
||||
const connId = result?.connection?._id
|
||||
if (connId) {
|
||||
await hideConnection(connId)
|
||||
}
|
||||
suggestions.value = suggestions.value.filter(s => s.member._id !== memberId)
|
||||
hiddenCount.value++
|
||||
} catch (error) {
|
||||
console.error('Failed to hide suggestion:', error)
|
||||
} finally {
|
||||
actionLoading.value = null
|
||||
}
|
||||
}
|
||||
|
||||
const handleConfirm = async (connectionId) => {
|
||||
actionLoading.value = connectionId
|
||||
try {
|
||||
await confirmConnection(connectionId)
|
||||
await loadConnections()
|
||||
} catch (error) {
|
||||
console.error('Failed to confirm connection:', error)
|
||||
} finally {
|
||||
actionLoading.value = null
|
||||
}
|
||||
}
|
||||
|
||||
const handleWithdraw = async (connectionId) => {
|
||||
actionLoading.value = connectionId
|
||||
try {
|
||||
await withdrawConnection(connectionId)
|
||||
await loadConnections()
|
||||
await loadSuggestions()
|
||||
} catch (error) {
|
||||
console.error('Failed to withdraw connection:', error)
|
||||
} finally {
|
||||
actionLoading.value = null
|
||||
}
|
||||
}
|
||||
|
||||
const handleShowHiddenToggle = async () => {
|
||||
await loadSuggestions()
|
||||
}
|
||||
|
||||
// Init
|
||||
onMounted(async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
await loadTags()
|
||||
await Promise.all([
|
||||
loadSuggestions(),
|
||||
loadConnections(),
|
||||
])
|
||||
countHidden()
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Connections - Ghost Guild',
|
||||
meta: [
|
||||
{
|
||||
name: 'description',
|
||||
content: 'Find and connect with Ghost Guild members who share your cooperative interests.',
|
||||
},
|
||||
],
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
/* ---- LOADING ---- */
|
||||
.loading-state {
|
||||
padding: 60px 24px;
|
||||
text-align: center;
|
||||
color: var(--text-faint);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* ---- FILTER BAR ---- */
|
||||
.filter-bar {
|
||||
padding: 16px 24px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.filter-select {
|
||||
font-family: "Commit Mono", monospace;
|
||||
font-size: 11px;
|
||||
padding: 5px 10px;
|
||||
border: 1px dashed var(--border);
|
||||
background: transparent;
|
||||
color: var(--text-dim);
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a7e6a' stroke-width='1.2'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 8px center;
|
||||
padding-right: 26px;
|
||||
}
|
||||
.filter-select:focus {
|
||||
border-color: var(--candle-faint);
|
||||
}
|
||||
|
||||
/* ---- SECTIONS ---- */
|
||||
.connections-section {
|
||||
padding: 20px 24px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
}
|
||||
|
||||
.subsection-label {
|
||||
font-size: 11px;
|
||||
color: var(--text-dim);
|
||||
margin: 16px 0 8px;
|
||||
}
|
||||
.subsection-label:first-of-type {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/* ---- CONNECTION GRID ---- */
|
||||
.connection-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.connection-card {
|
||||
padding: 16px 20px;
|
||||
border: 1px dashed var(--border);
|
||||
margin: -1px 0 0 -1px;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
.connection-card:hover {
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
/* ---- CARD HEADER ---- */
|
||||
.cc-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.cc-avatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background: var(--surface);
|
||||
border: 1px dashed var(--border);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 11px;
|
||||
color: var(--text-faint);
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cc-avatar-img {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.cc-info {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.cc-name {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--text-bright);
|
||||
}
|
||||
.cc-name a {
|
||||
color: var(--text-bright);
|
||||
text-decoration: none;
|
||||
}
|
||||
.cc-name a:hover {
|
||||
color: var(--candle);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.cc-meta {
|
||||
font-size: 11px;
|
||||
color: var(--text-dim);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.cc-slack {
|
||||
font-size: 11px;
|
||||
color: var(--candle-dim);
|
||||
}
|
||||
|
||||
.pending-label {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--candle-dim);
|
||||
}
|
||||
|
||||
/* ---- CRAFT TAGS (small pills) ---- */
|
||||
.cc-craft-tags {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
flex-wrap: wrap;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
.craft-pill {
|
||||
font-size: 10px;
|
||||
color: var(--text-dim);
|
||||
padding: 1px 6px;
|
||||
border: 1px dashed var(--border);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ---- INLINE TAGS (for confirmed/pending) ---- */
|
||||
.cc-tags-inline {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
flex-wrap: wrap;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
/* ---- MATCH ROWS (suggestion cards) ---- */
|
||||
.cc-matches {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.match-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 8px;
|
||||
padding: 3px 0;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.match-tag {
|
||||
color: var(--text);
|
||||
font-weight: 600;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.match-states {
|
||||
color: var(--text-faint);
|
||||
font-size: 10px;
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
align-items: baseline;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.match-sep {
|
||||
color: var(--border);
|
||||
}
|
||||
|
||||
.match-you,
|
||||
.match-them {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ---- ACTIONS ---- */
|
||||
.cc-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.btn-sm {
|
||||
padding: 4px 12px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.text-action {
|
||||
font-family: "Commit Mono", monospace;
|
||||
font-size: 11px;
|
||||
color: var(--text-faint);
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
}
|
||||
.text-action:hover {
|
||||
color: var(--text);
|
||||
text-decoration: underline;
|
||||
}
|
||||
.text-action:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* ---- EMPTY STATE ---- */
|
||||
.empty-state {
|
||||
padding: 32px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.empty-title {
|
||||
font-family: "Brygada 1918", serif;
|
||||
font-size: 18px;
|
||||
color: var(--text-dim);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.empty-sub {
|
||||
font-size: 12px;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
.empty-sub a {
|
||||
color: var(--candle);
|
||||
}
|
||||
|
||||
/* ---- HIDDEN TOGGLE ---- */
|
||||
.hidden-toggle {
|
||||
padding: 16px 24px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
}
|
||||
|
||||
.filter-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 11px;
|
||||
color: var(--text-dim);
|
||||
cursor: pointer;
|
||||
}
|
||||
.filter-toggle input {
|
||||
accent-color: var(--candle-dim);
|
||||
}
|
||||
|
||||
/* ---- RESPONSIVE ---- */
|
||||
@media (max-width: 1024px) {
|
||||
.connection-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.filter-bar {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
padding: 14px 20px;
|
||||
}
|
||||
.connections-section {
|
||||
padding: 16px 20px;
|
||||
}
|
||||
.connection-card {
|
||||
padding: 14px 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
@ -140,45 +140,16 @@
|
|||
</div>
|
||||
<PrivacyToggle v-model="formData.bioPrivacy" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Skills Exchange -->
|
||||
<hr class="section-divider" />
|
||||
<div class="profile-col-inset">
|
||||
<div class="section-label">Skills Exchange</div>
|
||||
|
||||
<!-- What I Do (craft tags) -->
|
||||
<div class="field">
|
||||
<label>What I Can Contribute</label>
|
||||
<TagInput
|
||||
v-model="formData.offering.tags"
|
||||
placeholder="add skill..."
|
||||
<label>What I Do</label>
|
||||
<CraftTagSelector
|
||||
v-model="formData.craftTags"
|
||||
:tags="craftTags"
|
||||
@suggest="tagSuggestPool = 'craft'; showTagSuggestModal = true"
|
||||
/>
|
||||
<PrivacyToggle v-model="formData.offeringPrivacy" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label>Details</label>
|
||||
<textarea
|
||||
v-model="formData.offering.text"
|
||||
rows="3"
|
||||
placeholder="e.g., I have 10+ years in Unity and love helping new devs."
|
||||
></textarea>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label>What I'm Looking For</label>
|
||||
<TagInput
|
||||
v-model="formData.lookingFor.tags"
|
||||
placeholder="add topic..."
|
||||
/>
|
||||
<PrivacyToggle v-model="formData.lookingForPrivacy" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label>Details</label>
|
||||
<textarea
|
||||
v-model="formData.lookingFor.text"
|
||||
rows="3"
|
||||
placeholder="e.g., Seeking a business-minded co-founder for a worker co-op studio."
|
||||
></textarea>
|
||||
<PrivacyToggle v-model="formData.craftTagsPrivacy" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -206,11 +177,34 @@
|
|||
<!-- ======== RIGHT COLUMN ======== -->
|
||||
<div class="profile-col-right">
|
||||
<div class="profile-col-inset">
|
||||
<div class="section-label">Peer Support</div>
|
||||
<div class="section-label">Community Connections</div>
|
||||
|
||||
<div class="field">
|
||||
<label>Topics</label>
|
||||
<CooperativeTagSelector
|
||||
v-model="formData.communityConnectionsTopics"
|
||||
:tags="cooperativeTags"
|
||||
@suggest="tagSuggestPool = 'cooperative'; showTagSuggestModal = true"
|
||||
/>
|
||||
<PrivacyToggle v-model="formData.communityConnectionsPrivacy" />
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label>Details</label>
|
||||
<textarea
|
||||
v-model="formData.communityConnectionsDetails"
|
||||
rows="3"
|
||||
placeholder="What are you hoping to connect about?"
|
||||
maxlength="300"
|
||||
></textarea>
|
||||
<div class="char-count">
|
||||
{{ formData.communityConnectionsDetails?.length || 0 }} / 300
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="toggle-field">
|
||||
<USwitch
|
||||
v-model="formData.peerSupportEnabled"
|
||||
v-model="formData.communityConnectionsOfferPeerSupport"
|
||||
aria-label="Offer Peer Support"
|
||||
/>
|
||||
<div class="toggle-label">
|
||||
|
|
@ -221,47 +215,11 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="formData.peerSupportEnabled" class="peer-panel">
|
||||
<div class="field">
|
||||
<label>Skill-Based Topics</label>
|
||||
<TagInput
|
||||
v-model="formData.peerSupportSkillTopics"
|
||||
placeholder="add topic..."
|
||||
/>
|
||||
<div v-if="suggestedSkillTopics.length" class="suggested">
|
||||
Suggested from your offerings:
|
||||
<a
|
||||
v-for="tag in suggestedSkillTopics"
|
||||
:key="tag"
|
||||
@click="addSuggestedSkillTopic(tag)"
|
||||
>{{ tag }}</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label>Conversational Topics</label>
|
||||
<div class="checkbox-grid">
|
||||
<label
|
||||
v-for="topic in availableSupportTopics"
|
||||
:key="topic"
|
||||
class="checkbox-item"
|
||||
:class="{
|
||||
checked:
|
||||
formData.peerSupportSupportTopics.includes(topic),
|
||||
}"
|
||||
@click.prevent="toggleSupportTopic(topic)"
|
||||
>
|
||||
<span class="cb">✓</span>
|
||||
{{ topic }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="formData.communityConnectionsOfferPeerSupport" class="connections-panel">
|
||||
<div class="field">
|
||||
<label>Availability</label>
|
||||
<textarea
|
||||
v-model="formData.peerSupportAvailability"
|
||||
v-model="formData.communityConnectionsAvailability"
|
||||
rows="3"
|
||||
placeholder="e.g. Weekday afternoons ET"
|
||||
></textarea>
|
||||
|
|
@ -270,7 +228,7 @@
|
|||
<div class="field">
|
||||
<label>Slack Handle</label>
|
||||
<input
|
||||
v-model="formData.peerSupportSlackUsername"
|
||||
v-model="formData.communityConnectionsSlackHandle"
|
||||
type="text"
|
||||
placeholder="@yourslackname"
|
||||
/>
|
||||
|
|
@ -279,13 +237,13 @@
|
|||
<div class="field">
|
||||
<label>Personal Message</label>
|
||||
<textarea
|
||||
v-model="formData.peerSupportMessage"
|
||||
v-model="formData.communityConnectionsPersonalMessage"
|
||||
rows="3"
|
||||
maxlength="200"
|
||||
placeholder="Brief note shown to people requesting time with you"
|
||||
></textarea>
|
||||
<div class="char-count">
|
||||
{{ formData.peerSupportMessage?.length || 0 }} / 200
|
||||
{{ formData.communityConnectionsPersonalMessage?.length || 0 }} / 200
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -324,11 +282,11 @@
|
|||
|
||||
<div class="toggle-field">
|
||||
<USwitch
|
||||
v-model="formData.notifyPeerRequests"
|
||||
aria-label="Peer support requests"
|
||||
v-model="formData.notifyConnectionRequests"
|
||||
aria-label="Connection requests"
|
||||
/>
|
||||
<div class="toggle-label">
|
||||
Peer support requests
|
||||
Connection requests
|
||||
<span class="toggle-sub"
|
||||
>When someone wants to connect</span
|
||||
>
|
||||
|
|
@ -360,6 +318,9 @@
|
|||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- Tag Suggest Modal -->
|
||||
<TagSuggestModal v-model:open="showTagSuggestModal" :pool="tagSuggestPool" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
@ -389,6 +350,20 @@ const availableGhosts = [
|
|||
{ value: "wtf", label: "WTF", image: "/ghosties/Ghost-WTF.png" },
|
||||
];
|
||||
|
||||
// Fetch tags and split into pools
|
||||
const { data: tagsData } = await useFetch("/api/tags");
|
||||
|
||||
const craftTags = computed(() =>
|
||||
(tagsData.value?.tags || []).filter((t) => t.pool === "craft"),
|
||||
);
|
||||
const cooperativeTags = computed(() =>
|
||||
(tagsData.value?.tags || []).filter((t) => t.pool === "cooperative"),
|
||||
);
|
||||
|
||||
// Tag suggest modal state
|
||||
const showTagSuggestModal = ref(false);
|
||||
const tagSuggestPool = ref("");
|
||||
|
||||
// Form state
|
||||
const formData = reactive({
|
||||
name: "",
|
||||
|
|
@ -398,16 +373,18 @@ const formData = reactive({
|
|||
studio: "",
|
||||
bio: "",
|
||||
location: "",
|
||||
offering: { text: "", tags: [] },
|
||||
lookingFor: { text: "", tags: [] },
|
||||
showInDirectory: true,
|
||||
// Peer support
|
||||
peerSupportEnabled: false,
|
||||
peerSupportSkillTopics: [],
|
||||
peerSupportSupportTopics: [],
|
||||
peerSupportAvailability: "",
|
||||
peerSupportMessage: "",
|
||||
peerSupportSlackUsername: "",
|
||||
// Craft tags
|
||||
craftTags: [],
|
||||
craftTagsPrivacy: "members",
|
||||
// Community connections
|
||||
communityConnectionsTopics: [],
|
||||
communityConnectionsPrivacy: "members",
|
||||
communityConnectionsDetails: "",
|
||||
communityConnectionsOfferPeerSupport: false,
|
||||
communityConnectionsAvailability: "",
|
||||
communityConnectionsSlackHandle: "",
|
||||
communityConnectionsPersonalMessage: "",
|
||||
// Privacy
|
||||
pronounsPrivacy: "members",
|
||||
timeZonePrivacy: "members",
|
||||
|
|
@ -415,12 +392,10 @@ const formData = reactive({
|
|||
studioPrivacy: "members",
|
||||
bioPrivacy: "members",
|
||||
locationPrivacy: "members",
|
||||
offeringPrivacy: "members",
|
||||
lookingForPrivacy: "members",
|
||||
// Notifications
|
||||
notifyEvents: true,
|
||||
notifyUpdates: true,
|
||||
notifyPeerRequests: true,
|
||||
notifyConnectionRequests: true,
|
||||
});
|
||||
|
||||
const loading = ref(false);
|
||||
|
|
@ -429,47 +404,11 @@ const saveSuccess = ref(false);
|
|||
const saveError = ref(null);
|
||||
const initialData = ref(null);
|
||||
|
||||
// Available conversational support topics
|
||||
const availableSupportTopics = [
|
||||
"Co-founder relationships",
|
||||
"Burnout prevention",
|
||||
"Impostor syndrome",
|
||||
"Work-life boundaries",
|
||||
"Conflict resolution",
|
||||
"General chat & support",
|
||||
];
|
||||
|
||||
// Computed
|
||||
const hasChanges = computed(() => {
|
||||
return JSON.stringify(formData) !== JSON.stringify(initialData.value);
|
||||
});
|
||||
|
||||
const suggestedSkillTopics = computed(() => {
|
||||
if (!formData.offering.tags?.length) return [];
|
||||
return formData.offering.tags.filter(
|
||||
(t) => !formData.peerSupportSkillTopics?.includes(t),
|
||||
);
|
||||
});
|
||||
|
||||
// Toggle a support topic in/out of the selection
|
||||
const toggleSupportTopic = (topic) => {
|
||||
const idx = formData.peerSupportSupportTopics.indexOf(topic);
|
||||
if (idx >= 0) {
|
||||
formData.peerSupportSupportTopics.splice(idx, 1);
|
||||
} else {
|
||||
formData.peerSupportSupportTopics.push(topic);
|
||||
}
|
||||
};
|
||||
|
||||
const addSuggestedSkillTopic = (tag) => {
|
||||
if (!Array.isArray(formData.peerSupportSkillTopics)) {
|
||||
formData.peerSupportSkillTopics = [];
|
||||
}
|
||||
if (!formData.peerSupportSkillTopics.includes(tag)) {
|
||||
formData.peerSupportSkillTopics.push(tag);
|
||||
}
|
||||
};
|
||||
|
||||
// Load member data into form
|
||||
const loadProfile = () => {
|
||||
if (memberData.value) {
|
||||
|
|
@ -481,66 +420,21 @@ const loadProfile = () => {
|
|||
formData.bio = memberData.value.bio || "";
|
||||
formData.location = memberData.value.location || "";
|
||||
|
||||
// Load offering (handle both old string and new object format)
|
||||
if (typeof memberData.value.offering === "string") {
|
||||
formData.offering.text = memberData.value.offering;
|
||||
formData.offering.tags = [];
|
||||
} else if (memberData.value.offering) {
|
||||
formData.offering.text = memberData.value.offering?.text || "";
|
||||
formData.offering.tags = Array.isArray(memberData.value.offering?.tags)
|
||||
? [...memberData.value.offering.tags]
|
||||
: [];
|
||||
} else {
|
||||
formData.offering.text = "";
|
||||
formData.offering.tags = [];
|
||||
}
|
||||
|
||||
// Load lookingFor (handle both old string and new object format)
|
||||
if (typeof memberData.value.lookingFor === "string") {
|
||||
formData.lookingFor.text = memberData.value.lookingFor;
|
||||
formData.lookingFor.tags = [];
|
||||
} else if (memberData.value.lookingFor) {
|
||||
formData.lookingFor.text = memberData.value.lookingFor?.text || "";
|
||||
formData.lookingFor.tags = Array.isArray(
|
||||
memberData.value.lookingFor?.tags,
|
||||
)
|
||||
? [...memberData.value.lookingFor.tags]
|
||||
: [];
|
||||
} else {
|
||||
formData.lookingFor.text = "";
|
||||
formData.lookingFor.tags = [];
|
||||
}
|
||||
|
||||
formData.showInDirectory = memberData.value.showInDirectory ?? true;
|
||||
|
||||
// Load peer support data
|
||||
if (memberData.value.peerSupport) {
|
||||
formData.peerSupportEnabled =
|
||||
memberData.value.peerSupport.enabled || false;
|
||||
formData.peerSupportSkillTopics = Array.isArray(
|
||||
memberData.value.peerSupport.skillTopics,
|
||||
)
|
||||
? [...memberData.value.peerSupport.skillTopics]
|
||||
: [];
|
||||
formData.peerSupportSupportTopics = Array.isArray(
|
||||
memberData.value.peerSupport.supportTopics,
|
||||
)
|
||||
? [...memberData.value.peerSupport.supportTopics]
|
||||
: [];
|
||||
formData.peerSupportAvailability =
|
||||
memberData.value.peerSupport.availability || "";
|
||||
formData.peerSupportMessage =
|
||||
memberData.value.peerSupport.personalMessage || "";
|
||||
formData.peerSupportSlackUsername =
|
||||
memberData.value.peerSupport.slackUsername || "";
|
||||
} else {
|
||||
formData.peerSupportEnabled = false;
|
||||
formData.peerSupportSkillTopics = [];
|
||||
formData.peerSupportSupportTopics = [];
|
||||
formData.peerSupportAvailability = "";
|
||||
formData.peerSupportMessage = "";
|
||||
formData.peerSupportSlackUsername = "";
|
||||
}
|
||||
// Load craft tags
|
||||
formData.craftTags = Array.isArray(memberData.value.craftTags)
|
||||
? [...memberData.value.craftTags]
|
||||
: [];
|
||||
|
||||
// Load community connections (with fallback to old peerSupport fields)
|
||||
const cc = memberData.value.communityConnections || {};
|
||||
formData.communityConnectionsTopics = Array.isArray(cc.topics) ? [...cc.topics] : [];
|
||||
formData.communityConnectionsOfferPeerSupport = cc.offerPeerSupport ?? memberData.value.peerSupport?.enabled ?? false;
|
||||
formData.communityConnectionsAvailability = cc.availability || memberData.value.peerSupport?.availability || "";
|
||||
formData.communityConnectionsSlackHandle = cc.slackHandle || memberData.value.peerSupport?.slackUsername || "";
|
||||
formData.communityConnectionsPersonalMessage = cc.personalMessage || memberData.value.peerSupport?.personalMessage || "";
|
||||
formData.communityConnectionsDetails = cc.details || "";
|
||||
|
||||
// Load privacy settings (with defaults)
|
||||
const privacy = memberData.value.privacy || {};
|
||||
|
|
@ -550,14 +444,14 @@ const loadProfile = () => {
|
|||
formData.studioPrivacy = privacy.studio || "members";
|
||||
formData.bioPrivacy = privacy.bio || "members";
|
||||
formData.locationPrivacy = privacy.location || "members";
|
||||
formData.offeringPrivacy = privacy.offering || "members";
|
||||
formData.lookingForPrivacy = privacy.lookingFor || "members";
|
||||
formData.craftTagsPrivacy = privacy.craftTags || "members";
|
||||
formData.communityConnectionsPrivacy = privacy.communityConnections || "members";
|
||||
|
||||
// Load notification prefs
|
||||
const notifs = memberData.value.notifications || {};
|
||||
formData.notifyEvents = notifs.events ?? true;
|
||||
formData.notifyUpdates = notifs.updates ?? true;
|
||||
formData.notifyPeerRequests = notifs.peerRequests ?? true;
|
||||
formData.notifyConnectionRequests = notifs.connectionRequests ?? notifs.peerRequests ?? true;
|
||||
|
||||
// Store initial state for change detection
|
||||
initialData.value = JSON.parse(JSON.stringify(formData));
|
||||
|
|
@ -571,29 +465,30 @@ const handleSubmit = async () => {
|
|||
saveError.value = null;
|
||||
|
||||
try {
|
||||
// Save profile data
|
||||
// Save profile data (includes craft tags + privacy + notifications)
|
||||
await $fetch("/api/members/profile", {
|
||||
method: "PATCH",
|
||||
body: {
|
||||
...formData,
|
||||
craftTags: formData.craftTags,
|
||||
notifications: {
|
||||
events: formData.notifyEvents,
|
||||
updates: formData.notifyUpdates,
|
||||
peerRequests: formData.notifyPeerRequests,
|
||||
connectionRequests: formData.notifyConnectionRequests,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
// Save peer support data separately
|
||||
await $fetch("/api/members/me/peer-support", {
|
||||
// Save community connections data
|
||||
await $fetch("/api/members/me/community-connections", {
|
||||
method: "PATCH",
|
||||
body: {
|
||||
enabled: formData.peerSupportEnabled,
|
||||
skillTopics: formData.peerSupportSkillTopics,
|
||||
supportTopics: formData.peerSupportSupportTopics,
|
||||
availability: formData.peerSupportAvailability,
|
||||
personalMessage: formData.peerSupportMessage,
|
||||
slackUsername: formData.peerSupportSlackUsername,
|
||||
topics: formData.communityConnectionsTopics,
|
||||
offerPeerSupport: formData.communityConnectionsOfferPeerSupport,
|
||||
availability: formData.communityConnectionsAvailability,
|
||||
slackHandle: formData.communityConnectionsSlackHandle,
|
||||
personalMessage: formData.communityConnectionsPersonalMessage,
|
||||
details: formData.communityConnectionsDetails,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
@ -844,48 +739,8 @@ useHead({
|
|||
margin-top: 1px;
|
||||
}
|
||||
|
||||
/* ---- CHECKBOX GRID ---- */
|
||||
.checkbox-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 3px 12px;
|
||||
}
|
||||
|
||||
.checkbox-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
font-size: 11px;
|
||||
color: var(--text-dim);
|
||||
cursor: pointer;
|
||||
padding: 2px 0;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.checkbox-item .cb {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
border: 1px dashed var(--border);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 9px;
|
||||
color: transparent;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.checkbox-item.checked .cb {
|
||||
border-color: var(--candle);
|
||||
border-style: solid;
|
||||
color: var(--candle);
|
||||
}
|
||||
|
||||
.checkbox-item:hover {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
/* ---- PEER SUPPORT PANEL ---- */
|
||||
.peer-panel {
|
||||
/* ---- CONNECTIONS PANEL ---- */
|
||||
.connections-panel {
|
||||
border: 1px dashed var(--border);
|
||||
padding: 12px 14px;
|
||||
margin-top: 4px;
|
||||
|
|
@ -893,19 +748,6 @@ useHead({
|
|||
background: var(--surface);
|
||||
}
|
||||
|
||||
.peer-panel .suggested {
|
||||
font-size: 10px;
|
||||
color: var(--text-faint);
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.peer-panel .suggested a {
|
||||
color: var(--candle);
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/* ---- DISABLED BUTTON ---- */
|
||||
.btn:disabled {
|
||||
opacity: 0.4;
|
||||
|
|
@ -962,10 +804,6 @@ useHead({
|
|||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.checkbox-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.profile-col-left .profile-col-inset,
|
||||
.profile-col-right .profile-col-inset {
|
||||
padding-left: 16px;
|
||||
|
|
|
|||
|
|
@ -60,40 +60,42 @@
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Offering Section -->
|
||||
<div
|
||||
v-if="member.offering?.tags?.length || member.offering?.text"
|
||||
class="profile-section"
|
||||
>
|
||||
<div class="section-label">Offering</div>
|
||||
<div v-if="member.offering.tags?.length" class="tag-list">
|
||||
<!-- What I Do (craft tags, falling back to offering) -->
|
||||
<div v-if="craftTagsDisplay.length > 0 || member.offering?.text" class="profile-section">
|
||||
<div class="section-label">What I Do</div>
|
||||
<div v-if="craftTagsDisplay.length > 0" class="tag-list">
|
||||
<span
|
||||
v-for="tag in member.offering.tags"
|
||||
v-for="tag in craftTagsDisplay"
|
||||
:key="tag"
|
||||
class="tag-pill"
|
||||
>{{ tag }}</span
|
||||
>{{ tagLabel('craft', tag) }}</span
|
||||
>
|
||||
</div>
|
||||
<p v-if="member.offering.text" class="profile-detail offering-text">
|
||||
<p v-if="member.offering?.text" class="profile-detail offering-text">
|
||||
{{ member.offering.text }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Looking For Section -->
|
||||
<!-- Community Connections (cooperative topics with states, falling back to lookingFor) -->
|
||||
<div
|
||||
v-if="member.lookingFor?.tags?.length || member.lookingFor?.text"
|
||||
v-if="connectionTopicsDisplay.length > 0 || member.lookingFor?.text || member.communityConnections?.details"
|
||||
class="profile-section"
|
||||
>
|
||||
<div class="section-label">Looking for</div>
|
||||
<div v-if="member.lookingFor.tags?.length" class="tag-list">
|
||||
<div class="section-label">Community Connections</div>
|
||||
<div v-if="connectionTopicsDisplay.length > 0" class="tag-list">
|
||||
<span
|
||||
v-for="tag in member.lookingFor.tags"
|
||||
:key="tag"
|
||||
class="tag-pill"
|
||||
>{{ tag }}</span
|
||||
v-for="topic in connectionTopicsDisplay"
|
||||
:key="topic.tagSlug || topic"
|
||||
class="tag-pill connection-pill"
|
||||
>
|
||||
<span v-if="topic.state" class="connection-state">{{ stateLabel(topic.state) }}</span>
|
||||
{{ tagLabel('cooperative', topic.tagSlug || topic) }}
|
||||
</span>
|
||||
</div>
|
||||
<p v-if="member.lookingFor.text" class="profile-detail looking-text">
|
||||
<p v-if="member.communityConnections?.details" class="profile-detail connection-details">
|
||||
{{ member.communityConnections.details }}
|
||||
</p>
|
||||
<p v-else-if="member.lookingFor?.text" class="profile-detail looking-text">
|
||||
{{ member.lookingFor.text }}
|
||||
</p>
|
||||
</div>
|
||||
|
|
@ -150,10 +152,10 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Peer Support Section -->
|
||||
<div v-if="member.peerSupport?.enabled" class="profile-section">
|
||||
<!-- Peer Support Section (reads from communityConnections, falls back to peerSupport) -->
|
||||
<div v-if="showPeerSupport" class="profile-section">
|
||||
<div class="section-label">Peer Support</div>
|
||||
<div v-if="member.peerSupport.skillTopics?.length" class="peer-group">
|
||||
<div v-if="member.peerSupport?.skillTopics?.length" class="peer-group">
|
||||
<span class="peer-label">Skills:</span>
|
||||
<div class="tag-list">
|
||||
<span
|
||||
|
|
@ -164,7 +166,7 @@
|
|||
>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="member.peerSupport.supportTopics?.length" class="peer-group">
|
||||
<div v-if="member.peerSupport?.supportTopics?.length" class="peer-group">
|
||||
<span class="peer-label">Topics:</span>
|
||||
<div class="tag-list">
|
||||
<span
|
||||
|
|
@ -175,8 +177,8 @@
|
|||
>
|
||||
</div>
|
||||
</div>
|
||||
<p v-if="member.peerSupport.availability" class="profile-detail">
|
||||
{{ member.peerSupport.availability }}
|
||||
<p v-if="peerAvailability" class="profile-detail">
|
||||
{{ peerAvailability }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
|
@ -233,6 +235,15 @@ const circleLabels = {
|
|||
practitioner: "Practitioner",
|
||||
};
|
||||
|
||||
// State display text mapping
|
||||
const stateLabels = {
|
||||
help: "Can help",
|
||||
interested: "Interested",
|
||||
seeking: "Need help",
|
||||
};
|
||||
|
||||
const stateLabel = (state) => stateLabels[state] || state || "";
|
||||
|
||||
const getInitials = (name) => {
|
||||
if (!name) return "?";
|
||||
return name
|
||||
|
|
@ -246,6 +257,11 @@ const getInitials = (name) => {
|
|||
// Fetch member data — no await so the component renders immediately (no Suspense)
|
||||
const { data, pending, error: fetchError } = useFetch(`/api/members/${id}`);
|
||||
|
||||
// Fetch tags for slug-to-label lookup
|
||||
const { data: tagsData } = useFetch("/api/tags", {
|
||||
default: () => ({ tags: [] }),
|
||||
});
|
||||
|
||||
// Fetch public activity
|
||||
const { data: activityData } = useFetch(`/api/members/${id}/activity`, {
|
||||
params: { limit: 5 },
|
||||
|
|
@ -267,6 +283,56 @@ const formatRelativeDate = (date) => {
|
|||
}
|
||||
const member = computed(() => data.value?.member || null);
|
||||
|
||||
// Tag label lookup
|
||||
const tagLabel = (pool, slug) => {
|
||||
const tags = tagsData.value?.tags || [];
|
||||
const found = tags.find((t) => t.slug === slug && t.pool === pool);
|
||||
return found ? found.label : slug;
|
||||
};
|
||||
|
||||
// Craft tags display: new field, falling back to offering.tags
|
||||
const craftTagsDisplay = computed(() => {
|
||||
if (!member.value) return [];
|
||||
if (member.value.craftTags && member.value.craftTags.length > 0) {
|
||||
return member.value.craftTags;
|
||||
}
|
||||
return member.value.offering?.tags || [];
|
||||
});
|
||||
|
||||
// Connection topics display: new field, falling back to lookingFor.tags
|
||||
const connectionTopicsDisplay = computed(() => {
|
||||
if (!member.value) return [];
|
||||
if (
|
||||
member.value.communityConnections?.topics &&
|
||||
member.value.communityConnections.topics.length > 0
|
||||
) {
|
||||
return member.value.communityConnections.topics;
|
||||
}
|
||||
if (member.value.lookingFor?.tags && member.value.lookingFor.tags.length > 0) {
|
||||
return member.value.lookingFor.tags.map((tag) => ({ tagSlug: tag, state: null }));
|
||||
}
|
||||
return [];
|
||||
});
|
||||
|
||||
// Peer support: check both new communityConnections and old peerSupport
|
||||
const showPeerSupport = computed(() => {
|
||||
if (!member.value) return false;
|
||||
return (
|
||||
member.value.communityConnections?.offerPeerSupport ||
|
||||
member.value.peerSupport?.enabled
|
||||
);
|
||||
});
|
||||
|
||||
// Peer availability: prefer new field, fall back to old
|
||||
const peerAvailability = computed(() => {
|
||||
if (!member.value) return "";
|
||||
return (
|
||||
member.value.communityConnections?.availability ||
|
||||
member.value.peerSupport?.availability ||
|
||||
""
|
||||
);
|
||||
});
|
||||
|
||||
const pageBreadcrumbTitle = useState("pageBreadcrumbTitle", () => "");
|
||||
watch(
|
||||
member,
|
||||
|
|
@ -442,7 +508,8 @@ useHead({
|
|||
}
|
||||
|
||||
.offering-text,
|
||||
.looking-text {
|
||||
.looking-text,
|
||||
.connection-details {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
|
|
@ -462,6 +529,19 @@ useHead({
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.connection-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.connection-state {
|
||||
font-size: 9px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
/* ---- SOCIAL LINKS ---- */
|
||||
.social-links {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -41,64 +41,64 @@
|
|||
>
|
||||
</div>
|
||||
|
||||
<!-- Skills Filter -->
|
||||
<!-- Craft Tags Filter -->
|
||||
<div
|
||||
v-if="availableSkills && availableSkills.length > 0"
|
||||
v-if="craftTagOptions.length > 0"
|
||||
class="skills-bar"
|
||||
>
|
||||
<span class="tag-label">Skills:</span>
|
||||
<span class="tag-label">Craft:</span>
|
||||
<button
|
||||
v-for="skill in (availableSkills || []).slice(
|
||||
v-for="tag in craftTagOptions.slice(
|
||||
0,
|
||||
showAllSkills ? undefined : 10,
|
||||
showAllCraftTags ? undefined : 10,
|
||||
)"
|
||||
:key="skill"
|
||||
:key="tag.slug"
|
||||
type="button"
|
||||
class="skill-tag"
|
||||
:class="{ active: selectedSkills.includes(skill) }"
|
||||
@click="toggleSkill(skill)"
|
||||
:class="{ active: selectedCraftTags.includes(tag.slug) }"
|
||||
@click="toggleCraftTag(tag.slug)"
|
||||
>
|
||||
{{ skill }}
|
||||
{{ tag.label }}
|
||||
</button>
|
||||
<button
|
||||
v-if="availableSkills && availableSkills.length > 10"
|
||||
v-if="craftTagOptions.length > 10"
|
||||
type="button"
|
||||
class="more-btn"
|
||||
@click="showAllSkills = !showAllSkills"
|
||||
@click="showAllCraftTags = !showAllCraftTags"
|
||||
>
|
||||
{{
|
||||
showAllSkills ? "Show less" : `+${availableSkills.length - 10} more`
|
||||
showAllCraftTags ? "Show less" : `+${craftTagOptions.length - 10} more`
|
||||
}}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Topics Filter -->
|
||||
<!-- Connection Tags Filter -->
|
||||
<div
|
||||
v-if="availableTopics && availableTopics.length > 0"
|
||||
v-if="connectionTagOptions.length > 0"
|
||||
class="skills-bar"
|
||||
>
|
||||
<span class="tag-label">Topics:</span>
|
||||
<button
|
||||
v-for="topic in (availableTopics || []).slice(
|
||||
v-for="tag in connectionTagOptions.slice(
|
||||
0,
|
||||
showAllTopics ? undefined : 10,
|
||||
showAllConnectionTags ? undefined : 10,
|
||||
)"
|
||||
:key="topic"
|
||||
:key="tag.slug"
|
||||
type="button"
|
||||
class="skill-tag"
|
||||
:class="{ active: selectedTopics.includes(topic) }"
|
||||
@click="toggleTopic(topic)"
|
||||
:class="{ active: selectedConnectionTags.includes(tag.slug) }"
|
||||
@click="toggleConnectionTag(tag.slug)"
|
||||
>
|
||||
{{ topic }}
|
||||
{{ tag.label }}
|
||||
</button>
|
||||
<button
|
||||
v-if="availableTopics && availableTopics.length > 10"
|
||||
v-if="connectionTagOptions.length > 10"
|
||||
type="button"
|
||||
class="more-btn"
|
||||
@click="showAllTopics = !showAllTopics"
|
||||
@click="showAllConnectionTags = !showAllConnectionTags"
|
||||
>
|
||||
{{
|
||||
showAllTopics ? "Show less" : `+${availableTopics.length - 10} more`
|
||||
showAllConnectionTags ? "Show less" : `+${connectionTagOptions.length - 10} more`
|
||||
}}
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -117,16 +117,16 @@
|
|||
Offering Peer Support
|
||||
<button type="button" @click="clearPeerSupportFilter">×</button>
|
||||
</span>
|
||||
<span v-for="skill in selectedSkills" :key="'s-' + skill" class="af-tag">
|
||||
{{ skill }}
|
||||
<button type="button" @click="toggleSkill(skill)">×</button>
|
||||
<span v-for="slug in selectedCraftTags" :key="'c-' + slug" class="af-tag">
|
||||
{{ craftTagLabel(slug) }}
|
||||
<button type="button" @click="toggleCraftTag(slug)">×</button>
|
||||
</span>
|
||||
<span v-for="topic in selectedTopics" :key="'t-' + topic" class="af-tag">
|
||||
{{ topic }}
|
||||
<button type="button" @click="toggleTopic(topic)">×</button>
|
||||
<span v-for="slug in selectedConnectionTags" :key="'t-' + slug" class="af-tag">
|
||||
{{ connectionTagLabel(slug) }}
|
||||
<button type="button" @click="toggleConnectionTag(slug)">×</button>
|
||||
</span>
|
||||
<button
|
||||
v-if="selectedSkills.length > 0 || selectedTopics.length > 0"
|
||||
v-if="selectedCraftTags.length > 0 || selectedConnectionTags.length > 0"
|
||||
type="button"
|
||||
class="clear-all-btn"
|
||||
@click="clearAllFilters"
|
||||
|
|
@ -186,33 +186,38 @@
|
|||
}}
|
||||
</div>
|
||||
|
||||
<!-- Skills tags -->
|
||||
<!-- Craft tags (fall back to offering.tags) -->
|
||||
<div
|
||||
v-if="member.offering?.tags && member.offering.tags.length > 0"
|
||||
v-if="getMemberCraftTags(member).length > 0"
|
||||
class="mc-tags"
|
||||
>
|
||||
<span class="tag-label">Skills:</span>
|
||||
<span class="tag-label">Craft:</span>
|
||||
<span
|
||||
v-for="tag in member.offering.tags"
|
||||
v-for="tag in getMemberCraftTags(member)"
|
||||
:key="tag"
|
||||
class="skill-tag"
|
||||
>{{ tag }}</span
|
||||
>{{ craftTagLabel(tag) }}</span
|
||||
>
|
||||
</div>
|
||||
|
||||
<!-- Looking for -->
|
||||
<!-- Community connections topics (fall back to lookingFor.tags) -->
|
||||
<div
|
||||
v-if="member.lookingFor?.tags && member.lookingFor.tags.length > 0"
|
||||
v-if="getMemberConnectionTopics(member).length > 0"
|
||||
class="mc-looking"
|
||||
>
|
||||
Looking for: {{ member.lookingFor.tags.join(", ") }}
|
||||
<span
|
||||
v-for="topic in getMemberConnectionTopics(member)"
|
||||
:key="topic.tagSlug || topic"
|
||||
class="connection-topic"
|
||||
>
|
||||
<span class="connection-state">{{ stateLabel(topic.state) }}</span>
|
||||
{{ connectionTagLabel(topic.tagSlug || topic) }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<!-- Peer support session link -->
|
||||
<a
|
||||
v-if="
|
||||
member.peerSupport?.enabled && member.peerSupport?.slackUsername
|
||||
"
|
||||
v-if="showPeerSupport(member)"
|
||||
href="#"
|
||||
class="mc-session"
|
||||
@click.prevent="openSlackDM(member)"
|
||||
|
|
@ -270,16 +275,27 @@ const { render: renderMarkdown } = useMarkdown();
|
|||
// State
|
||||
const members = ref([]);
|
||||
const totalCount = ref(0);
|
||||
const availableSkills = ref([]);
|
||||
const availableTopics = ref([]);
|
||||
const loading = ref(true);
|
||||
const searchQuery = ref("");
|
||||
const selectedCircle = ref("all");
|
||||
const peerSupportFilter = ref("all");
|
||||
const selectedSkills = ref([]);
|
||||
const selectedTopics = ref([]);
|
||||
const showAllSkills = ref(false);
|
||||
const showAllTopics = ref(false);
|
||||
const selectedCraftTags = ref([]);
|
||||
const selectedConnectionTags = ref([]);
|
||||
const showAllCraftTags = ref(false);
|
||||
const showAllConnectionTags = ref(false);
|
||||
|
||||
// Tag options from API
|
||||
const craftTagOptions = ref([]);
|
||||
const connectionTagOptions = ref([]);
|
||||
|
||||
// State display text mapping
|
||||
const stateLabels = {
|
||||
help: "Can help",
|
||||
interested: "Interested",
|
||||
seeking: "Need help",
|
||||
};
|
||||
|
||||
const stateLabel = (state) => stateLabels[state] || state || "";
|
||||
|
||||
// Circle options
|
||||
const circleOptions = [
|
||||
|
|
@ -295,19 +311,55 @@ const circleLabels = {
|
|||
practitioner: "Practitioner",
|
||||
};
|
||||
|
||||
// Peer support filter options
|
||||
const peerSupportOptions = [
|
||||
{ label: "All Members", value: "all" },
|
||||
{ label: "Offering Peer Support", value: "true" },
|
||||
];
|
||||
// Tag slug-to-label lookups
|
||||
const craftTagLabel = (slug) => {
|
||||
const found = craftTagOptions.value.find((t) => t.slug === slug);
|
||||
return found ? found.label : slug;
|
||||
};
|
||||
|
||||
const connectionTagLabel = (slug) => {
|
||||
const found = connectionTagOptions.value.find((t) => t.slug === slug);
|
||||
return found ? found.label : slug;
|
||||
};
|
||||
|
||||
// Get craft tags for a member (new field, falling back to offering.tags)
|
||||
const getMemberCraftTags = (member) => {
|
||||
if (member.craftTags && member.craftTags.length > 0) {
|
||||
return member.craftTags;
|
||||
}
|
||||
return member.offering?.tags || [];
|
||||
};
|
||||
|
||||
// Get connection topics for a member (new field, falling back to lookingFor.tags)
|
||||
const getMemberConnectionTopics = (member) => {
|
||||
if (
|
||||
member.communityConnections?.topics &&
|
||||
member.communityConnections.topics.length > 0
|
||||
) {
|
||||
return member.communityConnections.topics;
|
||||
}
|
||||
// Fallback: wrap old lookingFor.tags as plain strings
|
||||
if (member.lookingFor?.tags && member.lookingFor.tags.length > 0) {
|
||||
return member.lookingFor.tags.map((tag) => ({ tagSlug: tag, state: null }));
|
||||
}
|
||||
return [];
|
||||
};
|
||||
|
||||
// Show peer support link (check both old and new fields)
|
||||
const showPeerSupport = (member) => {
|
||||
if (member.communityConnections?.offerPeerSupport) return true;
|
||||
if (member.peerSupport?.enabled && member.peerSupport?.slackUsername)
|
||||
return true;
|
||||
return false;
|
||||
};
|
||||
|
||||
// Computed: has active filters
|
||||
const hasActiveFilters = computed(() => {
|
||||
return (
|
||||
(selectedCircle.value && selectedCircle.value !== "all") ||
|
||||
(peerSupportFilter.value && peerSupportFilter.value !== "all") ||
|
||||
selectedSkills.value.length > 0 ||
|
||||
selectedTopics.value.length > 0
|
||||
selectedCraftTags.value.length > 0 ||
|
||||
selectedConnectionTags.value.length > 0
|
||||
);
|
||||
});
|
||||
|
||||
|
|
@ -333,28 +385,51 @@ const loadMembers = async () => {
|
|||
params.circle = selectedCircle.value;
|
||||
if (peerSupportFilter.value && peerSupportFilter.value !== "all")
|
||||
params.peerSupport = peerSupportFilter.value;
|
||||
if (selectedSkills.value.length > 0)
|
||||
params.skills = selectedSkills.value.join(",");
|
||||
if (selectedTopics.value.length > 0)
|
||||
params.topics = selectedTopics.value.join(",");
|
||||
if (selectedCraftTags.value.length === 1)
|
||||
params.craftTag = selectedCraftTags.value[0];
|
||||
if (selectedConnectionTags.value.length === 1)
|
||||
params.connectionTag = selectedConnectionTags.value[0];
|
||||
|
||||
const data = await $fetch("/api/members/directory", { params });
|
||||
|
||||
members.value = data.members || [];
|
||||
totalCount.value = data.totalCount || 0;
|
||||
availableSkills.value = data.filters?.availableSkills || [];
|
||||
availableTopics.value = data.filters?.availableTopics || [];
|
||||
|
||||
// Update tag options from API response (only on initial load or if empty)
|
||||
if (data.filters?.craftTags && craftTagOptions.value.length === 0) {
|
||||
craftTagOptions.value = data.filters.craftTags;
|
||||
}
|
||||
if (
|
||||
data.filters?.cooperativeTags &&
|
||||
connectionTagOptions.value.length === 0
|
||||
) {
|
||||
connectionTagOptions.value = data.filters.cooperativeTags;
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Failed to load members:", error);
|
||||
members.value = [];
|
||||
totalCount.value = 0;
|
||||
availableSkills.value = [];
|
||||
availableTopics.value = [];
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
// Fetch tag options from API on mount
|
||||
const loadTagOptions = async () => {
|
||||
try {
|
||||
const data = await $fetch("/api/tags");
|
||||
const tags = data.tags || [];
|
||||
craftTagOptions.value = tags
|
||||
.filter((t) => t.pool === "craft")
|
||||
.map((t) => ({ slug: t.slug, label: t.label }));
|
||||
connectionTagOptions.value = tags
|
||||
.filter((t) => t.pool === "cooperative")
|
||||
.map((t) => ({ slug: t.slug, label: t.label }));
|
||||
} catch (error) {
|
||||
console.error("Failed to load tags:", error);
|
||||
}
|
||||
};
|
||||
|
||||
// Toggle peer support checkbox
|
||||
const togglePeerSupport = (e) => {
|
||||
peerSupportFilter.value = e.target.checked ? "true" : "all";
|
||||
|
|
@ -370,24 +445,24 @@ const debouncedSearch = () => {
|
|||
}, 300);
|
||||
};
|
||||
|
||||
// Toggle skill filter
|
||||
const toggleSkill = (skill) => {
|
||||
const index = selectedSkills.value.indexOf(skill);
|
||||
// Toggle craft tag filter
|
||||
const toggleCraftTag = (slug) => {
|
||||
const index = selectedCraftTags.value.indexOf(slug);
|
||||
if (index > -1) {
|
||||
selectedSkills.value.splice(index, 1);
|
||||
selectedCraftTags.value.splice(index, 1);
|
||||
} else {
|
||||
selectedSkills.value.push(skill);
|
||||
selectedCraftTags.value = [slug]; // single-select for API query param
|
||||
}
|
||||
loadMembers();
|
||||
};
|
||||
|
||||
// Toggle topic filter
|
||||
const toggleTopic = (topic) => {
|
||||
const index = selectedTopics.value.indexOf(topic);
|
||||
// Toggle connection tag filter
|
||||
const toggleConnectionTag = (slug) => {
|
||||
const index = selectedConnectionTags.value.indexOf(slug);
|
||||
if (index > -1) {
|
||||
selectedTopics.value.splice(index, 1);
|
||||
selectedConnectionTags.value.splice(index, 1);
|
||||
} else {
|
||||
selectedTopics.value.push(topic);
|
||||
selectedConnectionTags.value = [slug]; // single-select for API query param
|
||||
}
|
||||
loadMembers();
|
||||
};
|
||||
|
|
@ -407,14 +482,17 @@ const clearAllFilters = () => {
|
|||
searchQuery.value = "";
|
||||
selectedCircle.value = "all";
|
||||
peerSupportFilter.value = "all";
|
||||
selectedSkills.value = [];
|
||||
selectedTopics.value = [];
|
||||
selectedCraftTags.value = [];
|
||||
selectedConnectionTags.value = [];
|
||||
loadMembers();
|
||||
};
|
||||
|
||||
// Slack DM functionality
|
||||
const openSlackDM = async (member) => {
|
||||
const username = member.peerSupport?.slackUsername || member.name;
|
||||
const username =
|
||||
member.communityConnections?.slackHandle ||
|
||||
member.peerSupport?.slackUsername ||
|
||||
member.name;
|
||||
|
||||
try {
|
||||
await navigator.clipboard.writeText(username);
|
||||
|
|
@ -429,12 +507,13 @@ const openSlackDM = async (member) => {
|
|||
};
|
||||
|
||||
// Load on mount and handle query params
|
||||
onMounted(() => {
|
||||
onMounted(async () => {
|
||||
const route = useRoute();
|
||||
if (route.query.peerSupport === "true") {
|
||||
peerSupportFilter.value = "true";
|
||||
}
|
||||
|
||||
await loadTagOptions();
|
||||
loadMembers();
|
||||
});
|
||||
|
||||
|
|
@ -756,10 +835,28 @@ useHead({
|
|||
}
|
||||
|
||||
.mc-looking {
|
||||
font-size: 11px;
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.connection-topic {
|
||||
font-size: 10px;
|
||||
color: var(--text-dim);
|
||||
padding: 1px 6px;
|
||||
border: 1px dashed var(--border);
|
||||
white-space: nowrap;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.connection-state {
|
||||
font-size: 9px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--text-faint);
|
||||
font-style: italic;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.mc-session {
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
// Redirect to members directory with peer support filter
|
||||
// Redirect to connections page
|
||||
definePageMeta({
|
||||
middleware: defineNuxtRouteMiddleware(() => {
|
||||
return navigateTo("/members?peerSupport=true");
|
||||
return navigateTo("/connections");
|
||||
}),
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue