tercul-frontend/server/routes/author.ts
Damir Mukimov 4a23f496fa
Major frontend development updates
- Enhanced annotation system with improved inline editing
- Updated author components with new card and header designs
- Improved reading view with enhanced line numbering and controls
- Added new blog management features and tag management
- Updated UI components with improved accessibility and styling
- Enhanced search functionality with better filtering
- Added new dashboard features and activity feeds
- Improved translation selector and work comparison tools
- Updated GraphQL integration and API hooks
- Enhanced responsive design and mobile experience
2025-11-27 03:44:09 +01:00

62 lines
1.8 KiB
TypeScript

import { Router } from "express";
import type { Request } from "express";
import { graphqlClient } from "../lib/graphqlClient";
import { respondWithError } from "../lib/error";
import {
GetAuthorDocument,
AuthorsDocument,
CreateAuthorDocument,
} from "../../shared/generated/graphql";
const router = Router();
// GET /api/authors
interface GqlRequest extends Request {
gql?: typeof graphqlClient;
}
router.get("/", async (req: GqlRequest, res) => {
try {
const variables = {
limit: req.query.limit ? Number(req.query.limit) : undefined,
offset: req.query.offset ? Number(req.query.offset) : undefined,
search: req.query.search as string | undefined,
countryId: req.query.countryId as string | undefined,
};
const client = req.gql || graphqlClient;
const { authors } = await client.request(AuthorsDocument, variables);
res.json(authors);
} catch (error) {
respondWithError(res, error, "Failed to fetch authors");
}
});
// GET /api/authors/:id (use id instead of slug to align with GraphQL schema)
router.get("/:id", async (req: GqlRequest, res) => {
try {
const client = req.gql || graphqlClient;
const { author } = await client.request(GetAuthorDocument, {
id: req.params.id,
});
if (!author) return res.status(404).json({ message: "Author not found" });
res.json(author);
} catch (error) {
respondWithError(res, error, "Failed to fetch author");
}
});
// POST /api/authors
router.post("/", async (req: GqlRequest, res) => {
try {
const client = req.gql || graphqlClient;
const { createAuthor } = await client.request(CreateAuthorDocument, {
input: req.body,
});
res.status(201).json(createAuthor);
} catch (error) {
respondWithError(res, error, "Failed to create author");
}
});
export default router;