mirror of
https://github.com/waynesutton/markdown-site.git
synced 2026-01-12 04:09:14 +00:00
Updated:
- content/blog/raw-markdown-and-copy-improvements.md
- Changed title from 'v1.7 and v1.8' to 'v1.7 to v1.10'
- Added Fork configuration section (v1.10.0) with 9-file table
- Added Scroll-to-top section (v1.9.0) with configuration options
- Updated summary to include all features from v1.7 to v1.10
- Fixed image path to /images/v17.png
- Updated sync command guidance for dev vs prod
- TASK.md
- Added new To Do items for future features
- Removed duplicate Future Enhancements section
- content/pages/docs.md
- Added Mobile menu section
- Added Copy Page dropdown table with all options
- Added Markdown tables section
- content/pages/about.md
- Updated Features list with new v1.8.0 features
- content/blog/setup-guide.md
- Added image field to pages schema
- Updated Project structure with new directories
- Added /raw/{slug}.md to API endpoints
- Added Mobile Navigation and Copy Page Dropdown sections
- Added featured image documentation with ordering details
Documentation now covers all features from v1.7.0 through v1.10.0.
91 lines
2.8 KiB
TypeScript
91 lines
2.8 KiB
TypeScript
import { defineSchema, defineTable } from "convex/server";
|
|
import { v } from "convex/values";
|
|
|
|
export default defineSchema({
|
|
// Blog posts table
|
|
posts: defineTable({
|
|
slug: v.string(),
|
|
title: v.string(),
|
|
description: v.string(),
|
|
content: v.string(),
|
|
date: v.string(),
|
|
published: v.boolean(),
|
|
tags: v.array(v.string()),
|
|
readTime: v.optional(v.string()),
|
|
image: v.optional(v.string()), // Header/OG image URL
|
|
excerpt: v.optional(v.string()), // Short excerpt for card view
|
|
featured: v.optional(v.boolean()), // Show in featured section
|
|
featuredOrder: v.optional(v.number()), // Order in featured section (lower = first)
|
|
lastSyncedAt: v.number(),
|
|
})
|
|
.index("by_slug", ["slug"])
|
|
.index("by_date", ["date"])
|
|
.index("by_published", ["published"])
|
|
.index("by_featured", ["featured"])
|
|
.searchIndex("search_content", {
|
|
searchField: "content",
|
|
filterFields: ["published"],
|
|
})
|
|
.searchIndex("search_title", {
|
|
searchField: "title",
|
|
filterFields: ["published"],
|
|
}),
|
|
|
|
// Static pages (about, projects, contact, etc.)
|
|
pages: defineTable({
|
|
slug: v.string(),
|
|
title: v.string(),
|
|
content: v.string(),
|
|
published: v.boolean(),
|
|
order: v.optional(v.number()), // Display order in nav
|
|
excerpt: v.optional(v.string()), // Short excerpt for card view
|
|
image: v.optional(v.string()), // Thumbnail/OG image URL for featured cards
|
|
featured: v.optional(v.boolean()), // Show in featured section
|
|
featuredOrder: v.optional(v.number()), // Order in featured section (lower = first)
|
|
lastSyncedAt: v.number(),
|
|
})
|
|
.index("by_slug", ["slug"])
|
|
.index("by_published", ["published"])
|
|
.index("by_featured", ["featured"])
|
|
.searchIndex("search_content", {
|
|
searchField: "content",
|
|
filterFields: ["published"],
|
|
})
|
|
.searchIndex("search_title", {
|
|
searchField: "title",
|
|
filterFields: ["published"],
|
|
}),
|
|
|
|
// View counts for analytics
|
|
viewCounts: defineTable({
|
|
slug: v.string(),
|
|
count: v.number(),
|
|
}).index("by_slug", ["slug"]),
|
|
|
|
// Site configuration (about content, links, etc.)
|
|
siteConfig: defineTable({
|
|
key: v.string(),
|
|
value: v.any(),
|
|
}).index("by_key", ["key"]),
|
|
|
|
// Page view events for analytics (event records pattern)
|
|
pageViews: defineTable({
|
|
path: v.string(),
|
|
pageType: v.string(), // "blog" | "page" | "home" | "stats"
|
|
sessionId: v.string(),
|
|
timestamp: v.number(),
|
|
})
|
|
.index("by_path", ["path"])
|
|
.index("by_timestamp", ["timestamp"])
|
|
.index("by_session_path", ["sessionId", "path"]),
|
|
|
|
// Active sessions for real-time visitor tracking
|
|
activeSessions: defineTable({
|
|
sessionId: v.string(),
|
|
currentPath: v.string(),
|
|
lastSeen: v.number(),
|
|
})
|
|
.index("by_sessionId", ["sessionId"])
|
|
.index("by_lastSeen", ["lastSeen"]),
|
|
});
|