2026-02-26 01:32:04 +00:00
|
|
|
<script setup lang="ts">
|
2026-02-27 13:58:00 +00:00
|
|
|
import { ref, onMounted, computed } from 'vue'
|
2026-02-26 01:32:04 +00:00
|
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
|
|
|
import {
|
|
|
|
|
Card,
|
|
|
|
|
Typography,
|
|
|
|
|
Button,
|
|
|
|
|
List,
|
|
|
|
|
Space,
|
|
|
|
|
Spin,
|
|
|
|
|
Input,
|
|
|
|
|
message,
|
|
|
|
|
Tag,
|
|
|
|
|
Modal,
|
|
|
|
|
Tabs,
|
|
|
|
|
InputNumber,
|
|
|
|
|
} from 'ant-design-vue'
|
|
|
|
|
import { apiClient, isAxiosError, API } from '../router/api'
|
|
|
|
|
import { useUserStore } from '../stores/userStore'
|
|
|
|
|
import type { Organization } from '../types/organization'
|
|
|
|
|
import type { User } from '../types/user'
|
|
|
|
|
import type { InviteToken } from '../types/organization'
|
|
|
|
|
import type { Role } from '../types/organization'
|
|
|
|
|
|
|
|
|
|
const route = useRoute()
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
const auth = useUserStore()
|
|
|
|
|
|
2026-02-27 12:53:19 +00:00
|
|
|
const organizationUuid = route.params.organizationUuid as string
|
2026-02-26 01:32:04 +00:00
|
|
|
const organization = ref<Organization | null>(null)
|
|
|
|
|
const members = ref<User[]>([])
|
|
|
|
|
const invites = ref<InviteToken[]>([])
|
|
|
|
|
const newInviteMaxUses = ref<number>(1)
|
|
|
|
|
const Roles = ref<Role[]>([])
|
2026-02-27 13:58:00 +00:00
|
|
|
const memberSearch = ref('')
|
|
|
|
|
const roleSearch = ref('')
|
2026-02-26 01:32:04 +00:00
|
|
|
const loading = ref(false)
|
|
|
|
|
const creatingRole = ref(false)
|
|
|
|
|
const deletingRoleUuid = ref<string | null>(null)
|
|
|
|
|
const roleModalVisible = ref(false)
|
|
|
|
|
const createRoleForm = ref({
|
|
|
|
|
name: '',
|
|
|
|
|
description: '',
|
|
|
|
|
})
|
|
|
|
|
const inviteModalVisible = ref(false)
|
|
|
|
|
const newInviteUrl = ref('')
|
|
|
|
|
const editingDescription = ref(false)
|
|
|
|
|
const newDescription = ref('')
|
|
|
|
|
|
2026-02-27 13:58:00 +00:00
|
|
|
const filteredMembers = computed(() => {
|
|
|
|
|
const query = memberSearch.value.trim().toLowerCase()
|
|
|
|
|
if (!query) return members.value
|
|
|
|
|
return members.value.filter((member) => {
|
|
|
|
|
const fullName = `${member.first_name} ${member.last_name}`.toLowerCase()
|
|
|
|
|
return fullName.includes(query)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const filteredRoles = computed(() => {
|
|
|
|
|
const query = roleSearch.value.trim().toLowerCase()
|
|
|
|
|
if (!query) return Roles.value
|
|
|
|
|
return Roles.value.filter((role) => {
|
|
|
|
|
const name = role.name?.toLowerCase() || ''
|
|
|
|
|
const description = role.description?.toLowerCase() || ''
|
|
|
|
|
return name.includes(query) || description.includes(query)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const memberEmptyMessage = computed(() => {
|
|
|
|
|
if (members.value.length === 0) return 'No members in this organization yet.'
|
|
|
|
|
if (memberSearch.value.trim()) return 'No members match your search.'
|
|
|
|
|
return 'No members in this organization yet.'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const roleEmptyMessage = computed(() => {
|
|
|
|
|
if (Roles.value.length === 0) return 'No Roles in this organization yet.'
|
|
|
|
|
if (roleSearch.value.trim()) return 'No roles match your search.'
|
|
|
|
|
return 'No Roles in this organization yet.'
|
|
|
|
|
})
|
|
|
|
|
|
2026-02-26 01:32:04 +00:00
|
|
|
const fetchOrganization = async () => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
2026-02-27 12:53:19 +00:00
|
|
|
const response = await apiClient.get<Organization>(API.organization.byId(organizationUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
organization.value = response.data
|
|
|
|
|
newDescription.value = response.data.description
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to fetch organization:', error)
|
|
|
|
|
message.error('Failed to load organization details')
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const fetchMembers = async () => {
|
|
|
|
|
try {
|
2026-02-27 12:53:19 +00:00
|
|
|
const response = await apiClient.get<User[]>(API.organization.members.list(organizationUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
members.value = response.data
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to fetch members:', error)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const fetchInvites = async () => {
|
|
|
|
|
try {
|
2026-03-08 13:19:17 +00:00
|
|
|
const response = await apiClient.get<InviteToken[]>(API.invites.list(organizationUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
invites.value = response.data
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to fetch invites:', error)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const fetchRoles = async () => {
|
|
|
|
|
try {
|
2026-03-08 13:19:17 +00:00
|
|
|
const response = await apiClient.get<Role[]>(API.roles.list(organizationUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
Roles.value = response.data as unknown as Role[]
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to fetch Roles:', error)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const resetRoleForm = () => {
|
|
|
|
|
createRoleForm.value = { name: '', description: '' }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const hasDuplicateRoleName = (name: string) =>
|
|
|
|
|
Roles.value.some((role) => role.name.trim().toLowerCase() === name.trim().toLowerCase())
|
|
|
|
|
|
|
|
|
|
const createRole = async () => {
|
|
|
|
|
const name = createRoleForm.value.name.trim()
|
|
|
|
|
const description = createRoleForm.value.description.trim()
|
|
|
|
|
|
|
|
|
|
if (!name) {
|
|
|
|
|
message.error('Role name is required')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hasDuplicateRoleName(name)) {
|
|
|
|
|
message.error('A role with this name already exists')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
creatingRole.value = true
|
|
|
|
|
try {
|
2026-03-08 13:19:17 +00:00
|
|
|
await apiClient.post(API.roles.list(organizationUuid), { name, description })
|
2026-02-26 01:32:04 +00:00
|
|
|
message.success('Role created successfully')
|
|
|
|
|
roleModalVisible.value = false
|
|
|
|
|
resetRoleForm()
|
|
|
|
|
await fetchRoles()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to create role:', error)
|
|
|
|
|
if (isAxiosError(error)) {
|
|
|
|
|
message.error(error.response?.data?.error || 'Failed to create role')
|
|
|
|
|
} else {
|
|
|
|
|
message.error('Failed to create role')
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
creatingRole.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const deleteRole = async (role: Role) => {
|
|
|
|
|
Modal.confirm({
|
|
|
|
|
title: 'Delete role',
|
|
|
|
|
content: `Are you sure you want to delete "${role.name}"?`,
|
|
|
|
|
okText: 'Delete',
|
|
|
|
|
okType: 'danger',
|
|
|
|
|
cancelText: 'Cancel',
|
|
|
|
|
onOk: async () => {
|
|
|
|
|
deletingRoleUuid.value = role.uuid
|
|
|
|
|
try {
|
2026-03-08 13:19:17 +00:00
|
|
|
await apiClient.delete(API.roles.remove(organizationUuid, role.uuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
message.success('Role deleted successfully')
|
|
|
|
|
await fetchRoles()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to delete role:', error)
|
|
|
|
|
if (isAxiosError(error)) {
|
|
|
|
|
message.error(error.response?.data?.error || 'Failed to delete role')
|
|
|
|
|
} else {
|
|
|
|
|
message.error('Failed to delete role')
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
deletingRoleUuid.value = null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const createInvite = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await apiClient.post<InviteToken>(
|
2026-03-08 13:19:17 +00:00
|
|
|
API.invites.create(organizationUuid, newInviteMaxUses.value),
|
2026-02-26 01:32:04 +00:00
|
|
|
)
|
|
|
|
|
newInviteUrl.value = response.data.invite_url
|
|
|
|
|
inviteModalVisible.value = true
|
|
|
|
|
fetchInvites()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to create invite:', error)
|
|
|
|
|
message.error('Failed to create invite')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-08 13:19:17 +00:00
|
|
|
const fallbackCopyText = (text: string): boolean => {
|
|
|
|
|
const textarea = document.createElement('textarea')
|
|
|
|
|
textarea.value = text
|
|
|
|
|
textarea.setAttribute('readonly', 'true')
|
|
|
|
|
textarea.style.position = 'fixed'
|
|
|
|
|
textarea.style.opacity = '0'
|
|
|
|
|
textarea.style.pointerEvents = 'none'
|
|
|
|
|
document.body.appendChild(textarea)
|
|
|
|
|
textarea.focus()
|
|
|
|
|
textarea.select()
|
|
|
|
|
|
|
|
|
|
const copied = document.execCommand('copy')
|
|
|
|
|
document.body.removeChild(textarea)
|
|
|
|
|
return copied
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
|
|
|
|
|
2026-03-08 13:19:17 +00:00
|
|
|
const copyToClipboard = async (text: string): Promise<boolean> => {
|
|
|
|
|
const safeText = String(text || '').trim()
|
|
|
|
|
if (!safeText) return false
|
|
|
|
|
|
|
|
|
|
if (window.isSecureContext && window.navigator.clipboard?.writeText) {
|
|
|
|
|
try {
|
|
|
|
|
await window.navigator.clipboard.writeText(safeText)
|
|
|
|
|
return true
|
|
|
|
|
} catch {
|
|
|
|
|
// Fall through to legacy copy for restricted browser contexts.
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fallbackCopyText(safeText)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const copyInviteUrl = async () => {
|
|
|
|
|
const copied = await copyToClipboard(newInviteUrl.value)
|
|
|
|
|
if (copied) {
|
|
|
|
|
message.success('Invite URL copied to clipboard')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
message.error('Could not copy invite URL. Please copy it manually.')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const copyUrl = async (url: string) => {
|
|
|
|
|
const copied = await copyToClipboard(url)
|
|
|
|
|
if (copied) {
|
|
|
|
|
message.success('Copied to clipboard')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
message.error('Could not copy URL. Please copy it manually.')
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-27 12:53:19 +00:00
|
|
|
const revokeInvite = async (inviteUuid: string) => {
|
2026-02-26 01:32:04 +00:00
|
|
|
try {
|
2026-03-08 13:19:17 +00:00
|
|
|
await apiClient.delete(API.invites.revoke(organizationUuid, inviteUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
message.success('Invite revoked')
|
|
|
|
|
fetchInvites()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to revoke invite:', error)
|
|
|
|
|
message.error('Failed to revoke invite')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-27 12:53:19 +00:00
|
|
|
const removeMember = async (userUuid: string) => {
|
2026-02-26 01:32:04 +00:00
|
|
|
try {
|
2026-02-27 12:53:19 +00:00
|
|
|
await apiClient.post(API.organization.members.remove(organizationUuid, userUuid))
|
2026-02-26 01:32:04 +00:00
|
|
|
message.success('Member removed')
|
|
|
|
|
fetchMembers()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to remove member:', error)
|
|
|
|
|
if (isAxiosError(error)) {
|
|
|
|
|
message.error(error.response?.data?.error || 'Failed to remove member')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const saveDescription = async () => {
|
|
|
|
|
try {
|
2026-02-27 12:53:19 +00:00
|
|
|
await apiClient.patch(API.organization.byId(organizationUuid), {
|
2026-02-26 01:32:04 +00:00
|
|
|
description: newDescription.value,
|
|
|
|
|
})
|
|
|
|
|
message.success('Description updated')
|
|
|
|
|
editingDescription.value = false
|
|
|
|
|
fetchOrganization()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to update description:', error)
|
|
|
|
|
message.error('Failed to update description')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await fetchOrganization()
|
|
|
|
|
await fetchMembers()
|
|
|
|
|
await fetchInvites()
|
|
|
|
|
await fetchRoles()
|
|
|
|
|
|
2026-02-27 12:53:19 +00:00
|
|
|
const currentUserUuid = auth.user?.uuid
|
|
|
|
|
const isOwner = organization.value?.owner?.uuid === currentUserUuid
|
|
|
|
|
const myMembership = members.value.find((member) => member.uuid === currentUserUuid)
|
2026-02-26 01:32:04 +00:00
|
|
|
const isEmployer = myMembership?.is_manager
|
|
|
|
|
|
|
|
|
|
if (!isOwner && !isEmployer) {
|
|
|
|
|
message.error('You do not have permission to manage this organization')
|
2026-02-27 12:53:19 +00:00
|
|
|
router.replace(`/organization/${organizationUuid}`)
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="page">
|
|
|
|
|
<Spin :spinning="loading" tip="Loading organization...">
|
|
|
|
|
<Card v-if="organization" class="panel" :bordered="false">
|
|
|
|
|
<div class="header">
|
|
|
|
|
<Typography.Title :level="2">Manage {{ organization.name }}</Typography.Title>
|
2026-02-27 12:53:19 +00:00
|
|
|
<Button type="default" @click="router.push(`/organization/${organizationUuid}`)">
|
2026-02-26 01:32:04 +00:00
|
|
|
Back to Organization
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Tabs>
|
|
|
|
|
<Tabs.TabPane key="details" tab="Details">
|
|
|
|
|
<div class="section">
|
2026-03-08 13:19:17 +00:00
|
|
|
<Typography.Title :level="4" style="color: #1f2937 !important">
|
2026-02-26 01:32:04 +00:00
|
|
|
Description
|
|
|
|
|
</Typography.Title>
|
|
|
|
|
<div v-if="!editingDescription">
|
|
|
|
|
<Typography.Paragraph>
|
|
|
|
|
{{ organization.description || 'No description provided' }}
|
|
|
|
|
</Typography.Paragraph>
|
|
|
|
|
<Button @click="editingDescription = true" size="small">
|
|
|
|
|
Edit Description
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<Input.TextArea
|
|
|
|
|
v-model:value="newDescription"
|
|
|
|
|
:rows="4"
|
|
|
|
|
placeholder="Enter organization description"
|
|
|
|
|
/>
|
|
|
|
|
<Space style="margin-top: 0.5rem">
|
|
|
|
|
<Button type="primary" @click="saveDescription">Save</Button>
|
|
|
|
|
<Button @click="editingDescription = false">Cancel</Button>
|
|
|
|
|
</Space>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Tabs.TabPane>
|
|
|
|
|
|
|
|
|
|
<Tabs.TabPane key="members" tab="Members">
|
|
|
|
|
<div class="section">
|
|
|
|
|
<div class="section-header">
|
2026-03-08 13:19:17 +00:00
|
|
|
<Typography.Title :level="4" style="color: #1f2937 !important">
|
2026-02-27 13:58:00 +00:00
|
|
|
Members ({{ filteredMembers.length }})
|
2026-02-26 01:32:04 +00:00
|
|
|
</Typography.Title>
|
2026-02-27 13:58:00 +00:00
|
|
|
<Input
|
|
|
|
|
v-model:value="memberSearch"
|
|
|
|
|
allow-clear
|
|
|
|
|
class="search-input"
|
|
|
|
|
placeholder="Search members by name"
|
|
|
|
|
style="max-width: 280px"
|
|
|
|
|
/>
|
2026-02-26 01:32:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-27 13:58:00 +00:00
|
|
|
<List
|
|
|
|
|
v-if="filteredMembers.length > 0"
|
|
|
|
|
:data-source="filteredMembers"
|
|
|
|
|
:bordered="false"
|
|
|
|
|
>
|
2026-02-26 01:32:04 +00:00
|
|
|
<template #renderItem="{ item }">
|
|
|
|
|
<List.Item class="member-item">
|
|
|
|
|
<List.Item.Meta
|
|
|
|
|
:title="`${item.first_name} ${item.last_name}`"
|
2026-02-27 13:58:00 +00:00
|
|
|
:description="item.email_address"
|
2026-02-26 01:32:04 +00:00
|
|
|
/>
|
|
|
|
|
<Space>
|
2026-02-27 13:58:00 +00:00
|
|
|
<Tag v-if="item.uuid === organization.owner.uuid" color="blue">
|
|
|
|
|
Owner
|
|
|
|
|
</Tag>
|
|
|
|
|
<Tag v-else :color="item.is_manager ? 'purple' : 'default'">
|
|
|
|
|
{{ item.is_manager ? 'Manager' : 'Member' }}
|
|
|
|
|
</Tag>
|
2026-02-26 01:32:04 +00:00
|
|
|
<Button
|
2026-02-27 12:53:19 +00:00
|
|
|
v-if="item.uuid !== organization.owner.uuid"
|
2026-02-26 01:32:04 +00:00
|
|
|
danger
|
|
|
|
|
size="small"
|
2026-02-27 12:53:19 +00:00
|
|
|
@click="removeMember(item.uuid)"
|
2026-02-26 01:32:04 +00:00
|
|
|
>
|
|
|
|
|
Remove
|
|
|
|
|
</Button>
|
|
|
|
|
</Space>
|
|
|
|
|
</List.Item>
|
|
|
|
|
</template>
|
|
|
|
|
</List>
|
2026-02-27 13:58:00 +00:00
|
|
|
<Typography.Paragraph v-else type="secondary">
|
|
|
|
|
{{ memberEmptyMessage }}
|
|
|
|
|
</Typography.Paragraph>
|
2026-02-26 01:32:04 +00:00
|
|
|
</div>
|
|
|
|
|
</Tabs.TabPane>
|
|
|
|
|
|
|
|
|
|
<Tabs.TabPane key="invites" tab="Invites">
|
|
|
|
|
<div class="section">
|
|
|
|
|
<div class="section-header">
|
2026-03-08 13:19:17 +00:00
|
|
|
<Typography.Title :level="4" style="color: #1f2937 !important">
|
2026-02-26 01:32:04 +00:00
|
|
|
Invite Tokens
|
|
|
|
|
</Typography.Title>
|
|
|
|
|
<Space>
|
|
|
|
|
<InputNumber v-model:value="newInviteMaxUses" :min="1" />
|
|
|
|
|
<Button type="primary" @click="createInvite">
|
|
|
|
|
Create Invite
|
|
|
|
|
</Button>
|
|
|
|
|
</Space>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<List
|
|
|
|
|
v-if="invites.length > 0"
|
|
|
|
|
:data-source="invites"
|
|
|
|
|
:bordered="false"
|
|
|
|
|
>
|
|
|
|
|
<template #renderItem="{ item }">
|
|
|
|
|
<List.Item class="invite-item">
|
|
|
|
|
<List.Item.Meta
|
|
|
|
|
:title="`Created by ${item.created_by.first_name} ${item.created_by.last_name}`"
|
|
|
|
|
:description="`Expires: ${new Date(item.expires_at).toLocaleDateString()}`"
|
|
|
|
|
/>
|
|
|
|
|
<Space>
|
|
|
|
|
<Tag :color="item.is_valid ? 'green' : 'red'">
|
|
|
|
|
{{ item.is_valid ? 'Valid' : 'Expired' }}
|
|
|
|
|
</Tag>
|
|
|
|
|
<Tag class="white-tag">
|
|
|
|
|
Uses: {{ item.uses || 0 }} /
|
|
|
|
|
{{ item.max_uses || 1 }}
|
|
|
|
|
</Tag>
|
|
|
|
|
<Button size="small" @click="copyUrl(item.invite_url)">
|
|
|
|
|
Copy URL
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
danger
|
|
|
|
|
size="small"
|
2026-02-27 12:53:19 +00:00
|
|
|
@click="revokeInvite(item.uuid)"
|
2026-02-26 01:32:04 +00:00
|
|
|
>
|
|
|
|
|
Revoke
|
|
|
|
|
</Button>
|
|
|
|
|
</Space>
|
|
|
|
|
</List.Item>
|
|
|
|
|
</template>
|
|
|
|
|
</List>
|
|
|
|
|
<Typography.Paragraph v-else type="secondary">
|
|
|
|
|
No active invites. Create one to invite new members.
|
|
|
|
|
</Typography.Paragraph>
|
|
|
|
|
</div>
|
|
|
|
|
</Tabs.TabPane>
|
|
|
|
|
|
|
|
|
|
<Tabs.TabPane key="Roles" tab="Roles">
|
|
|
|
|
<div class="section">
|
|
|
|
|
<div class="section-header">
|
2026-03-08 13:19:17 +00:00
|
|
|
<Typography.Title :level="4" style="color: #1f2937 !important">
|
2026-02-27 13:58:00 +00:00
|
|
|
Roles ({{ filteredRoles.length }})
|
2026-02-26 01:32:04 +00:00
|
|
|
</Typography.Title>
|
2026-02-27 13:58:00 +00:00
|
|
|
<Space>
|
|
|
|
|
<Input
|
|
|
|
|
v-model:value="roleSearch"
|
|
|
|
|
allow-clear
|
|
|
|
|
class="search-input"
|
|
|
|
|
placeholder="Search roles by name or description"
|
|
|
|
|
style="width: 300px"
|
|
|
|
|
/>
|
|
|
|
|
<Button type="primary" @click="roleModalVisible = true">
|
|
|
|
|
Create Role
|
|
|
|
|
</Button>
|
|
|
|
|
</Space>
|
2026-02-26 01:32:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-27 13:58:00 +00:00
|
|
|
<List
|
|
|
|
|
v-if="filteredRoles.length > 0"
|
|
|
|
|
:data-source="filteredRoles"
|
|
|
|
|
:bordered="false"
|
|
|
|
|
>
|
2026-02-26 01:32:04 +00:00
|
|
|
<template #renderItem="{ item }">
|
|
|
|
|
<List.Item class="Role-item">
|
|
|
|
|
<List.Item.Meta
|
|
|
|
|
:title="item.name"
|
|
|
|
|
:description="item.description || 'No description'"
|
|
|
|
|
/>
|
|
|
|
|
<Space>
|
|
|
|
|
<Tag>{{ item.member_count }} members</Tag>
|
|
|
|
|
<Button
|
|
|
|
|
danger
|
|
|
|
|
size="small"
|
|
|
|
|
:loading="deletingRoleUuid === item.uuid"
|
|
|
|
|
@click="deleteRole(item)"
|
|
|
|
|
>
|
|
|
|
|
Delete
|
|
|
|
|
</Button>
|
|
|
|
|
</Space>
|
|
|
|
|
</List.Item>
|
|
|
|
|
</template>
|
|
|
|
|
</List>
|
|
|
|
|
<Typography.Paragraph v-else type="secondary">
|
2026-02-27 13:58:00 +00:00
|
|
|
{{ roleEmptyMessage }}
|
2026-02-26 01:32:04 +00:00
|
|
|
</Typography.Paragraph>
|
|
|
|
|
</div>
|
|
|
|
|
</Tabs.TabPane>
|
|
|
|
|
</Tabs>
|
|
|
|
|
</Card>
|
|
|
|
|
</Spin>
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
v-model:open="roleModalVisible"
|
|
|
|
|
title="Create Role"
|
|
|
|
|
ok-text="Create"
|
|
|
|
|
cancel-text="Cancel"
|
|
|
|
|
:ok-button-props="{ loading: creatingRole }"
|
|
|
|
|
@ok="createRole"
|
|
|
|
|
@cancel="resetRoleForm"
|
|
|
|
|
>
|
|
|
|
|
<div style="display: flex; flex-direction: column; gap: 0.75rem">
|
|
|
|
|
<Input
|
|
|
|
|
v-model:value="createRoleForm.name"
|
|
|
|
|
placeholder="Role name"
|
|
|
|
|
:maxlength="100"
|
|
|
|
|
@pressEnter="createRole"
|
|
|
|
|
/>
|
|
|
|
|
<Input.TextArea
|
|
|
|
|
v-model:value="createRoleForm.description"
|
|
|
|
|
placeholder="Role description"
|
|
|
|
|
:rows="4"
|
|
|
|
|
:maxlength="1000"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
v-model:open="inviteModalVisible"
|
|
|
|
|
title="Invite Created"
|
|
|
|
|
@ok="inviteModalVisible = false"
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<Typography.Paragraph>
|
|
|
|
|
Share this URL with people you want to invite:
|
|
|
|
|
</Typography.Paragraph>
|
|
|
|
|
<Input
|
|
|
|
|
:value="newInviteUrl"
|
|
|
|
|
readonly
|
|
|
|
|
@click="copyInviteUrl"
|
|
|
|
|
style="cursor: pointer"
|
|
|
|
|
/>
|
|
|
|
|
<Button type="primary" block style="margin-top: 1rem" @click="copyInviteUrl">
|
|
|
|
|
Copy to Clipboard
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</Modal>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.page {
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section {
|
|
|
|
|
margin: 2rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.white-tag {
|
|
|
|
|
background-color: #ffffff !important;
|
|
|
|
|
color: #000000 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.ant-typography),
|
|
|
|
|
:deep(.ant-typography p),
|
|
|
|
|
:deep(.ant-typography span),
|
|
|
|
|
:deep(.ant-typography h4),
|
|
|
|
|
:deep(.ant-list-item),
|
|
|
|
|
:deep(.ant-list-item-meta-title),
|
|
|
|
|
:deep(.ant-list-item-meta-description),
|
|
|
|
|
:deep(.ant-tabs-tab),
|
|
|
|
|
:deep(.ant-input-number),
|
|
|
|
|
:deep(.ant-input-number-input) {
|
2026-03-08 13:19:17 +00:00
|
|
|
color: #1f2937 !important;
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.ant-typography-secondary) {
|
2026-03-08 13:19:17 +00:00
|
|
|
color: #6b7280 !important;
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.ant-input-number) {
|
2026-03-08 13:19:17 +00:00
|
|
|
background: #ffffff;
|
|
|
|
|
border-color: #d0d8e2;
|
2026-02-26 01:32:04 +00:00
|
|
|
}
|
2026-02-27 13:58:00 +00:00
|
|
|
|
|
|
|
|
:deep(.search-input) {
|
2026-03-08 13:19:17 +00:00
|
|
|
background: #ffffff !important;
|
|
|
|
|
border-color: #d0d8e2 !important;
|
|
|
|
|
color: #1f2937 !important;
|
2026-02-27 13:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.search-input::placeholder) {
|
2026-03-08 13:19:17 +00:00
|
|
|
color: #6b7280 !important;
|
2026-02-27 13:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.search-input::selection) {
|
2026-03-08 13:19:17 +00:00
|
|
|
background: #dbeafe !important;
|
|
|
|
|
color: #1f2937 !important;
|
2026-02-27 13:58:00 +00:00
|
|
|
}
|
2026-02-26 01:32:04 +00:00
|
|
|
</style>
|