From 2abccbc87db356c93010237402a7bd32ed3c0f93 Mon Sep 17 00:00:00 2001 From: Aleix Soler Date: Wed, 18 Mar 2026 15:07:41 +0100 Subject: [PATCH] chore: regenerate predefined templates --- constants/predefinedTemplates.ts | 139 ++++++++++++++++++++----------- 1 file changed, 89 insertions(+), 50 deletions(-) diff --git a/constants/predefinedTemplates.ts b/constants/predefinedTemplates.ts index a1ca1eb..1cf7acb 100644 --- a/constants/predefinedTemplates.ts +++ b/constants/predefinedTemplates.ts @@ -1,9 +1,58 @@ import { StatusTemplate } from "types/pluginSettings"; /** - * Predefined status templates + * Predefined status templates generated from the templates directory */ export const PREDEFINED_TEMPLATES: StatusTemplate[] = [ + { + id: "academic", + name: "Academic research", + description: "Status workflow for academic research and writing", + statuses: [ + { + name: "research", + icon: "πŸ”", + color: "#2196F3", + templateId: "academic", + }, + { + name: "outline", + icon: "πŸ“‘", + color: "#9E9E9E", + templateId: "academic", + }, + { + name: "draft", + icon: "✏️", + color: "#FFC107", + templateId: "academic", + }, + { + name: "review", + icon: "πŸ”¬", + color: "#9C27B0", + templateId: "academic", + }, + { + name: "revision", + icon: "πŸ“", + color: "#FF5722", + templateId: "academic", + }, + { + name: "final", + icon: "πŸ“š", + color: "#4CAF50", + templateId: "academic", + }, + { + name: "published", + icon: "πŸŽ“", + color: "#795548", + templateId: "academic", + }, + ], + }, { id: "colorful", name: "Colorful workflow", @@ -66,6 +115,45 @@ export const PREDEFINED_TEMPLATES: StatusTemplate[] = [ }, ], }, + { + id: "creative-writing", + name: "Creative Writing", + description: "Workflow for novelists and creative writers", + author: "Obsidian Community", + github: "https://github.com/obsidian-community", + statuses: [ + { + name: "idea", + icon: "🧠", + color: "#FFD700", + templateId: "creative-writing", + }, + { + name: "outline", + icon: "πŸ—ΊοΈ", + color: "#87CEEB", + templateId: "creative-writing", + }, + { + name: "first-draft", + icon: "✍️", + color: "#FFA07A", + templateId: "creative-writing", + }, + { + name: "revision", + icon: "πŸ”", + color: "#DA70D6", + templateId: "creative-writing", + }, + { + name: "final-polish", + icon: "✨", + color: "#32CD32", + templateId: "creative-writing", + }, + ], + }, { id: "minimal", name: "Minimal workflow", @@ -97,55 +185,6 @@ export const PREDEFINED_TEMPLATES: StatusTemplate[] = [ }, ], }, - { - id: "academic", - name: "Academic research", - description: "Status workflow for academic research and writing", - statuses: [ - { - name: "research", - icon: "πŸ”", - color: "#2196F3", - templateId: "academic", - }, - { - name: "outline", - icon: "πŸ“‘", - color: "#9E9E9E", - templateId: "academic", - }, - { - name: "draft", - icon: "✏️", - color: "#FFC107", - templateId: "academic", - }, - { - name: "review", - icon: "πŸ”¬", - color: "#9C27B0", - templateId: "academic", - }, - { - name: "revision", - icon: "πŸ“", - color: "#FF5722", - templateId: "academic", - }, - { - name: "final", - icon: "πŸ“š", - color: "#4CAF50", - templateId: "academic", - }, - { - name: "published", - icon: "πŸŽ“", - color: "#795548", - templateId: "academic", - }, - ], - }, { id: "project", name: "Project management",