mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
feat: enhance UI components and add accordion functionality
- Updated DraggableWindow.vue to improve shadow effects. - Refactored AboutWindow.vue for better structure and readability. - Added chatbot functionality in chatbot.vue with cookie management. - Improved navigation component for better code clarity. - Created a new chat history table in the database schema. - Modified error handling in error.vue to display error messages correctly. - Integrated ChatbotWindow into the desktop application layout. - Implemented accordion component in home.vue for Q/A section. - Enhanced API for chat functionality with improved error handling. - Removed unused routes for cleaner codebase. - Added custom animations for accordion components in tailwind.config.js. - Developed accordion UI components (Accordion, AccordionContent, AccordionItem, AccordionTrigger) for better user interaction.
This commit is contained in:
parent
f89e6aaa48
commit
5bf857f3cd
21 changed files with 402 additions and 182 deletions
|
@ -1 +0,0 @@
|
|||
export default defineEventHandler(async () => {});
|
|
@ -1,5 +0,0 @@
|
|||
export default defineEventHandler(async (event) => {
|
||||
const query = getQuery(event);
|
||||
const name = query.name;
|
||||
return name;
|
||||
});
|
|
@ -1,24 +0,0 @@
|
|||
import sql from "~/server/components/postgres";
|
||||
export default defineEventHandler(async (event) => {
|
||||
const slug = getRouterParam(event, "slug");
|
||||
if (!slug || typeof slug !== "string") {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
message: "Invalid slug parameter",
|
||||
});
|
||||
}
|
||||
const cleanSlug = slug.replace(/[^a-zA-Z0-9-_]/g, "");
|
||||
try {
|
||||
const result = await sql`
|
||||
select * from go_links
|
||||
where slug = ${cleanSlug}
|
||||
`;
|
||||
return result.rows[0] || null;
|
||||
} catch (error) {
|
||||
console.error("Database error:", error);
|
||||
throw createError({
|
||||
statusCode: 500,
|
||||
message: "Internal server error",
|
||||
});
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue