-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCodeSnippetMenu.ts
270 lines (245 loc) · 7.27 KB
/
CodeSnippetMenu.ts
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// Copyright (c) 2020, jupytercalpoly
// Distributed under the terms of the BSD-3 Clause License.
import { WidgetTracker, ReactWidget } from '@jupyterlab/apputils';
import { Widget, PanelLayout, Panel } from '@lumino/widgets';
import { Message, MessageLoop } from '@lumino/messaging';
import { PromiseDelegate } from '@lumino/coreutils';
import { ArrayExt } from '@lumino/algorithm';
/**
* The class name for options box
*/
const OPTIONS_CLASS = 'jp-codeSnippet-options';
const OPTIONS_CONTENT = 'jp-codeSnippet-options-content';
const OPTIONS_BODY = 'jp-codeSnippet-options-body';
/**
* Create and show a code snippet options.
*
* @param options - The code snippet options setup options.
*
* @returns A promise that resolves with whether the code snippet options was accepted.
*/
export function showMoreOptions(
options: Partial<OptionsMessage.IOptions> = {}
): Promise<void> {
const optionsMessage = new OptionsMessage(options);
return optionsMessage.launch();
}
/**
* A widget used to show options message.
*/
export class OptionsMessage extends Widget {
constructor(options: Partial<OptionsMessage.IOptions> = {}) {
super();
this.addClass(OPTIONS_CLASS);
const renderer = OptionsMessage.defaultRenderer;
this._host = options.host || document.body;
const layout = (this.layout = new PanelLayout());
const content = new Panel();
content.addClass(OPTIONS_CONTENT);
layout.addWidget(content);
const body = renderer.createBody(options.body);
content.addWidget(body);
if (OptionsMessage.tracker.size > 0) {
const previous = OptionsMessage.tracker.currentWidget;
previous.reject();
OptionsMessage.tracker.dispose();
}
void OptionsMessage.tracker.add(this);
}
/**
* Launch the code snippet options as a modal window.
*
* @returns a promise that resolves with the result of the code snippet options.
*/
launch(): Promise<void> {
// Return the existing code snippet options if already open.
if (this._promise) {
return this._promise.promise;
}
const promise = (this._promise = new PromiseDelegate<void>());
const promises = Promise.all(Private.launchQueue);
Private.launchQueue.push(this._promise.promise);
return promises.then(() => {
Widget.attach(this, this._host);
return promise.promise;
});
}
/**
* Handle the DOM events for the directory listing.
*
* @param event - The DOM event sent to the widget.
*
* #### Notes
* This method implements the DOM `EventListener` interface and is
* called in response to events on the panel's DOM node. It should
* not be called directly by user code.
*/
handleEvent(event: Event): void {
switch (event.type) {
case 'click':
this._evtClick(event as MouseEvent);
break;
case 'contextmenu':
this._evtClick(event as MouseEvent);
break;
default:
break;
}
}
/**
* Handle the `'click'` event for a code snippet options button.
*
* @param event - The DOM event sent to the widget
*/
protected _evtClick(event: MouseEvent): void {
const content = this.node.getElementsByClassName(
OPTIONS_CONTENT
)[0] as HTMLElement;
if (!content.contains(event.target as HTMLElement)) {
event.stopPropagation();
event.preventDefault();
this.reject();
}
}
/**
* Reject the current code snippet options with a default reject value.
*
* #### Notes
* Will be a no-op if the code snippet options is not shown.
*/
reject(): void {
if (!this._promise) {
return;
}
this._resolve();
}
/**
* Resolve a button item.
*/
private _resolve(): void {
// Prevent loopback.
const promise = this._promise;
if (!promise) {
this.dispose();
return;
}
this._promise = null;
ArrayExt.removeFirstOf(Private.launchQueue, promise.promise);
this.dispose();
promise.resolve();
}
/**
* Dispose of the resources used by the code snippet options.
*/
dispose(): void {
const promise = this._promise;
if (promise) {
this._promise = null;
promise.reject(void 0);
ArrayExt.removeFirstOf(Private.launchQueue, promise.promise);
}
super.dispose();
}
/**
* A message handler invoked on an `'after-attach'` message.
*/
protected onAfterAttach(msg: Message): void {
const node = this.node;
node.addEventListener('click', this, true);
node.addEventListener('contextmenu', this, true);
}
/**
* A message handler invoked on an `'after-detach'` message.
*/
protected onAfterDetach(msg: Message): void {
const node = this.node;
node.removeEventListener('click', this, true);
node.removeEventListener('contextmenu', this, true);
}
private _promise: PromiseDelegate<void> | null;
private _host: HTMLElement;
}
export namespace OptionsMessage {
/**
* The body input types.
*/
export type Body = Widget;
export interface IOptions {
/**
* The main body element for the code snippet options or a message to display.
* Defaults to an empty string.
*
* #### Notes
* If a widget is given as the body, it will be disposed after the
* code snippet options is resolved. If the widget has a `getValue()` method,
* the method will be called prior to disposal and the value
* will be provided as part of the code snippet options result.
* A string argument will be used as raw `textContent`.
* All `input` and `select` nodes will be wrapped and styled.
*/
body: Body;
/**
* The host element for the code snippet options. Defaults to `document.body`.
*/
host: HTMLElement;
/**
* An optional renderer for code snippet options items. Defaults to a shared
* default renderer.
*/
renderer: IRenderer;
}
export interface IRenderer {
/**
* Create the body of the code snippet options.
*
* @param value - The input value for the body.
*
* @returns A widget for the body.
*/
createBody(body: Body): Widget;
}
export class Renderer {
/**
* Create the body of the code snippet options.
*
* @param value - The input value for the body.
*
* @returns A widget for the body.
*/
createBody(value: Body): Widget {
let body: Widget;
if (typeof value === 'string') {
body = new Widget({ node: document.createElement('span') });
body.node.textContent = value;
} else if (value instanceof Widget) {
body = value;
} else {
body = ReactWidget.create(value) as Widget;
// Immediately update the body even though it has not yet attached in
// order to trigger a render of the DOM nodes from the React element.
MessageLoop.sendMessage(body, Widget.Msg.UpdateRequest);
}
body.addClass(OPTIONS_BODY);
return body;
}
}
/**
* The default renderer instance.
*/
export const defaultRenderer = new Renderer();
/**
* The code snippet options widget tracker.
*/
export const tracker = new WidgetTracker<OptionsMessage>({
namespace: '@jupyterlab/code_snippet:OptionsWidget',
});
}
/**
* The namespace for module private data.
*/
namespace Private {
/**
* The queue for launching code snippet optionss.
*/
export const launchQueue: Promise<void>[] = [];
}