Skip to content

Commit 56da2fd

Browse files
committedApr 7, 2022
feat: Add additional commands to open OR create the next/prev periodic note
1 parent 6629414 commit 56da2fd

File tree

5 files changed

+83
-41
lines changed

5 files changed

+83
-41
lines changed
 

‎src/commands.ts

+48-26
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Command, App, TFile } from "obsidian";
1+
import { type Command, App, TFile, Notice } from "obsidian";
22
import type PeriodicNotesPlugin from "src/main";
33

44
import type { Granularity } from "./types";
@@ -37,55 +37,54 @@ export const displayConfigs: Record<Granularity, IDisplayConfig> = {
3737
},
3838
};
3939

40-
async function openNextNote(
40+
async function jumpToAdjacentNote(
4141
app: App,
4242
plugin: PeriodicNotesPlugin,
43-
_granularity: Granularity
43+
direction: "forwards" | "backwards"
4444
): Promise<void> {
4545
const activeFile = app.workspace.getActiveFile();
46-
4746
if (!activeFile) return;
4847
const activeFileMeta = plugin.findInCache(activeFile.path);
4948
if (!activeFileMeta) return;
5049

51-
const nextNoteMeta = plugin.findAdjacent(
50+
const adjacentNoteMeta = plugin.findAdjacent(
5251
activeFileMeta.calendarSet,
5352
activeFile.path,
54-
"forwards"
53+
direction
5554
);
5655

57-
if (nextNoteMeta) {
58-
const file = app.vault.getAbstractFileByPath(nextNoteMeta.filePath);
56+
if (adjacentNoteMeta) {
57+
const file = app.vault.getAbstractFileByPath(adjacentNoteMeta.filePath);
5958
if (file && file instanceof TFile) {
6059
const leaf = app.workspace.getUnpinnedLeaf();
6160
await leaf.openFile(file, { active: true });
6261
}
62+
} else {
63+
const qualifier = direction === "forwards" ? "after" : "before";
64+
new Notice(
65+
`There's no ${
66+
displayConfigs[activeFileMeta.granularity].periodicity
67+
} note ${qualifier} this`
68+
);
6369
}
6470
}
6571

66-
async function openPrevNote(
72+
async function openAdjacentNote(
6773
app: App,
6874
plugin: PeriodicNotesPlugin,
69-
_granularity: Granularity // TODO switch these commands to be generic?
75+
direction: "forwards" | "backwards"
7076
): Promise<void> {
7177
const activeFile = app.workspace.getActiveFile();
7278
if (!activeFile) return;
7379
const activeFileMeta = plugin.findInCache(activeFile.path);
7480
if (!activeFileMeta) return;
7581

76-
const prevNoteMeta = plugin.findAdjacent(
77-
activeFileMeta.calendarSet,
78-
activeFile.path,
79-
"backwards"
80-
);
82+
const offset = direction === "forwards" ? 1 : -1;
83+
const adjacentDate = activeFileMeta.date
84+
.clone()
85+
.add(offset, activeFileMeta.granularity);
8186

82-
if (prevNoteMeta) {
83-
const file = app.vault.getAbstractFileByPath(prevNoteMeta.filePath);
84-
if (file && file instanceof TFile) {
85-
const leaf = app.workspace.getUnpinnedLeaf();
86-
await leaf.openFile(file, { active: true });
87-
}
88-
}
87+
plugin.openPeriodicNote(activeFileMeta.granularity, adjacentDate, false);
8988
}
9089

9190
export function getCommands(
@@ -104,27 +103,50 @@ export function getCommands(
104103

105104
{
106105
id: `next-${config.periodicity}-note`,
107-
name: `Open next ${config.periodicity} note`,
106+
name: `Jump forwards to closest ${config.periodicity} note`,
108107
checkCallback: (checking: boolean) => {
109108
const activeFile = app.workspace.getActiveFile();
110109
if (checking) {
111110
if (!activeFile) return false;
112111
return plugin.isPeriodic(activeFile.path, granularity);
113112
}
114-
openNextNote(app, plugin, granularity);
113+
jumpToAdjacentNote(app, plugin, "forwards");
115114
},
116115
},
117-
118116
{
119117
id: `prev-${config.periodicity}-note`,
118+
name: `Jump backwards to closest ${config.periodicity} note`,
119+
checkCallback: (checking: boolean) => {
120+
const activeFile = app.workspace.getActiveFile();
121+
if (checking) {
122+
if (!activeFile) return false;
123+
return plugin.isPeriodic(activeFile.path, granularity);
124+
}
125+
openAdjacentNote(app, plugin, "backwards");
126+
},
127+
},
128+
{
129+
id: `open-next-${config.periodicity}-note`,
130+
name: `Open next ${config.periodicity} note`,
131+
checkCallback: (checking: boolean) => {
132+
const activeFile = app.workspace.getActiveFile();
133+
if (checking) {
134+
if (!activeFile) return false;
135+
return plugin.isPeriodic(activeFile.path, granularity);
136+
}
137+
openAdjacentNote(app, plugin, "forwards");
138+
},
139+
},
140+
{
141+
id: `open-prev-${config.periodicity}-note`,
120142
name: `Open previous ${config.periodicity} note`,
121143
checkCallback: (checking: boolean) => {
122144
const activeFile = app.workspace.getActiveFile();
123145
if (checking) {
124146
if (!activeFile) return false;
125147
return plugin.isPeriodic(activeFile.path, granularity);
126148
}
127-
openPrevNote(app, plugin, granularity);
149+
openAdjacentNote(app, plugin, "backwards");
128150
},
129151
},
130152
];

‎src/styles.css

+9-13
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,11 @@ input.has-error {
3333
position: relative;
3434
}
3535

36-
.periodic-notes-switcher-input-container input {
37-
padding-left: 80px;
38-
}
39-
40-
.mode-indicator {
41-
text-transform: capitalize;
42-
background-color: var(--background-primary);
43-
color: white;
44-
padding: 0px 10px;
36+
.related-notes-mode-indicator {
37+
color: var(--text-muted);
4538
position: absolute;
46-
top: 8px;
47-
left: 10px;
48-
border-radius: 6px;
49-
display: inline-block;
39+
top: 10px;
40+
right: 10px;
5041
font-size: 70%;
5142
}
5243

@@ -68,3 +59,8 @@ input.has-error {
6859
padding: 0.1em 0.5em;
6960
right: 36px;
7061
}
62+
63+
.minimal-theme .related-notes-mode-indicator {
64+
top: 12px;
65+
right: 16px;
66+
}

‎src/switcher/relatedFilesSwitcher.ts

+16
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ const DEFAULT_INSTRUCTIONS = [
1212
];
1313

1414
export class RelatedFilesSwitcher extends SuggestModal<DateNavigationItem> {
15+
private inputLabel: HTMLElement;
1516
private includeFinerGranularities: boolean;
17+
1618
constructor(
1719
readonly app: App,
1820
readonly plugin: PeriodicNotesPlugin,
@@ -25,6 +27,17 @@ export class RelatedFilesSwitcher extends SuggestModal<DateNavigationItem> {
2527
this.setInstructions(DEFAULT_INSTRUCTIONS);
2628
this.setPlaceholder(`Search notes related to ${selectedItem.label}...`);
2729

30+
this.inputEl.parentElement?.prepend(
31+
createDiv("periodic-notes-switcher-input-container", (inputContainer) => {
32+
inputContainer.appendChild(this.inputEl);
33+
this.inputLabel = inputContainer.createDiv({
34+
cls: "related-notes-mode-indicator",
35+
text: "Expanded",
36+
});
37+
this.inputLabel.toggleVisibility(false);
38+
})
39+
);
40+
2841
this.scope.register([], "Tab", (evt: KeyboardEvent) => {
2942
evt.preventDefault();
3043
this.close();
@@ -38,6 +51,9 @@ export class RelatedFilesSwitcher extends SuggestModal<DateNavigationItem> {
3851
this.scope.register(["Shift"], "8", (evt: KeyboardEvent) => {
3952
evt.preventDefault();
4053
this.includeFinerGranularities = !this.includeFinerGranularities;
54+
this.inputLabel.style.visibility = this.includeFinerGranularities
55+
? "visible"
56+
: "hidden";
4157
this.inputEl.dispatchEvent(new Event("input"));
4258
});
4359
}

‎src/switcher/switcher.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,16 @@ export class NLDNavigator extends SuggestModal<DateNavigationItem> {
146146
return [
147147
getSuggestion(`in ${timeDelta} days`, "day"),
148148
getSuggestion(`in ${timeDelta} weeks`, "day"),
149-
getSuggestion(`in ${timeDelta} months`, "day"),
149+
getSuggestion(`in ${timeDelta} weeks`, "week"),
150+
getSuggestion(`in ${timeDelta} months`, "month"),
151+
getSuggestion(`in ${timeDelta} years`, "day"),
152+
getSuggestion(`in ${timeDelta} years`, "year"),
150153
getSuggestion(`${timeDelta} days ago`, "day"),
151154
getSuggestion(`${timeDelta} weeks ago`, "day"),
155+
getSuggestion(`${timeDelta} weeks ago`, "week"),
152156
getSuggestion(`${timeDelta} months ago`, "month"),
157+
getSuggestion(`${timeDelta} years ago`, "day"),
158+
getSuggestion(`${timeDelta} years ago`, "year"),
153159
]
154160
.filter((items) => activeGranularities.includes(items.granularity))
155161
.filter((item) => item.label.toLowerCase().startsWith(query));
@@ -165,6 +171,9 @@ export class NLDNavigator extends SuggestModal<DateNavigationItem> {
165171
getSuggestion("this month", "month"),
166172
getSuggestion("last month", "month"),
167173
getSuggestion("next month", "month"),
174+
getSuggestion("this quarter", "quarter"),
175+
getSuggestion("last quarter", "quarter"),
176+
getSuggestion("next quarter", "quarter"),
168177
getSuggestion("this year", "year"),
169178
getSuggestion("last year", "year"),
170179
getSuggestion("next year", "year"),

‎styles.css

-1
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.