-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsample.tsx
119 lines (99 loc) · 4.5 KB
/
sample.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { OneNotePicker } from '../src/oneNotePicker';
import { GlobalProps } from '../src/props/globalProps';
import { OneNoteDataProvider } from '../src/providers/oneNoteDataProvider';
import { Notebook } from '../src/oneNoteDataStructures/notebook';
import { Section } from '../src/oneNoteDataStructures/section';
import { OneNoteItemUtils } from '../src/oneNoteDataStructures/oneNoteItemUtils';
import { NotebookListUpdater } from '../src/oneNoteDataStructures/notebookListUpdater';
import { SampleOneNoteDataProvider } from './sampleOneNoteDataProvider';
import { OneNotePickerDropdown } from '../src/oneNotePickerDropdown';
const oneNoteDataProvider: OneNoteDataProvider = new SampleOneNoteDataProvider();
const render = (globalProps: GlobalProps, notebooks: Notebook[]) => {
ReactDOM.render(
<OneNotePicker globals={globalProps.globals} notebooks={notebooks} />,
document.getElementById('oneNotePicker') as HTMLElement
);
};
const renderDropdown = (globalProps: GlobalProps, notebooks: Notebook[]) => {
const dropdownLabel = !globalProps.globals.selectedId ?
'Select Section' :
findItemName(globalProps.globals.notebookListUpdater!.get(), globalProps.globals.selectedId);
ReactDOM.render(
<OneNotePickerDropdown globals={globalProps.globals} notebooks={notebooks} dropdownLabel={dropdownLabel} popupDirection={'bottom'} />,
document.getElementById('oneNotePickerDropdown') as HTMLElement
);
};
oneNoteDataProvider.getNotebooks().then((notebooks) => {
for (let i = 0; i < notebooks.length; i++) {
OneNoteItemUtils.prune(notebooks[i]);
}
const updater = new NotebookListUpdater(notebooks);
const initialSelectedId = '0-752C1AAF7737895C!515';
OneNoteItemUtils.expandTo(notebooks, item => item.id === initialSelectedId);
const globalProps: GlobalProps = {
globals: {
focusOnMount: true,
oneNoteDataProvider: oneNoteDataProvider,
notebookListUpdater: updater,
callbacks: {
onNotebookHierarchyUpdated: (newNotebookHierarchy) => {
render(globalProps, newNotebookHierarchy);
renderDropdown(globalProps, newNotebookHierarchy);
},
onSectionSelected: (section, breadcrumbs) => {
globalProps.globals.selectedId = section.id;
// tslint:disable-next-line:no-console
console.log(breadcrumbs.map(x => x.name).join(' > '));
render(globalProps, globalProps.globals.notebookListUpdater!.get());
renderDropdown(globalProps, globalProps.globals.notebookListUpdater!.get());
},
onPageSelected: (page, breadcrumbs) => {
globalProps.globals.selectedId = page.id;
// tslint:disable-next-line:no-console
console.log(breadcrumbs.map(x => x.name).join(' > '));
render(globalProps, globalProps.globals.notebookListUpdater!.get());
renderDropdown(globalProps, globalProps.globals.notebookListUpdater!.get());
},
onAccessibleSelection: (selectedItemId: string) => {
globalProps.globals.ariaSelectedId = selectedItemId;
render(globalProps, globalProps.globals.notebookListUpdater!.get());
renderDropdown(globalProps, globalProps.globals.notebookListUpdater!.get());
},
onNotebookCreated: (notebook: Notebook) => {
// Allow max one creation
globalProps.globals.callbacks.onNotebookCreated = undefined;
if (globalProps.globals.notebookListUpdater) {
globalProps.globals.notebookListUpdater.addNotebook(notebook);
globalProps.globals.selectedId = notebook.id;
}
// tslint:disable-next-line:no-console
console.log(`Notebook created: ${notebook.name}`);
render(globalProps, globalProps.globals.notebookListUpdater!.get());
},
onSectionCreated: (section: Section) => {
// TODO (machiam) Introduce a way of only allowing max one section creation per parent
// tslint:disable-next-line:no-console
console.log(`Section created: ${section.name}`);
if (globalProps.globals.notebookListUpdater) {
globalProps.globals.notebookListUpdater!.addSection(section);
globalProps.globals.selectedId = section.id;
}
render(globalProps, globalProps.globals.notebookListUpdater!.get());
}
},
selectedId: initialSelectedId,
ariaSelectedId: initialSelectedId
}
};
render(globalProps, notebooks);
renderDropdown(globalProps, notebooks);
}).catch((value) => {
// tslint:disable-next-line:no-console
console.error(value);
});
export function findItemName(notebooks, itemId) {
const notebook = OneNoteItemUtils.find(notebooks, item => item.id === itemId);
return notebook ? notebook.name : '';
}