Skip to content

Commit 8022883

Browse files
committed
Create block command works as well
1 parent c5a7537 commit 8022883

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

RoamPrivateApi.js

+31
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,30 @@ class RoamPrivateApi {
4545
}, query );
4646
}
4747

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+
4872
/**
4973
* Delete blocks matching the query. Hass some protections, but
5074
* THIS IS VERY UNSAFE. DO NOT USE THIS IF YOU ARE NOT 100% SURE WHAT YOU ARE DOING
@@ -121,6 +145,7 @@ class RoamPrivateApi {
121145
),
122146
1
123147
);
148+
//Lets give time to sync
124149
await this.page.waitForTimeout( 1000 );
125150
return;
126151
}
@@ -131,6 +156,12 @@ class RoamPrivateApi {
131156
dailyNoteTitle() {
132157
return moment( new Date() ).format( 'MMMM Do, YYYY' );
133158
}
159+
/**
160+
* Return page uid for the current daily note.
161+
*/
162+
dailyNoteUid() {
163+
return moment( new Date() ).format( 'MM-DD-YYYY' );
164+
}
134165

135166
/**
136167
* Export your Roam database and return the JSON data.

examples/cmd.js

+31
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,37 @@ const argv = yargs
8989
} );
9090
}
9191
)
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+
)
92123
.command(
93124
'export <dir> [exporturl]',
94125
'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.',

0 commit comments

Comments
 (0)