1
1
import { h , render , rerender } from "preact" ;
2
2
import { testBrowser } from "../tools/tester" ;
3
+ import { NotebookPage , ProfilePage } from "./app" ;
3
4
import { cellExecuteQueue } from "./components/cell" ;
4
5
import { Notebook } from "./components/notebook" ;
5
6
import * as db from "./db" ;
6
- import * as nb from "./notebook_root" ;
7
7
import { assert , assertEqual , createResolvable , delay } from "./util" ;
8
8
9
9
const DOC_TITLE = "Anonymous Notebook" ;
10
10
11
- testBrowser ( async function notebook_NotebookRoot ( ) {
12
- const mdb = db . enableMock ( ) ;
13
- resetPage ( ) ;
14
- const el = h ( nb . NotebookRoot , { } ) ;
15
- render ( el , document . body ) ;
16
- await flush ( ) ;
17
- assertEqual ( mdb . counts , { queryLatest : 1 } ) ;
18
- const c = document . body . getElementsByTagName ( "div" ) [ 0 ] ;
19
- assertEqual ( c . className , "notebook" ) ;
20
- } ) ;
21
-
22
11
testBrowser ( async function notebook_Notebook ( ) {
23
12
const mdb = db . enableMock ( ) ;
24
13
await renderAnonNotebook ( ) ;
@@ -126,21 +115,21 @@ testBrowser(async function notebook_profile() {
126
115
await renderProfile ( "non-existant" ) ;
127
116
let avatars = document . querySelectorAll ( ".avatar" ) ;
128
117
assert ( avatars . length === 0 ) ;
129
- let notebooks = document . querySelectorAll ( ".most-recent ol li" ) ;
118
+ let notebooks = document . querySelectorAll ( ".nb-listing ol li" ) ;
130
119
assert ( notebooks . length === 0 ) ;
131
120
assertEqual ( mdb . counts , { queryProfile : 1 } ) ;
132
121
133
122
// Try again with a real uid.
134
123
await renderProfile ( db . defaultOwner . uid ) ;
135
124
avatars = document . querySelectorAll ( ".avatar" ) ;
136
125
assert ( avatars . length === 1 ) ;
137
- notebooks = document . querySelectorAll ( ".most-recent ol li" ) ;
126
+ notebooks = document . querySelectorAll ( ".nb-listing ol li" ) ;
138
127
assert ( notebooks . length === 1 ) ;
139
128
assertEqual ( mdb . counts , { queryProfile : 2 } ) ;
140
129
} ) ;
141
130
142
131
testBrowser ( async function notebook_executeQueue ( ) {
143
- const { notebookRef } = await renderAnonNotebook ( ) ;
132
+ const notebookRef = await renderAnonNotebook ( ) ;
144
133
// All the cells must be executed now.
145
134
assertEqual ( cellExecuteQueue . length , 0 ) ;
146
135
const cell1 = await notebookRef . insertCell ( 2 , "a = 0" ) ;
@@ -163,7 +152,7 @@ testBrowser(async function notebook_executeQueue() {
163
152
164
153
testBrowser ( async function notebook_urlImport ( ) {
165
154
db . enableMock ( ) ;
166
- const { notebookRef } = await renderAnonNotebook ( ) ;
155
+ const notebookRef = await renderAnonNotebook ( ) ;
167
156
const testdataUrl = `${ location . origin } /static/testdata` ;
168
157
169
158
const cell1 = await notebookRef . insertCell (
@@ -202,27 +191,32 @@ function resetPage() {
202
191
function renderProfile ( profileUid : string ) {
203
192
const promise = createResolvable ( ) ;
204
193
resetPage ( ) ;
205
- const el = h ( nb . NotebookRoot , {
206
- onReady : promise . resolve ,
207
- profileUid
194
+ const el = h ( ProfilePage , {
195
+ matches : {
196
+ userId : profileUid
197
+ } ,
198
+ onReady : promise . resolve
208
199
} ) ;
209
200
render ( el , document . body ) ;
210
201
return promise ;
211
202
}
212
203
213
- async function renderAnonNotebook ( ) : Promise < nb . NotebookRoot > {
204
+ async function renderAnonNotebook ( ) : Promise < Notebook > {
214
205
const promise = createResolvable ( ) ;
215
206
resetPage ( ) ;
216
- let notebookRoot : nb . NotebookRoot ;
217
- const el = h ( nb . NotebookRoot , {
218
- nbId : "default" ,
207
+ let notebookRoot ;
208
+ const el = h ( NotebookPage , {
209
+ matches : {
210
+ nbId : "default"
211
+ } ,
219
212
onReady : promise . resolve ,
220
- ref : n => ( notebookRoot = n )
213
+ ref : ref => ( notebookRoot = ref )
221
214
} ) ;
222
215
render ( el , document . body ) ;
223
216
await promise ;
224
- await notebookRoot . notebookRef . isReady ;
225
- return notebookRoot ;
217
+ const notebookRef = notebookRoot . componentRef ;
218
+ await notebookRef . isReady ;
219
+ return notebookRef ;
226
220
}
227
221
228
222
async function renderNotebook ( ) : Promise < Notebook > {
0 commit comments