File size: 3,769 Bytes
8ede856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | import { ref } from 'vue';
import axios from 'axios';
import type { Project } from '@/components/chat/ProjectList.vue';
export function useProjects() {
const projects = ref<Project[]>([]);
const selectedProjectId = ref<string | null>(null);
async function getProjects() {
try {
const res = await axios.get('/api/chatui_project/list');
if (res.data.status === 'ok') {
projects.value = res.data.data || [];
}
} catch (error) {
console.error('Failed to fetch projects:', error);
}
}
async function createProject(title: string, emoji?: string, description?: string) {
try {
const res = await axios.post('/api/chatui_project/create', {
title,
emoji: emoji || '📁',
description
});
if (res.data.status === 'ok') {
await getProjects();
return res.data.data;
}
} catch (error) {
console.error('Failed to create project:', error);
}
}
async function updateProject(projectId: string, title?: string, emoji?: string, description?: string) {
try {
const res = await axios.post('/api/chatui_project/update', {
project_id: projectId,
title,
emoji,
description
});
if (res.data.status === 'ok') {
await getProjects();
}
} catch (error) {
console.error('Failed to update project:', error);
}
}
async function deleteProject(projectId: string) {
try {
const res = await axios.get('/api/chatui_project/delete', {
params: { project_id: projectId }
});
if (res.data.status === 'ok') {
await getProjects();
if (selectedProjectId.value === projectId) {
selectedProjectId.value = null;
}
}
} catch (error) {
console.error('Failed to delete project:', error);
}
}
async function addSessionToProject(sessionId: string, projectId: string) {
try {
const res = await axios.post('/api/chatui_project/add_session', {
session_id: sessionId,
project_id: projectId
});
return res.data.status === 'ok';
} catch (error) {
console.error('Failed to add session to project:', error);
return false;
}
}
async function removeSessionFromProject(sessionId: string) {
try {
const res = await axios.post('/api/chatui_project/remove_session', {
session_id: sessionId
});
return res.data.status === 'ok';
} catch (error) {
console.error('Failed to remove session from project:', error);
return false;
}
}
async function getProjectSessions(projectId: string) {
try {
const res = await axios.get('/api/chatui_project/get_sessions', {
params: { project_id: projectId }
});
if (res.data.status === 'ok') {
return res.data.data || [];
}
return [];
} catch (error) {
console.error('Failed to fetch project sessions:', error);
return [];
}
}
return {
projects,
selectedProjectId,
getProjects,
createProject,
updateProject,
deleteProject,
addSessionToProject,
removeSessionFromProject,
getProjectSessions
};
}
|