managarten/memoro/apps/mobile/features/memos/constants.ts
Till-JS e7f5f942f3 chore: initial commit - consolidate 4 projects into monorepo
Projects included:
- maerchenzauber (NestJS backend + Expo mobile + SvelteKit web + Astro landing)
- manacore (Expo mobile + SvelteKit web + Astro landing)
- manadeck (NestJS backend + Expo mobile + SvelteKit web)
- memoro (Expo mobile + SvelteKit web + Astro landing)

This commit preserves the current state before monorepo restructuring.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:38:24 +01:00

41 lines
1 KiB
TypeScript

/**
* Constants for the memos feature
*/
// Default memo titles
export const DEFAULT_MEMO_TITLES = {
UNNAMED: 'Unbenanntes Memo',
NEW_RECORDING: 'Neue Aufnahme',
};
// Database table names
export const DB_TABLES = {
TAGS: 'tags',
MEMO_TAGS: 'memo_tags',
MEMO_SPACES: 'memo_spaces',
SPACES: 'spaces',
};
// RPC function names
export const RPC_FUNCTIONS = {
ADD_TAG_TO_MEMO: 'add_tag_to_memo',
};
// Processing status text
export const PROCESSING_STATUS_TEXT = {
UPLOADING: 'Memo uploading...',
TRANSCRIBING: 'Memo transcribing...',
GENERATING_HEADLINE: 'Headline generating...',
ERROR: 'Error processing memo',
};
// Context menu actions
export const CONTEXT_MENU_ACTIONS = [
{ title: 'Teilen', systemIcon: 'square.and.arrow.up' },
{ title: 'Kopieren', systemIcon: 'doc.on.doc' },
{ title: 'Transkript kopieren', systemIcon: 'text.bubble' },
{ title: 'An den Anfang pinnen', systemIcon: 'pin' },
{ title: 'Löschen', systemIcon: 'trash', destructive: true },
];
// Date formatting moved to ~/utils/sharedConstants.ts