File tree 2 files changed +62
-0
lines changed
2 files changed +62
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,30 @@ class RoamPrivateApi {
45
45
} , query ) ;
46
46
}
47
47
48
+ /**
49
+ * Create a block as a child of block.
50
+ * @param {string } text
51
+ * @param {uid } uid - parent UID where block has to be inserted.
52
+ */
53
+ async createBlock ( text , uid ) {
54
+ const result = await this . page . evaluate ( ( text , uid ) => {
55
+ if ( ! window . roamAlphaAPI ) {
56
+ return Promise . reject ( 'No Roam API detected' ) ;
57
+ }
58
+ const result = window . roamAlphaAPI . createBlock (
59
+ { "location" :
60
+ { "parent-uid" : uid ,
61
+ "order" : 0 } ,
62
+ "block" :
63
+ { "string" : text } } )
64
+ console . log ( result ) ;
65
+ return Promise . resolve ( result ) ;
66
+ } , text , uid ) ;
67
+ // Let's give time to sync.
68
+ await this . page . waitForTimeout ( 1000 ) ;
69
+ return result ;
70
+ }
71
+
48
72
/**
49
73
* Delete blocks matching the query. Hass some protections, but
50
74
* THIS IS VERY UNSAFE. DO NOT USE THIS IF YOU ARE NOT 100% SURE WHAT YOU ARE DOING
@@ -121,6 +145,7 @@ class RoamPrivateApi {
121
145
) ,
122
146
1
123
147
) ;
148
+ //Lets give time to sync
124
149
await this . page . waitForTimeout ( 1000 ) ;
125
150
return ;
126
151
}
@@ -131,6 +156,12 @@ class RoamPrivateApi {
131
156
dailyNoteTitle ( ) {
132
157
return moment ( new Date ( ) ) . format ( 'MMMM Do, YYYY' ) ;
133
158
}
159
+ /**
160
+ * Return page uid for the current daily note.
161
+ */
162
+ dailyNoteUid ( ) {
163
+ return moment ( new Date ( ) ) . format ( 'MM-DD-YYYY' ) ;
164
+ }
134
165
135
166
/**
136
167
* Export your Roam database and return the JSON data.
Original file line number Diff line number Diff line change @@ -89,6 +89,37 @@ const argv = yargs
89
89
} ) ;
90
90
}
91
91
)
92
+ . command (
93
+ 'create [text] [parentuid]' ,
94
+ 'Append a block to a block with a selected uid. If no uid is provided, block will be appended to the daily page. You can also pass data from stdin.' ,
95
+ ( ) => { } ,
96
+ ( argv ) => {
97
+ let input = '' ;
98
+ if ( argv . stdin ) {
99
+ input = fs . readFileSync ( 0 , 'utf-8' ) ;
100
+ } else {
101
+ input = argv [ 'text' ] ;
102
+ }
103
+
104
+ if ( ! input || input . length < 3 ) {
105
+ console . warn ( 'You have to provide content at least 3 chars long' ) ;
106
+ return ;
107
+ }
108
+
109
+ const RoamPrivateApi = require ( '../' ) ;
110
+ const api = new RoamPrivateApi ( argv . graph , argv . email , argv . password , {
111
+ headless : ! argv . debug ,
112
+ } ) ;
113
+
114
+ if ( ! argv [ 'parentuid' ] ) {
115
+ argv [ 'parentuid' ] = api . dailyNoteUid ( ) ;
116
+ }
117
+
118
+ api . logIn ( )
119
+ . then ( ( ) => api . createBlock ( input , argv [ 'parentuid' ] ) )
120
+ . then ( result => api . close ( ) ) ;
121
+ }
122
+ )
92
123
. command (
93
124
'export <dir> [exporturl]' ,
94
125
'Export your Roam database to a selected directory. If URL is provided, then the concent will be sent by POST request to the specified URL.' ,
You can’t perform that action at this time.
0 commit comments