things-api 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/cli/commands/area.d.ts +9 -0
- package/dist/cli/commands/area.js +62 -5
- package/dist/cli/commands/area.js.map +1 -1
- package/dist/cli/commands/project.d.ts +5 -0
- package/dist/cli/commands/project.js +34 -5
- package/dist/cli/commands/project.js.map +1 -1
- package/dist/cli/commands/reads.d.ts +6 -125
- package/dist/cli/commands/reads.js +337 -611
- package/dist/cli/commands/reads.js.map +1 -1
- package/dist/cli/commands/show.d.ts +1 -1
- package/dist/cli/commands/show.js +145 -17
- package/dist/cli/commands/show.js.map +1 -1
- package/dist/cli/commands/snapshot.js +1 -1
- package/dist/cli/commands/snapshot.js.map +1 -1
- package/dist/cli/commands/todo.js +14 -3
- package/dist/cli/commands/todo.js.map +1 -1
- package/dist/cli/did-you-mean.d.ts +29 -0
- package/dist/cli/did-you-mean.js +53 -0
- package/dist/cli/did-you-mean.js.map +1 -0
- package/dist/cli/glyphs.d.ts +28 -5
- package/dist/cli/glyphs.js +123 -10
- package/dist/cli/glyphs.js.map +1 -1
- package/dist/cli/main.js +9 -1
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/period.d.ts +32 -0
- package/dist/cli/period.js +129 -0
- package/dist/cli/period.js.map +1 -0
- package/dist/cli/read-driver.d.ts +76 -0
- package/dist/cli/read-driver.js +181 -0
- package/dist/cli/read-driver.js.map +1 -0
- package/dist/cli/render.d.ts +182 -0
- package/dist/cli/render.js +585 -0
- package/dist/cli/render.js.map +1 -0
- package/dist/cli/resolve-invocation.d.ts +78 -0
- package/dist/cli/resolve-invocation.js +178 -0
- package/dist/cli/resolve-invocation.js.map +1 -0
- package/dist/cli/shell-quote.d.ts +9 -0
- package/dist/cli/shell-quote.js +12 -0
- package/dist/cli/shell-quote.js.map +1 -0
- package/dist/client.d.ts +13 -4
- package/dist/client.js +2 -1
- package/dist/client.js.map +1 -1
- package/dist/contracts.d.ts +66 -1
- package/dist/contracts.js +1 -1
- package/dist/contracts.js.map +1 -1
- package/dist/mcp/server.js +208 -44
- package/dist/mcp/server.js.map +1 -1
- package/dist/model/entities.d.ts +9 -0
- package/dist/model/entities.js.map +1 -1
- package/dist/model/mappers.js +13 -1
- package/dist/model/mappers.js.map +1 -1
- package/dist/model/occurrences.d.ts +6 -1
- package/dist/model/occurrences.js +9 -5
- package/dist/model/occurrences.js.map +1 -1
- package/dist/model/recurrence.d.ts +17 -8
- package/dist/model/recurrence.js.map +1 -1
- package/dist/read/caps.d.ts +14 -0
- package/dist/read/caps.js +21 -0
- package/dist/read/caps.js.map +1 -0
- package/dist/read/log-boundary.d.ts +9 -4
- package/dist/read/log-boundary.js.map +1 -1
- package/dist/read/pagination.d.ts +104 -0
- package/dist/read/pagination.js +208 -0
- package/dist/read/pagination.js.map +1 -0
- package/dist/read/predicates.d.ts +31 -0
- package/dist/read/predicates.js +48 -0
- package/dist/read/predicates.js.map +1 -0
- package/dist/read/queries.d.ts +7 -2
- package/dist/read/queries.js +11 -7
- package/dist/read/queries.js.map +1 -1
- package/dist/read/search-rank.d.ts +36 -0
- package/dist/read/search-rank.js +31 -0
- package/dist/read/search-rank.js.map +1 -0
- package/dist/read/show-target.d.ts +13 -4
- package/dist/read/show-target.js +11 -2
- package/dist/read/show-target.js.map +1 -1
- package/dist/read/sidebar-order.d.ts +19 -0
- package/dist/read/sidebar-order.js +92 -0
- package/dist/read/sidebar-order.js.map +1 -0
- package/dist/read/views.d.ts +39 -5
- package/dist/read/views.js +142 -162
- package/dist/read/views.js.map +1 -1
- package/dist/surface-copy.d.ts +23 -0
- package/dist/surface-copy.js +23 -0
- package/dist/surface-copy.js.map +1 -1
- package/dist/write/capabilities.js +1 -0
- package/dist/write/capabilities.js.map +1 -1
- package/dist/write/undo.js +1 -0
- package/dist/write/undo.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The pure human-rendering family for the read views: the glyph-language item
|
|
3
|
+
* formatter, the flat and grouped list renderers, the sidebar/upcoming/logbook
|
|
4
|
+
* layouts, the anytime/someday previews, and the legend. No commander and no
|
|
5
|
+
* database access — every function maps already-fetched data to output lines,
|
|
6
|
+
* so the whole module is unit-testable in isolation. UUIDs are always shown
|
|
7
|
+
* (agents and humans both need stable references); colors engage on a TTY only
|
|
8
|
+
* (../cli/style.ts).
|
|
9
|
+
*/
|
|
10
|
+
import { isTodayMember, } from "../read/views.js";
|
|
11
|
+
import { localToday } from "../model/dates.js";
|
|
12
|
+
import { templateStatus } from "../model/recurrence.js";
|
|
13
|
+
import { blue, bold, dim, strike, underline } from "./style.js";
|
|
14
|
+
import { areaMark, CHECKLIST_MARK, countChip, dateChip, deadlineToken, eveningMoon, LEGEND, LEGEND_GROUPS, loggedDate, NOTES_MARK, projectCircle, REMINDER_MARK, todayStar, todoBox, } from "./glyphs.js";
|
|
15
|
+
import { partitionSomedaySection, splitSectionBlocks, } from "../read/pagination.js";
|
|
16
|
+
import { FULL_MONTHS, upcomingBucket } from "./period.js";
|
|
17
|
+
/**
|
|
18
|
+
* A view's TTY-only title preamble: bold view name + its dim Things deep link,
|
|
19
|
+
* then a blank line — e.g. `Anytime (things:///show?id=anytime)`. The id is the
|
|
20
|
+
* app's documented show id (identical to the command name for these views).
|
|
21
|
+
* Suppressed off a TTY so `things inbox | grep …` stays clean, and never part
|
|
22
|
+
* of `--json`; the caller gates on both.
|
|
23
|
+
*/
|
|
24
|
+
export function viewHeaderLines(view) {
|
|
25
|
+
const title = view.charAt(0).toUpperCase() + view.slice(1);
|
|
26
|
+
return [`${bold(title)} ${dim(`(things:///show?id=${view})`)}`, ""];
|
|
27
|
+
}
|
|
28
|
+
const ANSI = new RegExp(`${String.fromCharCode(27)}\\[[0-9;]*m`, "g");
|
|
29
|
+
export const stripAnsi = (s) => s.replace(ANSI, "");
|
|
30
|
+
const visibleWidth = (s) => [...stripAnsi(s)].length;
|
|
31
|
+
/** Left-column width for the legend's glyph samples (short marks align; long textual samples overflow). */
|
|
32
|
+
const LEGEND_GUTTER = 10;
|
|
33
|
+
/**
|
|
34
|
+
* The `things legend` layout: the visual language grouped into sections
|
|
35
|
+
* (`── To-dos ──`, …), each row the glyph as it actually renders (color on a
|
|
36
|
+
* TTY) followed by its meaning. Content comes straight from glyphs.ts's LEGEND
|
|
37
|
+
* table, so it can never drift from what the list renderers emit.
|
|
38
|
+
*/
|
|
39
|
+
export function renderLegend() {
|
|
40
|
+
const lines = [];
|
|
41
|
+
for (const group of LEGEND_GROUPS) {
|
|
42
|
+
const entries = LEGEND.filter((e) => e.group === group);
|
|
43
|
+
if (entries.length === 0)
|
|
44
|
+
continue;
|
|
45
|
+
if (lines.length > 0)
|
|
46
|
+
lines.push("");
|
|
47
|
+
lines.push(bold(`── ${group} ──`));
|
|
48
|
+
for (const e of entries) {
|
|
49
|
+
const pad = " ".repeat(Math.max(0, LEGEND_GUTTER - visibleWidth(e.glyph)));
|
|
50
|
+
lines.push(`${e.glyph}${pad} ${e.meaning}`);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return lines;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* One item line:
|
|
57
|
+
* `<uuid-prefix> <box> [★|⏾] [logged-date] [‹chip›] <title> [‹n›] [⍾] [≡] [≔] (container) #tags [⚑ deadline]`.
|
|
58
|
+
* Repeating templates seat ↻ INSIDE the box (`[↻]`/`(↻)`) rather than as a
|
|
59
|
+
* separate mark; open project rows render their circle and title blue.
|
|
60
|
+
* The box is the glyph-language state carrier (../glyphs.ts): `[ ]`-family
|
|
61
|
+
* for to-dos, `( )`-family for projects — state survives with color
|
|
62
|
+
* stripped. Completed titles dim; canceled titles dim+strike (the `[×]`
|
|
63
|
+
* mark keeps the state when strike/ANSI is unavailable). Human output shows
|
|
64
|
+
* a SHORTENED uuid prefix (every command accepts unique prefixes >= 6
|
|
65
|
+
* chars); `uuidWidth` is the display length from uuidDisplayWidth — never
|
|
66
|
+
* below 8 so a copied prefix stays unique across the whole database, not
|
|
67
|
+
* just the rendered list. Tags follow the title (`#`-prefixed, green — GUI
|
|
68
|
+
* color), after the count chip (projects), notes marker, and container.
|
|
69
|
+
* Heading-nested to-dos label their parent PROJECT (via headingProject),
|
|
70
|
+
* never the heading — GUI behavior. Colors engage on a TTY only
|
|
71
|
+
* (../style.ts); `--json` always carries full uuids.
|
|
72
|
+
*/
|
|
73
|
+
export function formatItem(item, uuidWidth = 0, opts = {}) {
|
|
74
|
+
const todayIso = localToday(opts.now);
|
|
75
|
+
const asTitle = opts.projectTitle === true && item.type === "project";
|
|
76
|
+
const box = item.type === "project" ? projectCircle(item) : todoBox(item);
|
|
77
|
+
const meta = [];
|
|
78
|
+
if (opts.mark != null)
|
|
79
|
+
meta.push(opts.mark);
|
|
80
|
+
// ↻ now lives INSIDE the box for templates (glyphs.ts) — no separate mark.
|
|
81
|
+
if (opts.statusWord !== undefined)
|
|
82
|
+
meta.push(dim(opts.statusWord));
|
|
83
|
+
if (item.status !== "open" && item.stopped !== null)
|
|
84
|
+
meta.push(loggedDate(item.stopped, todayIso));
|
|
85
|
+
if (opts.hideDateChip === true) {
|
|
86
|
+
// rows under a day header — the header carries the date
|
|
87
|
+
}
|
|
88
|
+
else if (item.status === "open" && item.startDate !== null && item.startDate > todayIso)
|
|
89
|
+
meta.push(dateChip(item.startDate, todayIso));
|
|
90
|
+
// Repeating templates chip their app-materialized next occurrence.
|
|
91
|
+
else if (item.repeating.isTemplate && item.repeating.nextOccurrence != null)
|
|
92
|
+
meta.push(dateChip(item.repeating.nextOccurrence, todayIso));
|
|
93
|
+
// List rows mute their tags (the GUI's gray pills); tags go green only on
|
|
94
|
+
// the opened resource (todo show / the project|area header row).
|
|
95
|
+
const tags = item.tags.length > 0 ? ` ${dim(`#${item.tags.map((t) => t.title).join(" #")}`)}` : "";
|
|
96
|
+
// Closed rows drop the deadline flag — a months-old red "n days ago" on a
|
|
97
|
+
// logged item is noise (the GUI doesn't flag logbook rows either). Raw
|
|
98
|
+
// template rows drop it via the sentinel guard: their deadline column
|
|
99
|
+
// carries app-internal 4001-01-01 sentinels (upcoming's synthesized
|
|
100
|
+
// occurrences carry REAL rule-derived deadlines and must keep the flag).
|
|
101
|
+
const rule = item.repeating.rule;
|
|
102
|
+
const deadline = item.status === "open" && item.deadline !== null && item.deadline < "4000"
|
|
103
|
+
? ` ${deadlineToken(item.deadline, todayIso)}`
|
|
104
|
+
: // The GUI's bare flag on no-date repeating templates: the rule WILL
|
|
105
|
+
// assign each occurrence a deadline (fixed rules always do; after-
|
|
106
|
+
// completion only with a start offset), date unknown until spawned.
|
|
107
|
+
item.repeating.isTemplate &&
|
|
108
|
+
rule !== undefined &&
|
|
109
|
+
(rule.type === "fixed" || rule.startOffsetDays < 0)
|
|
110
|
+
? ` ${bold(dim("⚑"))}`
|
|
111
|
+
: "";
|
|
112
|
+
const container = item.type === "to-do" ? (item.project ?? item.headingProject ?? null) : null;
|
|
113
|
+
const context = container !== null
|
|
114
|
+
? container.uuid === opts.suppressProject
|
|
115
|
+
? ""
|
|
116
|
+
: ` (${container.title})`
|
|
117
|
+
: item.area
|
|
118
|
+
? item.area.uuid === opts.suppressArea
|
|
119
|
+
? ""
|
|
120
|
+
: ` (${item.area.title})`
|
|
121
|
+
: "";
|
|
122
|
+
// width 0 (the default) means "no column" — show the full uuid untouched.
|
|
123
|
+
const shownUuid = uuidWidth > 0 ? uuidCol(item.uuid, uuidWidth) : item.uuid;
|
|
124
|
+
let title = item.title;
|
|
125
|
+
if (asTitle)
|
|
126
|
+
title = bold(underline(title));
|
|
127
|
+
else if (item.status === "canceled")
|
|
128
|
+
title = dim(strike(title));
|
|
129
|
+
else if (item.status === "completed")
|
|
130
|
+
title = dim(title);
|
|
131
|
+
// Open project rows render their title blue — GUI parity (list accent) and
|
|
132
|
+
// a color cue reinforcing the round bracket. To-dos stay default-colored.
|
|
133
|
+
else if (item.type === "project")
|
|
134
|
+
title = blue(title);
|
|
135
|
+
// GUI indicator order after the title: bell, document, checklist.
|
|
136
|
+
const tail = [
|
|
137
|
+
...(item.type === "project" ? [countChip(item)] : []),
|
|
138
|
+
...(item.reminder !== null ? [dim(REMINDER_MARK)] : []),
|
|
139
|
+
...(item.notes !== "" ? [dim(NOTES_MARK)] : []),
|
|
140
|
+
...(item.type === "to-do" && item.checklistItemsCount > 0 ? [dim(CHECKLIST_MARK)] : []),
|
|
141
|
+
];
|
|
142
|
+
return [
|
|
143
|
+
`${dim(shownUuid)} `,
|
|
144
|
+
box,
|
|
145
|
+
...meta,
|
|
146
|
+
`${title}${tail.length > 0 ? ` ${tail.join(" ")}` : ""}${tags}${context === "" ? "" : dim(context)}${deadline}`,
|
|
147
|
+
].join(" ");
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Row prefix in today-aware views: yellow ★ for Today members, cyan ⏾ for
|
|
151
|
+
* effective This-Evening members (raw evening assignment counts only while
|
|
152
|
+
* startDate is exactly today — the UI's daily expiry), null otherwise.
|
|
153
|
+
*/
|
|
154
|
+
export function todayMark(item, now) {
|
|
155
|
+
if (!isTodayMember(item, now))
|
|
156
|
+
return null;
|
|
157
|
+
const evening = item.todaySection === "evening" && item.startDate === localToday(now);
|
|
158
|
+
return evening ? eveningMoon() : todayStar();
|
|
159
|
+
}
|
|
160
|
+
/** Minimum displayed-prefix length: shorter prefixes collide across the DB. */
|
|
161
|
+
const UUID_DISPLAY_MIN = 8;
|
|
162
|
+
/**
|
|
163
|
+
* Display width for a list's uuid column: the shortest prefix that is
|
|
164
|
+
* unique WITHIN the list, floored at UUID_DISPLAY_MIN (list-local
|
|
165
|
+
* uniqueness at 2–3 chars would still collide database-wide).
|
|
166
|
+
*/
|
|
167
|
+
export function uuidDisplayWidth(items) {
|
|
168
|
+
if (items.length === 0)
|
|
169
|
+
return UUID_DISPLAY_MIN;
|
|
170
|
+
const sorted = items.map((i) => i.uuid).toSorted();
|
|
171
|
+
let needed = 1;
|
|
172
|
+
for (let i = 1; i < sorted.length; i++) {
|
|
173
|
+
const a = sorted[i - 1] ?? "";
|
|
174
|
+
const b = sorted[i] ?? "";
|
|
175
|
+
let common = 0;
|
|
176
|
+
while (common < a.length && common < b.length && a[common] === b[common])
|
|
177
|
+
common++;
|
|
178
|
+
needed = Math.max(needed, common + 1);
|
|
179
|
+
}
|
|
180
|
+
return Math.max(UUID_DISPLAY_MIN, needed);
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Fit a uuid into the shared id column: truncate to `width` when longer, pad
|
|
184
|
+
* to it when shorter, so ids line up under one another regardless of prefix
|
|
185
|
+
* length. `width` is the value from uuidDisplayWidth.
|
|
186
|
+
*/
|
|
187
|
+
export function uuidCol(uuid, width) {
|
|
188
|
+
return uuid.length > width ? uuid.slice(0, width) : uuid.padEnd(width);
|
|
189
|
+
}
|
|
190
|
+
export function renderList(items) {
|
|
191
|
+
const w = uuidDisplayWidth(items);
|
|
192
|
+
return items.length === 0 ? ["(empty)"] : items.map((i) => formatItem(i, w));
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* The `things today` split. The membership glyph lives in the SECTION HEADER,
|
|
196
|
+
* not on every row — a yellow ★ in the Today header (which also carries the
|
|
197
|
+
* sidebar badge split) and a blue ⏾ in the This Evening header — so the rows
|
|
198
|
+
* drop the redundant per-item marker (the same convention that suppresses a
|
|
199
|
+
* `(project)` context inside that project's own view). Every OTHER view keeps
|
|
200
|
+
* the per-row ★/⏾, where the marker still carries information.
|
|
201
|
+
*
|
|
202
|
+
* This Evening mirrors the GUI: it renders ONLY when evening items exist —
|
|
203
|
+
* a truly-empty evening has no header at all. `full` is the pre-cap view and
|
|
204
|
+
* `shown` the rows that survived the global `--limit`; the split lets the
|
|
205
|
+
* section stay honest under truncation. When the cap hid some or all evening
|
|
206
|
+
* rows, an honest muted hint counts the hidden ones and names the `--limit`
|
|
207
|
+
* that reveals them — never the misleading `(empty)` a truncated evening used
|
|
208
|
+
* to show. `base` is the user's own invocation (flags echoed). The global
|
|
209
|
+
* footer (row driver) still reports the whole-view remainder separately.
|
|
210
|
+
*/
|
|
211
|
+
export function renderToday(full, shown, base) {
|
|
212
|
+
const w = uuidDisplayWidth([...shown.today, ...shown.evening]);
|
|
213
|
+
const lines = [
|
|
214
|
+
`${bold("──")} ${todayStar()} ${bold(`Today (badge: ${full.badge.dueOrOverdue} due/overdue · ${full.badge.other} other) ──`)}`,
|
|
215
|
+
...(shown.today.length === 0 ? ["(empty)"] : shown.today.map((i) => formatItem(i, w))),
|
|
216
|
+
];
|
|
217
|
+
if (full.evening.length > 0) {
|
|
218
|
+
lines.push(`${bold("──")} ${eveningMoon()} ${bold("This Evening ──")}`);
|
|
219
|
+
for (const i of shown.evening)
|
|
220
|
+
lines.push(formatItem(i, w));
|
|
221
|
+
const hidden = full.evening.length - shown.evening.length;
|
|
222
|
+
if (hidden > 0) {
|
|
223
|
+
const total = full.today.length + full.evening.length;
|
|
224
|
+
const more = shown.evening.length > 0 ? "more " : "";
|
|
225
|
+
lines.push(dim(`… ${hidden} ${more}evening item${hidden === 1 ? "" : "s"} — \`${base} --limit ${total}\` · all: \`${base} --all\``));
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
return lines;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* Search rows: a standard list row, plus — for a project surfaced by a HEADING
|
|
232
|
+
* title match — a muted `(via heading "…")` suffix crediting the heading whose
|
|
233
|
+
* text matched (the parent project row stands in for the heading; the GUI has
|
|
234
|
+
* no bare heading row). Ordinary title/notes matches render as plain rows.
|
|
235
|
+
*/
|
|
236
|
+
export function renderSearch(items) {
|
|
237
|
+
if (items.length === 0)
|
|
238
|
+
return ["(empty)"];
|
|
239
|
+
const w = uuidDisplayWidth(items);
|
|
240
|
+
return items.map((i) => {
|
|
241
|
+
const via = i.matchedVia;
|
|
242
|
+
const row = formatItem(i, w);
|
|
243
|
+
return via === undefined ? row : `${row} ${dim(`(via heading "${via.title}")`)}`;
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* The sidebar mirror for `things projects`: loose projects first (the GUI
|
|
248
|
+
* lists them above the areas), then a `── ⬡ Area ──` header per area with
|
|
249
|
+
* its projects beneath (the redundant `(Area)` suffix suppressed). Items
|
|
250
|
+
* arrive from projectsView already in sidebar order — this only inserts the
|
|
251
|
+
* headers. Denser than renderSections on purpose: no title styling and no
|
|
252
|
+
* blank line per project (every row here IS a project). With `hints`,
|
|
253
|
+
* default-hidden later projects are never silent: each group trails a muted
|
|
254
|
+
* `…n later projects` count (a later-only area still gets its header), and
|
|
255
|
+
* the output ends with the flag that reveals them.
|
|
256
|
+
*/
|
|
257
|
+
export function renderProjectsSidebar(items, hints) {
|
|
258
|
+
const total = hints?.groups.reduce((n, g) => n + g.hidden, 0) ?? 0;
|
|
259
|
+
if (items.length === 0 && total === 0 && (hints === undefined || hints.groups.length === 0))
|
|
260
|
+
return ["(empty)"];
|
|
261
|
+
const w = uuidDisplayWidth(items);
|
|
262
|
+
const byGroup = new Map();
|
|
263
|
+
for (const item of items) {
|
|
264
|
+
const key = item.area?.uuid ?? null;
|
|
265
|
+
byGroup.set(key, [...(byGroup.get(key) ?? []), item]);
|
|
266
|
+
}
|
|
267
|
+
// hints (when present) carry the full sidebar group order, including
|
|
268
|
+
// later-only groups the visible items can't reveal.
|
|
269
|
+
const groups = hints?.groups ??
|
|
270
|
+
[...byGroup.keys()].map((key) => ({
|
|
271
|
+
area: key === null ? null : (items.find((i) => i.area?.uuid === key)?.area ?? null),
|
|
272
|
+
hidden: 0,
|
|
273
|
+
}));
|
|
274
|
+
const lines = [];
|
|
275
|
+
for (const group of groups) {
|
|
276
|
+
const rows = byGroup.get(group.area?.uuid ?? null) ?? [];
|
|
277
|
+
// The loose block only exists when it has content; areas mirror the
|
|
278
|
+
// sidebar and render even when empty.
|
|
279
|
+
if (group.area === null && rows.length === 0 && group.hidden === 0)
|
|
280
|
+
continue;
|
|
281
|
+
if (group.area !== null) {
|
|
282
|
+
if (lines.length > 0)
|
|
283
|
+
lines.push("");
|
|
284
|
+
lines.push(`${bold("──")} ${areaMark()} ${bold(`${group.area.title} ──`)}`);
|
|
285
|
+
}
|
|
286
|
+
lines.push(...rows.map((item) => formatItem(item, w, { suppressArea: group.area?.uuid ?? null })));
|
|
287
|
+
if (group.hidden > 0)
|
|
288
|
+
lines.push(dim(`…${group.hidden} later project${group.hidden === 1 ? "" : "s"}`));
|
|
289
|
+
else if (group.area !== null && rows.length === 0)
|
|
290
|
+
lines.push(dim("(no projects)"));
|
|
291
|
+
}
|
|
292
|
+
if (total > 0)
|
|
293
|
+
lines.push("", dim(`(${total} later project${total === 1 ? "" : "s"} — visible with \`things projects --show-later\`)`));
|
|
294
|
+
return lines;
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* Upcoming rows under GUI-style date headers (empty periods are simply
|
|
298
|
+
* absent), with the trailing Repeating To-Dos section: templates with no
|
|
299
|
+
* set next occurrence, carrying their waiting/paused/ended status word and
|
|
300
|
+
* the bare ⚑ when the rule will assign a deadline per occurrence.
|
|
301
|
+
*/
|
|
302
|
+
export function renderUpcoming(items, now) {
|
|
303
|
+
if (items.length === 0)
|
|
304
|
+
return ["(empty)"];
|
|
305
|
+
const todayIso = localToday(now);
|
|
306
|
+
const w = uuidDisplayWidth(items);
|
|
307
|
+
const fmtOpts = now === undefined ? {} : { now };
|
|
308
|
+
const dated = items.filter((i) => i.startDate !== null);
|
|
309
|
+
const resting = items.filter((i) => i.startDate === null && i.repeating.isTemplate);
|
|
310
|
+
const lines = [];
|
|
311
|
+
let openHeader = null;
|
|
312
|
+
for (const item of dated) {
|
|
313
|
+
const bucket = upcomingBucket(item.startDate ?? "", todayIso);
|
|
314
|
+
if (bucket.label !== openHeader) {
|
|
315
|
+
if (lines.length > 0)
|
|
316
|
+
lines.push("");
|
|
317
|
+
lines.push(bold(`── ${bucket.label} ──`));
|
|
318
|
+
openHeader = bucket.label;
|
|
319
|
+
}
|
|
320
|
+
lines.push(formatItem(item, w, { ...fmtOpts, hideDateChip: bucket.isDay }));
|
|
321
|
+
}
|
|
322
|
+
if (resting.length > 0) {
|
|
323
|
+
if (lines.length > 0)
|
|
324
|
+
lines.push("");
|
|
325
|
+
lines.push(bold("── Repeating To-Dos ──"));
|
|
326
|
+
for (const item of resting) {
|
|
327
|
+
lines.push(formatItem(item, w, { ...fmtOpts, statusWord: templateStatus(item.repeating, todayIso) }));
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
return lines;
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* Logbook rows under GUI-style date headings, month granularity throughout
|
|
334
|
+
* — `── July ──` within the current year, `── March 2025 ──` beyond (finer
|
|
335
|
+
* than the GUI's bare per-year buckets, deliberately). Truncation past the
|
|
336
|
+
* row limit is reported by the shared hint the command appends, not here.
|
|
337
|
+
*/
|
|
338
|
+
export function renderLogbook(items, now) {
|
|
339
|
+
if (items.length === 0)
|
|
340
|
+
return ["(empty)"];
|
|
341
|
+
const w = uuidDisplayWidth(items);
|
|
342
|
+
const currentYear = localToday(now).slice(0, 4);
|
|
343
|
+
const lines = [];
|
|
344
|
+
let openHeading = null;
|
|
345
|
+
for (const item of items) {
|
|
346
|
+
const s = item.stopped;
|
|
347
|
+
const heading = s === null
|
|
348
|
+
? "no logged date"
|
|
349
|
+
: `${FULL_MONTHS[s.getMonth()]}${String(s.getFullYear()) === currentYear ? "" : ` ${s.getFullYear()}`}`;
|
|
350
|
+
if (heading !== openHeading) {
|
|
351
|
+
if (lines.length > 0)
|
|
352
|
+
lines.push("");
|
|
353
|
+
lines.push(bold(`── ${heading} ──`));
|
|
354
|
+
openHeading = heading;
|
|
355
|
+
}
|
|
356
|
+
lines.push(formatItem(item, w, now === undefined ? {} : { now }));
|
|
357
|
+
}
|
|
358
|
+
return lines;
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* Sidebar-grouped views (anytime/someday), rendered the way the GUI reads:
|
|
362
|
+
* the area-less block headerless first, then one `── <area> ──` header per
|
|
363
|
+
* area; inside a section, loose to-dos first, then each project GROUP — a
|
|
364
|
+
* blank line, the project's bold+underlined title row, then its members.
|
|
365
|
+
* Container names implied by the grouping are not repeated on member rows
|
|
366
|
+
* (an area header covers its rows; a project title row covers the to-dos
|
|
367
|
+
* beneath it — a clustered child whose project row is absent, e.g. under a
|
|
368
|
+
* tag filter, keeps its `(project)` suffix). `star` prefixes each item line
|
|
369
|
+
* with the Today-membership mark (★, or ⏾ for This-Evening members).
|
|
370
|
+
*/
|
|
371
|
+
export function renderSections(sections, star = false) {
|
|
372
|
+
const all = sections.flatMap((s) => s.items);
|
|
373
|
+
if (all.length === 0)
|
|
374
|
+
return ["(empty)"];
|
|
375
|
+
const w = uuidDisplayWidth(all);
|
|
376
|
+
const lines = [];
|
|
377
|
+
const blank = () => {
|
|
378
|
+
if (lines.length > 0 && lines.at(-1) !== "")
|
|
379
|
+
lines.push("");
|
|
380
|
+
};
|
|
381
|
+
for (const section of sections) {
|
|
382
|
+
if (section.area !== null) {
|
|
383
|
+
blank();
|
|
384
|
+
lines.push(`${bold("──")} ${areaMark()} ${bold(`${section.area.title} ──`)}`);
|
|
385
|
+
}
|
|
386
|
+
// The uuid of the project whose title row is directly above (its member
|
|
387
|
+
// rows drop their redundant `(project)` suffix).
|
|
388
|
+
let openProject = null;
|
|
389
|
+
for (const item of section.items) {
|
|
390
|
+
const mark = star ? todayMark(item) : null;
|
|
391
|
+
if (item.type === "project") {
|
|
392
|
+
openProject = item.uuid;
|
|
393
|
+
blank();
|
|
394
|
+
lines.push(formatItem(item, w, {
|
|
395
|
+
projectTitle: true,
|
|
396
|
+
suppressArea: section.area?.uuid ?? null,
|
|
397
|
+
mark,
|
|
398
|
+
}));
|
|
399
|
+
}
|
|
400
|
+
else {
|
|
401
|
+
lines.push(formatItem(item, w, {
|
|
402
|
+
suppressProject: openProject,
|
|
403
|
+
suppressArea: section.area?.uuid ?? null,
|
|
404
|
+
mark,
|
|
405
|
+
}));
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
return lines;
|
|
410
|
+
}
|
|
411
|
+
/** Single-quote a title for a copy-pasteable drill-down command. */
|
|
412
|
+
function quoteTitle(title) {
|
|
413
|
+
return `'${title.replace(/'/g, "'\\''")}'`;
|
|
414
|
+
}
|
|
415
|
+
const takeUpTo = (items, limit) => limit === null ? items : items.slice(0, limit);
|
|
416
|
+
/** Muted per-block truncation line: `… N more — \`drill-down\``. */
|
|
417
|
+
function blockMoreLine(total, shown, drill) {
|
|
418
|
+
return dim(` … ${total - shown} more${drill === null ? "" : ` — \`${drill}\``}`);
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* Type-aware variant for blocks that mix project rows and to-dos (someday's
|
|
422
|
+
* loose/area blocks): the hidden remainder is split by type — `… 5 more
|
|
423
|
+
* projects, 14 more to-dos` — omitting a type with nothing hidden and
|
|
424
|
+
* pluralizing per count.
|
|
425
|
+
*/
|
|
426
|
+
function mixedMoreLine(hidden, drill) {
|
|
427
|
+
const projects = hidden.filter((i) => i.type === "project").length;
|
|
428
|
+
const todos = hidden.length - projects;
|
|
429
|
+
const parts = [
|
|
430
|
+
...(projects > 0 ? [`${projects} more project${projects === 1 ? "" : "s"}`] : []),
|
|
431
|
+
...(todos > 0 ? [`${todos} more to-do${todos === 1 ? "" : "s"}`] : []),
|
|
432
|
+
];
|
|
433
|
+
return dim(` … ${parts.join(", ")}${drill === null ? "" : ` — \`${drill}\``}`);
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
* Muted bottom line for a truncated grouped view: `── more per group — see
|
|
437
|
+
* more: \`<base> <bigger flags>\` · all: \`<base> --all\` ──`, where the
|
|
438
|
+
* bigger-flags command doubles exactly the caps that actually truncated.
|
|
439
|
+
*/
|
|
440
|
+
function groupedBottomLine(base, escalations, allBase = base) {
|
|
441
|
+
const seeMore = escalations.length > 0 ? `see more: \`${base} ${escalations.join(" ")}\` · ` : "";
|
|
442
|
+
return dim(`── more per group — ${seeMore}all: \`${allBase} --all\` ──`);
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* The anytime preview: the FULL block skeleton — every area header and every
|
|
446
|
+
* project row — always renders; `limits.area` caps the loose block and each
|
|
447
|
+
* area's direct to-dos, `limits.project` each project's to-dos. A truncated
|
|
448
|
+
* block trails a muted `… N more — \`things (project|area) show '…'\``
|
|
449
|
+
* drill-down (the loose block has no container, so it shows only the count),
|
|
450
|
+
* and the view ends with one line escalating the caps that hit. Today members
|
|
451
|
+
* are starred. Mirrors renderSections' layout exactly.
|
|
452
|
+
*/
|
|
453
|
+
export function renderAnytimePreview(sections, limits, base) {
|
|
454
|
+
const all = sections.flatMap((s) => s.items);
|
|
455
|
+
if (all.length === 0)
|
|
456
|
+
return ["(empty)"];
|
|
457
|
+
const w = uuidDisplayWidth(all);
|
|
458
|
+
const lines = [];
|
|
459
|
+
let areaHit = false;
|
|
460
|
+
let projectHit = false;
|
|
461
|
+
const blank = () => {
|
|
462
|
+
if (lines.length > 0 && lines.at(-1) !== "")
|
|
463
|
+
lines.push("");
|
|
464
|
+
};
|
|
465
|
+
for (const section of sections) {
|
|
466
|
+
if (section.area !== null) {
|
|
467
|
+
blank();
|
|
468
|
+
lines.push(`${bold("──")} ${areaMark()} ${bold(`${section.area.title} ──`)}`);
|
|
469
|
+
}
|
|
470
|
+
const { direct, projects } = splitSectionBlocks(section);
|
|
471
|
+
const suppressArea = section.area?.uuid ?? null;
|
|
472
|
+
const shownDirect = takeUpTo(direct, limits.area);
|
|
473
|
+
for (const item of shownDirect) {
|
|
474
|
+
lines.push(formatItem(item, w, { suppressArea, mark: todayMark(item) }));
|
|
475
|
+
}
|
|
476
|
+
if (direct.length > shownDirect.length) {
|
|
477
|
+
areaHit = true;
|
|
478
|
+
const drill = section.area === null ? null : `things area show ${quoteTitle(section.area.title)}`;
|
|
479
|
+
lines.push(blockMoreLine(direct.length, shownDirect.length, drill));
|
|
480
|
+
}
|
|
481
|
+
for (const { project, items: children } of projects) {
|
|
482
|
+
blank();
|
|
483
|
+
lines.push(formatItem(project, w, { projectTitle: true, suppressArea, mark: todayMark(project) }));
|
|
484
|
+
const shownChildren = takeUpTo(children, limits.project);
|
|
485
|
+
for (const item of shownChildren) {
|
|
486
|
+
lines.push(formatItem(item, w, {
|
|
487
|
+
suppressProject: project.uuid,
|
|
488
|
+
suppressArea,
|
|
489
|
+
mark: todayMark(item),
|
|
490
|
+
}));
|
|
491
|
+
}
|
|
492
|
+
if (children.length > shownChildren.length) {
|
|
493
|
+
projectHit = true;
|
|
494
|
+
lines.push(blockMoreLine(children.length, shownChildren.length, `things project show ${quoteTitle(project.title)}`));
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
if (areaHit || projectHit) {
|
|
499
|
+
const escalations = [
|
|
500
|
+
...(areaHit && limits.area !== null ? [`--area-limit ${limits.area * 2}`] : []),
|
|
501
|
+
...(projectHit && limits.project !== null ? [`--project-limit ${limits.project * 2}`] : []),
|
|
502
|
+
];
|
|
503
|
+
lines.push("", groupedBottomLine(base, escalations));
|
|
504
|
+
}
|
|
505
|
+
return lines;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* The someday preview, mirroring the GUI (side-by-side, 2026-07-12): inside
|
|
509
|
+
* each group the project rows render as PLAIN items — `(~)` circle, count
|
|
510
|
+
* chip, no header styling, no surrounding blank lines — listed before the
|
|
511
|
+
* direct to-dos; `limits.area` caps each group's combined list. With
|
|
512
|
+
* `showActive` (the --show-active-project-items toggle) the someday to-dos
|
|
513
|
+
* living inside active projects append as a separate trailing
|
|
514
|
+
* `── From active projects ──` section — a flat run of project-header blocks
|
|
515
|
+
* (no area grouping), each capped at `limits.project` (null = every item).
|
|
516
|
+
* When the toggle is off and such items exist, a muted bottom hint counts
|
|
517
|
+
* them and names the flag.
|
|
518
|
+
*/
|
|
519
|
+
export function renderSomedayPreview(sections, limits, base, showActive, hiddenActiveItems) {
|
|
520
|
+
const all = sections.flatMap((s) => s.items);
|
|
521
|
+
const lines = [];
|
|
522
|
+
let areaHit = false;
|
|
523
|
+
let projectHit = false;
|
|
524
|
+
const blank = () => {
|
|
525
|
+
if (lines.length > 0 && lines.at(-1) !== "")
|
|
526
|
+
lines.push("");
|
|
527
|
+
};
|
|
528
|
+
if (all.length === 0) {
|
|
529
|
+
lines.push("(empty)");
|
|
530
|
+
}
|
|
531
|
+
else {
|
|
532
|
+
const w = uuidDisplayWidth(all);
|
|
533
|
+
const trailing = [];
|
|
534
|
+
for (const section of sections) {
|
|
535
|
+
const { own, children } = partitionSomedaySection(section);
|
|
536
|
+
trailing.push(...children);
|
|
537
|
+
if (section.area !== null) {
|
|
538
|
+
blank();
|
|
539
|
+
lines.push(`${bold("──")} ${areaMark()} ${bold(`${section.area.title} ──`)}`);
|
|
540
|
+
}
|
|
541
|
+
const suppressArea = section.area?.uuid ?? null;
|
|
542
|
+
const shownOwn = takeUpTo(own, limits.area);
|
|
543
|
+
for (const item of shownOwn)
|
|
544
|
+
lines.push(formatItem(item, w, { suppressArea }));
|
|
545
|
+
if (own.length > shownOwn.length) {
|
|
546
|
+
areaHit = true;
|
|
547
|
+
const drill = section.area === null ? null : `things area show ${quoteTitle(section.area.title)}`;
|
|
548
|
+
lines.push(mixedMoreLine(own.slice(shownOwn.length), drill));
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
if (trailing.length > 0) {
|
|
552
|
+
blank();
|
|
553
|
+
lines.push(bold("── From active projects ──"));
|
|
554
|
+
for (const group of trailing) {
|
|
555
|
+
blank();
|
|
556
|
+
lines.push(`${dim(uuidCol(group.project.uuid, w))} ${bold(underline(group.project.title))}`);
|
|
557
|
+
const shown = takeUpTo(group.items, limits.project);
|
|
558
|
+
for (const item of shown) {
|
|
559
|
+
lines.push(formatItem(item, w, { suppressProject: group.project.uuid }));
|
|
560
|
+
}
|
|
561
|
+
if (group.items.length > shown.length) {
|
|
562
|
+
projectHit = true;
|
|
563
|
+
lines.push(blockMoreLine(group.items.length, shown.length, `things project show ${quoteTitle(group.project.title)}`));
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
if (areaHit || projectHit) {
|
|
569
|
+
const escalations = [
|
|
570
|
+
...(areaHit && limits.area !== null ? [`--area-limit ${limits.area * 2}`] : []),
|
|
571
|
+
...(projectHit && limits.project !== null
|
|
572
|
+
? [`--show-active-project-items ${limits.project * 2}`]
|
|
573
|
+
: []),
|
|
574
|
+
];
|
|
575
|
+
// The bare flag keeps the active-projects section visible under --all.
|
|
576
|
+
const allBase = showActive ? `${base} --show-active-project-items` : base;
|
|
577
|
+
lines.push("", groupedBottomLine(base, escalations, allBase));
|
|
578
|
+
}
|
|
579
|
+
if (!showActive && hiddenActiveItems > 0) {
|
|
580
|
+
blank();
|
|
581
|
+
lines.push(dim(`(${hiddenActiveItems} someday to-do${hiddenActiveItems === 1 ? "" : "s"} inside active projects — visible with \`things someday --show-active-project-items\`)`));
|
|
582
|
+
}
|
|
583
|
+
return lines;
|
|
584
|
+
}
|
|
585
|
+
//# sourceMappingURL=render.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render.js","sourceRoot":"","sources":["../../src/cli/render.ts"],"names":[],"mappings":"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"}
|