Modify the `FeaturedSection` component to include auto-rotation functionality, displaying up to 6 articles in a carousel. Update the `getFeaturedArticles` database query to retrieve the latest 6 articles instead of only those marked as featured. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 413891e8-d784-4bea-b9f5-91a5a68316b4 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: e6e519fc-41a3-463e-88ea-3bde9e02f7f4 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/413891e8-d784-4bea-b9f5-91a5a68316b4/kmpcO4B Replit-Helium-Checkpoint-Created: true
65 lines
2.4 KiB
TypeScript
65 lines
2.4 KiB
TypeScript
import { type Article, type InsertArticle, articles } from "@shared/schema";
|
|
import { db } from "./db";
|
|
import { eq, desc, sql } from "drizzle-orm";
|
|
|
|
export interface IStorage {
|
|
getArticles(): Promise<Article[]>;
|
|
getArticleBySlug(slug: string): Promise<Article | undefined>;
|
|
getArticleById(id: number): Promise<Article | undefined>;
|
|
getFeaturedArticles(): Promise<Article[]>;
|
|
getPopularArticles(limit: number): Promise<Article[]>;
|
|
getArticlesByCategory(category: string): Promise<Article[]>;
|
|
createArticle(article: InsertArticle): Promise<Article>;
|
|
updateArticle(id: number, article: Partial<InsertArticle>): Promise<Article | undefined>;
|
|
incrementViews(id: number): Promise<void>;
|
|
deleteArticle(id: number): Promise<void>;
|
|
}
|
|
|
|
export class DatabaseStorage implements IStorage {
|
|
async getArticles(): Promise<Article[]> {
|
|
return db.select().from(articles).orderBy(desc(articles.publishedAt));
|
|
}
|
|
|
|
async getArticleBySlug(slug: string): Promise<Article | undefined> {
|
|
const [article] = await db.select().from(articles).where(eq(articles.slug, slug));
|
|
return article;
|
|
}
|
|
|
|
async getArticleById(id: number): Promise<Article | undefined> {
|
|
const [article] = await db.select().from(articles).where(eq(articles.id, id));
|
|
return article;
|
|
}
|
|
|
|
async getFeaturedArticles(): Promise<Article[]> {
|
|
return db.select().from(articles).orderBy(desc(articles.publishedAt)).limit(6);
|
|
}
|
|
|
|
async getPopularArticles(limit: number): Promise<Article[]> {
|
|
return db.select().from(articles).orderBy(desc(articles.views)).limit(limit);
|
|
}
|
|
|
|
async getArticlesByCategory(category: string): Promise<Article[]> {
|
|
return db.select().from(articles).where(eq(articles.category, category)).orderBy(desc(articles.publishedAt));
|
|
}
|
|
|
|
async createArticle(article: InsertArticle): Promise<Article> {
|
|
const [created] = await db.insert(articles).values(article).returning();
|
|
return created;
|
|
}
|
|
|
|
async updateArticle(id: number, article: Partial<InsertArticle>): Promise<Article | undefined> {
|
|
const [updated] = await db.update(articles).set(article).where(eq(articles.id, id)).returning();
|
|
return updated;
|
|
}
|
|
|
|
async incrementViews(id: number): Promise<void> {
|
|
await db.update(articles).set({ views: sql`${articles.views} + 1` }).where(eq(articles.id, id));
|
|
}
|
|
|
|
async deleteArticle(id: number): Promise<void> {
|
|
await db.delete(articles).where(eq(articles.id, id));
|
|
}
|
|
}
|
|
|
|
export const storage = new DatabaseStorage();
|