File size: 6,395 Bytes
57a889c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import type { SystemNotice } from './types.js';
import { registerPredicate } from './conditions.js';
import { db } from '../db/database.js';

registerPredicate('whitespace-collision-detected', () => {
  const row = db.prepare("SELECT value FROM app_settings WHERE key = 'whitespace_migration_collision'").get() as { value: string } | undefined;
  return row?.value === 'true';
});

/**
 * SYSTEM NOTICE REGISTRY
 *
 * Rules for authoring:
 * - NEVER remove or renumber entries β€” dismissal tracking is keyed by `id`.
 * - `id` must be globally unique and stable across deployments.
 * - Title: ≀40 chars, sentence case, no trailing punctuation.
 * - Body: markdown (modal) or plain text (banner/toast). ≀400/140/80 chars.
 * - CTA label: ≀20 chars, a verb.
 * - Never hardcode version numbers/dates in translated strings β€” use bodyParams.
 * - See plans/system-notices/00-overview.md for full authoring guidelines.
 */
export const SYSTEM_NOTICES: SystemNotice[] = [
  // ── 3.0.0 upgrade notices (shown as a multipage modal to pre-3.0 users) ─────

  {
    // Page 1 β€” breaking change first (warn β†’ sorts before the two info notices)
    id: 'v3-photos',
    display: 'modal',
    severity: 'warn',
    icon: 'ImageOff',
    titleKey: 'system_notice.v3_photos.title',
    bodyKey:  'system_notice.v3_photos.body',
    dismissible: true,
    conditions: [{ kind: 'existingUserBeforeVersion', version: '3.0.0' }],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 90,
    minVersion: '3.0.0',
    maxVersion: '4.0.0',
  },

  {
    // Page 2 β€” flagship feature (only when Journey addon is enabled)
    id: 'v3-journey',
    display: 'modal',
    severity: 'info',
    icon: 'BookOpen',
    titleKey: 'system_notice.v3_journey.title',
    bodyKey:  'system_notice.v3_journey.body',
    highlights: [
      { labelKey: 'system_notice.v3_journey.highlight_timeline', iconName: 'CalendarDays' },
      { labelKey: 'system_notice.v3_journey.highlight_photos',   iconName: 'Images' },
      { labelKey: 'system_notice.v3_journey.highlight_share',    iconName: 'Globe' },
      { labelKey: 'system_notice.v3_journey.highlight_export',   iconName: 'FileText' },
    ],
    cta: {
      kind: 'nav',
      labelKey: 'system_notice.v3_journey.cta_label',
      href: '/journey',
    },
    dismissible: true,
    conditions: [
      { kind: 'existingUserBeforeVersion', version: '3.0.0' },
      { kind: 'addonEnabled', addonId: 'journey' },
    ],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 80,
    minVersion: '3.0.0',
    maxVersion: '4.0.0',
  },

  {
    // Page 3 β€” MCP OAuth 2.1 upgrade (only when MCP addon is enabled)
    id: 'v3-mcp',
    display: 'modal',
    severity: 'warn',
    icon: 'Bot',
    titleKey: 'system_notice.v3_mcp.title',
    bodyKey:  'system_notice.v3_mcp.body',
    highlights: [
      { labelKey: 'system_notice.v3_mcp.highlight_oauth',      iconName: 'KeyRound' },
      { labelKey: 'system_notice.v3_mcp.highlight_scopes',     iconName: 'ShieldCheck' },
      { labelKey: 'system_notice.v3_mcp.highlight_deprecated', iconName: 'AlertTriangle' },
      { labelKey: 'system_notice.v3_mcp.highlight_tools',      iconName: 'Wrench' },
    ],
    dismissible: true,
    conditions: [
      { kind: 'existingUserBeforeVersion', version: '3.0.0' },
      { kind: 'addonEnabled', addonId: 'mcp' },
    ],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 75,
    minVersion: '3.0.0',
    maxVersion: '4.0.0',
  },

  {
    // Page 4 β€” other highlights
    id: 'v3-features',
    display: 'modal',
    severity: 'info',
    icon: 'Sparkles',
    titleKey: 'system_notice.v3_features.title',
    bodyKey:  'system_notice.v3_features.body',
    highlights: [
      { labelKey: 'system_notice.v3_features.highlight_dashboard', iconName: 'LayoutDashboard' },
      { labelKey: 'system_notice.v3_features.highlight_offline',   iconName: 'WifiOff' },
      { labelKey: 'system_notice.v3_features.highlight_search',    iconName: 'Search' },
      { labelKey: 'system_notice.v3_features.highlight_import',    iconName: 'FileInput' },
    ],
    dismissible: true,
    conditions: [{ kind: 'existingUserBeforeVersion', version: '3.0.0' }],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 70,
    minVersion: '3.0.0',
    maxVersion: '4.0.0',
  },

  {
    // Page 1 β€” personal thank-you from the creator (shown first)
    id: 'v3-thankyou',
    display: 'modal',
    severity: 'info',
    icon: 'Heart',
    titleKey: 'system_notice.v3_thankyou.title',
    bodyKey:  'system_notice.v3_thankyou.body',
    dismissible: true,
    conditions: [{ kind: 'existingUserBeforeVersion', version: '3.0.0' }],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 95,
    minVersion: '3.0.0',
    maxVersion: '4.0.0',
  },

  // ── 3.0.14 admin notice β€” whitespace migration collision ───────────────────

  {
    id: 'v3014-whitespace-collision',
    display: 'banner',
    severity: 'warn',
    icon: 'AlertTriangle',
    titleKey: 'system_notice.v3014_whitespace_collision.title',
    bodyKey:  'system_notice.v3014_whitespace_collision.body',
    dismissible: true,
    conditions: [
      { kind: 'existingUserBeforeVersion', version: '3.0.14' },
      { kind: 'role', roles: ['admin'] },
      { kind: 'custom', id: 'whitespace-collision-detected' },
    ],
    publishedAt: '2026-05-03T00:00:00Z',
    priority: 85,
    minVersion: '3.0.14',
  },

  // ── Onboarding ─────────────────────────────────────────────────────────────

  {
    id: 'welcome-v1',
    display: 'modal',
    severity: 'info',
    icon: 'Sparkles',
    titleKey: 'system_notice.welcome_v1.title',
    bodyKey: 'system_notice.welcome_v1.body',
    highlights: [
      { labelKey: 'system_notice.welcome_v1.highlight_plan',    iconName: 'Map' },
      { labelKey: 'system_notice.welcome_v1.highlight_share',   iconName: 'Users' },
      { labelKey: 'system_notice.welcome_v1.highlight_offline', iconName: 'WifiOff' },
    ],
    cta: {
      kind: 'action',
      labelKey: 'system_notice.welcome_v1.cta_label',
      actionId: 'open:trip-create',
    },
    dismissible: true,
    conditions: [{ kind: 'firstLogin' }],
    publishedAt: '2026-04-16T00:00:00Z',
    priority: 100,
  },
];