1
- import { type Command , App , TFile } from "obsidian" ;
1
+ import { type Command , App , TFile , Notice } from "obsidian" ;
2
2
import type PeriodicNotesPlugin from "src/main" ;
3
3
4
4
import type { Granularity } from "./types" ;
@@ -37,55 +37,54 @@ export const displayConfigs: Record<Granularity, IDisplayConfig> = {
37
37
} ,
38
38
} ;
39
39
40
- async function openNextNote (
40
+ async function jumpToAdjacentNote (
41
41
app : App ,
42
42
plugin : PeriodicNotesPlugin ,
43
- _granularity : Granularity
43
+ direction : "forwards" | "backwards"
44
44
) : Promise < void > {
45
45
const activeFile = app . workspace . getActiveFile ( ) ;
46
-
47
46
if ( ! activeFile ) return ;
48
47
const activeFileMeta = plugin . findInCache ( activeFile . path ) ;
49
48
if ( ! activeFileMeta ) return ;
50
49
51
- const nextNoteMeta = plugin . findAdjacent (
50
+ const adjacentNoteMeta = plugin . findAdjacent (
52
51
activeFileMeta . calendarSet ,
53
52
activeFile . path ,
54
- "forwards"
53
+ direction
55
54
) ;
56
55
57
- if ( nextNoteMeta ) {
58
- const file = app . vault . getAbstractFileByPath ( nextNoteMeta . filePath ) ;
56
+ if ( adjacentNoteMeta ) {
57
+ const file = app . vault . getAbstractFileByPath ( adjacentNoteMeta . filePath ) ;
59
58
if ( file && file instanceof TFile ) {
60
59
const leaf = app . workspace . getUnpinnedLeaf ( ) ;
61
60
await leaf . openFile ( file , { active : true } ) ;
62
61
}
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
+ ) ;
63
69
}
64
70
}
65
71
66
- async function openPrevNote (
72
+ async function openAdjacentNote (
67
73
app : App ,
68
74
plugin : PeriodicNotesPlugin ,
69
- _granularity : Granularity // TODO switch these commands to be generic?
75
+ direction : "forwards" | "backwards"
70
76
) : Promise < void > {
71
77
const activeFile = app . workspace . getActiveFile ( ) ;
72
78
if ( ! activeFile ) return ;
73
79
const activeFileMeta = plugin . findInCache ( activeFile . path ) ;
74
80
if ( ! activeFileMeta ) return ;
75
81
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 ) ;
81
86
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 ) ;
89
88
}
90
89
91
90
export function getCommands (
@@ -104,27 +103,50 @@ export function getCommands(
104
103
105
104
{
106
105
id : `next-${ config . periodicity } -note` ,
107
- name : `Open next ${ config . periodicity } note` ,
106
+ name : `Jump forwards to closest ${ config . periodicity } note` ,
108
107
checkCallback : ( checking : boolean ) => {
109
108
const activeFile = app . workspace . getActiveFile ( ) ;
110
109
if ( checking ) {
111
110
if ( ! activeFile ) return false ;
112
111
return plugin . isPeriodic ( activeFile . path , granularity ) ;
113
112
}
114
- openNextNote ( app , plugin , granularity ) ;
113
+ jumpToAdjacentNote ( app , plugin , "forwards" ) ;
115
114
} ,
116
115
} ,
117
-
118
116
{
119
117
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` ,
120
142
name : `Open previous ${ config . periodicity } note` ,
121
143
checkCallback : ( checking : boolean ) => {
122
144
const activeFile = app . workspace . getActiveFile ( ) ;
123
145
if ( checking ) {
124
146
if ( ! activeFile ) return false ;
125
147
return plugin . isPeriodic ( activeFile . path , granularity ) ;
126
148
}
127
- openPrevNote ( app , plugin , granularity ) ;
149
+ openAdjacentNote ( app , plugin , "backwards" ) ;
128
150
} ,
129
151
} ,
130
152
] ;
0 commit comments