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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
use crate::{
BaseDocument,
node::{TextBrush, TextInputData},
};
use blitz_traits::{
SmolStr,
events::{BlitzInputEvent, BlitzKeyEvent, DomEvent, DomEventData},
shell::ShellProvider,
};
use keyboard_types::{Key, Modifiers};
use markup5ever::local_name;
use parley::{FontContext, LayoutContext};
// TODO: support keypress events
enum GeneratedEvent {
Input,
Select,
Submit,
}
pub(super) enum KeyboardOrTextInputEvent {
KeyPress(BlitzKeyEvent),
AppleStandardKeyBinding(SmolStr),
}
pub(crate) fn handle_key_or_input_event<F: FnMut(DomEvent)>(
doc: &mut BaseDocument,
target: usize,
event: KeyboardOrTextInputEvent,
mut dispatch_event: F,
) {
if let KeyboardOrTextInputEvent::KeyPress(event) = &event {
if event.key == Key::Tab {
doc.focus_next_node();
return;
}
// Handle copy (Ctrl+C/Cmd+C) for text selection when no text input is focused
if event.state.is_pressed() {
let action_mod = event.modifiers.contains(ACTION_MOD);
if action_mod {
if let Key::Character(c) = &event.key {
if c.to_lowercase() == "c" {
// Check if we have a text selection (and no focused text input)
let has_focused_text_input = doc.focus_node_id.is_some_and(|id| {
doc.get_node(id)
.and_then(|n| n.element_data())
.is_some_and(|e| e.text_input_data().is_some())
});
if !has_focused_text_input {
if let Some(text) = doc.get_selected_text() {
let _ = doc.shell_provider.set_clipboard_text(text);
return;
}
}
}
}
}
}
}
if let Some(node_id) = doc.focus_node_id {
if target != node_id {
return;
}
let node = &mut doc.nodes[node_id];
let Some(element_data) = node.element_data_mut() else {
return;
};
if let Some(input_data) = element_data.text_input_data_mut() {
let generated_event = match event {
KeyboardOrTextInputEvent::KeyPress(blitz_key_event) => apply_keypress_event(
input_data,
&mut doc.font_ctx.lock().unwrap(),
&mut doc.layout_ctx,
&*doc.shell_provider,
blitz_key_event,
),
KeyboardOrTextInputEvent::AppleStandardKeyBinding(command) => {
apply_apple_standard_keybinding(
input_data,
&mut doc.font_ctx.lock().unwrap(),
&mut doc.layout_ctx,
&*doc.shell_provider,
&command,
)
}
};
if let Some(generated_event) = generated_event {
match generated_event {
GeneratedEvent::Input => {
let value = input_data.editor.raw_text().to_string();
dispatch_event(DomEvent::new(
node_id,
DomEventData::Input(BlitzInputEvent { value }),
));
doc.shell_provider.request_redraw();
}
GeneratedEvent::Select => {
doc.shell_provider.request_redraw();
}
GeneratedEvent::Submit => {
// TODO: Generate submit event that can be handled by script
implicit_form_submission(doc, target);
}
}
}
}
}
}
#[cfg(target_os = "macos")]
const ACTION_MOD: Modifiers = Modifiers::SUPER;
#[cfg(not(target_os = "macos"))]
const ACTION_MOD: Modifiers = Modifiers::CONTROL;
fn apply_keypress_event(
input_data: &mut TextInputData,
font_ctx: &mut FontContext,
layout_ctx: &mut LayoutContext<TextBrush>,
shell_provider: &dyn ShellProvider,
event: BlitzKeyEvent,
) -> Option<GeneratedEvent> {
// Do nothing if it is a keyup event
if !event.state.is_pressed() {
return None;
}
let mods = event.modifiers;
let shift = mods.contains(Modifiers::SHIFT);
let action_mod = mods.contains(ACTION_MOD);
let is_multiline = input_data.is_multiline;
let editor = &mut input_data.editor;
let mut driver = editor.driver(font_ctx, layout_ctx);
match event.key {
Key::Character(c) if action_mod && matches!(c.as_str(), "c" | "x" | "v") => {
match c.to_lowercase().as_str() {
"c" => {
if let Some(text) = driver.editor.selected_text() {
let _ = shell_provider.set_clipboard_text(text.to_owned());
}
}
"x" => {
if let Some(text) = driver.editor.selected_text() {
let _ = shell_provider.set_clipboard_text(text.to_owned());
driver.delete_selection()
}
}
"v" => {
let text = shell_provider.get_clipboard_text().unwrap_or_default();
driver.insert_or_replace_selection(&text)
}
_ => unreachable!(),
}
return Some(GeneratedEvent::Input);
}
Key::Character(c) if action_mod && matches!(c.to_lowercase().as_str(), "a") => {
if shift {
driver.collapse_selection()
} else {
driver.select_all()
}
return Some(GeneratedEvent::Select);
}
Key::ArrowLeft => {
if action_mod {
if shift {
driver.select_word_left()
} else {
driver.move_word_left()
}
} else if shift {
driver.select_left()
} else {
driver.move_left()
}
return Some(GeneratedEvent::Select);
}
Key::ArrowRight => {
if action_mod {
if shift {
driver.select_word_right()
} else {
driver.move_word_right()
}
} else if shift {
driver.select_right()
} else {
driver.move_right()
}
return Some(GeneratedEvent::Select);
}
Key::ArrowUp => {
if shift {
driver.select_up()
} else {
driver.move_up()
}
return Some(GeneratedEvent::Select);
}
Key::ArrowDown => {
if shift {
driver.select_down()
} else {
driver.move_down()
}
return Some(GeneratedEvent::Select);
}
Key::Home => {
if action_mod {
if shift {
driver.select_to_text_start()
} else {
driver.move_to_text_start()
}
} else if shift {
driver.select_to_line_start()
} else {
driver.move_to_line_start()
}
return Some(GeneratedEvent::Select);
}
Key::End => {
if action_mod {
if shift {
driver.select_to_text_end()
} else {
driver.move_to_text_end()
}
} else if shift {
driver.select_to_line_end()
} else {
driver.move_to_line_end()
}
return Some(GeneratedEvent::Select);
}
Key::Delete => {
if action_mod {
driver.delete_word()
} else {
driver.delete()
}
return Some(GeneratedEvent::Input);
}
// On macOS this is handled by the apple standard keybindings
#[cfg(not(target_os = "macos"))]
Key::Backspace => {
if action_mod {
driver.backdelete_word()
} else {
driver.backdelete()
}
return Some(GeneratedEvent::Input);
}
Key::Character(c) if c == "\n" => {
if is_multiline {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
} else {
return Some(GeneratedEvent::Submit);
}
}
Key::Enter => {
if is_multiline {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
} else {
return Some(GeneratedEvent::Submit);
}
}
Key::Character(s)
if !mods.contains(Modifiers::CONTROL) && !mods.contains(Modifiers::SUPER) =>
{
driver.insert_or_replace_selection(&s);
return Some(GeneratedEvent::Input);
}
_ => {}
};
None
}
fn apply_apple_standard_keybinding(
input_data: &mut TextInputData,
font_ctx: &mut FontContext,
layout_ctx: &mut LayoutContext<TextBrush>,
shell_provider: &dyn ShellProvider,
command: &str,
) -> Option<GeneratedEvent> {
let editor = &mut input_data.editor;
let mut driver = editor.driver(font_ctx, layout_ctx);
match command {
// Inserting Content
// Inserts a backtab character.
"insertBacktab:" => {}
// Inserts a container break, such as a new page break.
"insertContainerBreak:" => {}
// Inserts a double quotation mark without substituting a curly quotation mark.
"insertDoubleQuoteIgnoringSubstitution:" => {
driver.insert_or_replace_selection("\"");
return Some(GeneratedEvent::Input);
}
// Inserts a line break character.
"insertLineBreak:" => {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
}
// Inserts a newline character.
"insertNewline:" => {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
}
// Inserts a newline character without invoking the field editor’s normal handling to end editing.
"insertNewlineIgnoringFieldEditor:" => {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
}
// Inserts a paragraph separator.
"insertParagraphSeparator:" => {
driver.insert_or_replace_selection("\n");
return Some(GeneratedEvent::Input);
}
"insertSingleQuoteIgnoringSubstitution:" => {
driver.insert_or_replace_selection("'");
return Some(GeneratedEvent::Input);
}
// Inserts a tab character.
"insertTab:" | "insertTabIgnoringFieldEditor:" => {
// Ignore for now seeing as parley has poor support for laying out tabs
}
// Inserts the text you specify.
"insertText:" => {}
// Deleting Content
// Deletes content moving backward from the current insertion point.
// TODO: handle deleteBackwardByDecomposingPreviousCharacter separately
"deleteBackward:" | "deleteBackwardByDecomposingPreviousCharacter:" => {
driver.backdelete();
return Some(GeneratedEvent::Input);
}
"deleteForward:" => {
driver.delete();
return Some(GeneratedEvent::Input);
}
// Deletes content from the insertion point to the beginning of the current line.
"deleteToBeginningOfLine:" => {
if driver.editor.raw_selection().is_collapsed() {
driver.select_to_line_start();
}
driver.delete_selection();
return Some(GeneratedEvent::Input);
}
// Deletes content from the insertion point to the beginning of the current paragraph.
"deleteToEndOfLine:" => {
if driver.editor.raw_selection().is_collapsed() {
driver.select_to_line_end();
}
driver.delete_selection();
return Some(GeneratedEvent::Input);
}
"deleteToBeginningOfParagraph:" => {
if driver.editor.raw_selection().is_collapsed() {
driver.select_to_hard_line_start();
}
driver.delete_selection();
return Some(GeneratedEvent::Input);
}
// Deletes content from the insertion point to the end of the current line.
"deleteToEndOfParagraph:" => {
if driver.editor.raw_selection().is_collapsed() {
driver.select_to_hard_line_end();
}
driver.delete_selection();
return Some(GeneratedEvent::Input);
}
// Deletes content from the insertion point to the end of the current paragraph.
"deleteWordBackward:" => {
driver.backdelete_word();
return Some(GeneratedEvent::Input);
}
// Deletes the word preceding the current insertion point.
"deleteWordForward:" => {
driver.delete_word();
return Some(GeneratedEvent::Input);
}
// Deletes the current selection, placing it in a temporary buffer, such as the Clipboard.
"yank:" => {
if let Some(text) = driver.editor.selected_text() {
let _ = shell_provider.set_clipboard_text(text.to_owned());
driver.delete_selection();
return Some(GeneratedEvent::Input);
}
}
// Moving the Insertion Pointer
// Moves the insertion pointer backward in the current content.
"moveBackward:" => {
driver.move_left(); // TODO: Bidi-aware
return Some(GeneratedEvent::Select);
}
// Moves the insertion pointer down in the current content.
"moveDown:" => {
driver.move_down();
return Some(GeneratedEvent::Select);
}
// Moves the insertion pointer forward in the current content.
"moveForward:" => {
driver.move_right();
return Some(GeneratedEvent::Select);
} // TODO: Bidi-aware
// Moves the insertion pointer left in the current content.
"moveLeft:" => {
driver.move_left();
return Some(GeneratedEvent::Select);
}
// Moves the insertion pointer right in the current content.
"moveRight:" => {
driver.move_right();
return Some(GeneratedEvent::Select);
}
// Moves the insertion pointer up in the current content.
"moveUp:" => {
driver.move_up();
return Some(GeneratedEvent::Select);
}
// Modifying the Selection
// Extends the selection to include the content before the current selection.
"moveBackwardAndModifySelection:" => {
driver.select_left(); // TODO: Bidi-aware
return Some(GeneratedEvent::Select);
}
// Extends the selection to include the content below the current selection.
"moveDownAndModifySelection:" => {
driver.select_down();
return Some(GeneratedEvent::Select);
}
// Extends the selection to include the content after the current selection.
"moveForwardAndModifySelection:" => {
driver.select_right(); // TODO: Bidi-aware
return Some(GeneratedEvent::Select);
}
// Extends the selection to include the content to the left of the current selection.
"moveLeftAndModifySelection:" => {
driver.select_left();
return Some(GeneratedEvent::Select);
}
// Extends the selection to include the content to the right of the current selection.
"moveRightAndModifySelection:" => {
driver.select_right();
return Some(GeneratedEvent::Select);
}
// Extends the selection to include the content above the current selection.
"moveUpAndModifySelection:" => {
driver.select_up();
return Some(GeneratedEvent::Select);
}
// Changing the Selection
"selectAll:" => {
driver.select_all();
return Some(GeneratedEvent::Select);
}
"selectLine:" => {
driver.move_to_line_start();
driver.select_to_line_end();
return Some(GeneratedEvent::Select);
}
"selectParagraph:" => {
driver.move_to_hard_line_start();
driver.select_to_hard_line_end();
return Some(GeneratedEvent::Select);
}
"selectWord:" => {
// TODO
}
// Moving the Selection in Documents
"moveToBeginningOfDocument:" => {
driver.move_to_text_start();
return Some(GeneratedEvent::Select);
}
"moveToBeginningOfDocumentAndModifySelection:" => {
driver.select_to_text_start();
return Some(GeneratedEvent::Select);
}
"moveToEndOfDocument:" => {
driver.move_to_text_end();
return Some(GeneratedEvent::Select);
}
"moveToEndOfDocumentAndModifySelection:" => {
driver.move_to_text_end();
return Some(GeneratedEvent::Select);
}
// Moving the Selection in Paragraphs
"moveParagraphBackwardAndModifySelection:" => {}
"moveParagraphForwardAndModifySelection:" => {}
"moveToBeginningOfParagraph:" => {
driver.move_to_hard_line_start();
return Some(GeneratedEvent::Select);
}
"moveToBeginningOfParagraphAndModifySelection:" => {
driver.select_to_hard_line_start();
return Some(GeneratedEvent::Select);
}
"moveToEndOfParagraph:" => {
driver.move_to_hard_line_end();
return Some(GeneratedEvent::Select);
}
"moveToEndOfParagraphAndModifySelection:" => {
driver.select_to_hard_line_end();
return Some(GeneratedEvent::Select);
}
// Moving the Selection in Lines of Text
"moveToBeginningOfLine:" => {
driver.move_to_line_start();
return Some(GeneratedEvent::Select);
}
"moveToBeginningOfLineAndModifySelection:" => {
driver.select_to_line_start();
return Some(GeneratedEvent::Select);
}
"moveToEndOfLine:" => {
driver.move_to_line_end();
return Some(GeneratedEvent::Select);
}
"moveToEndOfLineAndModifySelection:" => {
driver.select_to_line_end();
return Some(GeneratedEvent::Select);
}
"moveToLeftEndOfLine:" => {
driver.move_to_text_start();
return Some(GeneratedEvent::Select);
}
"moveToLeftEndOfLineAndModifySelection:" => {
driver.select_to_line_start();
return Some(GeneratedEvent::Select);
}
"moveToRightEndOfLine:" => {
driver.move_to_line_end();
return Some(GeneratedEvent::Select);
}
"moveToRightEndOfLineAndModifySelection:" => {
driver.select_to_line_end();
return Some(GeneratedEvent::Select);
}
// Moving the Selection by Word Boundaries
"moveWordBackward:" => {
driver.move_word_left();
return Some(GeneratedEvent::Select);
}
"moveWordBackwardAndModifySelection:" => {
driver.select_word_left();
return Some(GeneratedEvent::Select);
}
"moveWordForward:" => {
driver.move_word_right();
return Some(GeneratedEvent::Select);
}
"moveWordForwardAndModifySelection:" => {
driver.select_word_right();
return Some(GeneratedEvent::Select);
}
"moveWordLeft:" => {
driver.move_word_left();
return Some(GeneratedEvent::Select);
}
"moveWordLeftAndModifySelection:" => {
driver.select_word_left();
return Some(GeneratedEvent::Select);
}
"moveWordRight:" => {
driver.move_word_right();
return Some(GeneratedEvent::Select);
}
"moveWordRightAndModifySelection:" => {
driver.select_word_right();
return Some(GeneratedEvent::Select);
}
// Scrolling Content
// Scrolls the content down by a page.
"scrollPageDown:" => {}
// Scrolls the content up by a page.
"scrollPageUp:" => {}
// Scrolls the content down by a line.
"scrollLineDown:" => {}
// Scrolls the content up by a line.
"scrollLineUp:" => {}
// Scrolls the content to the beginning of the document.
"scrollToBeginningOfDocument:" => {}
// Scrolls the content to the end of the document.
"scrollToEndOfDocument:" => {}
// Moves the visible content region down by a page.
"pageDown:" => {}
// Moves the visible content region up by a page.
"pageUp:" => {}
// Moves the visible content region down by a page, and extends the current selection.
"pageDownAndModifySelection:" => {}
// Moves the visible content region up by a page, and extends the current selection.
"pageUpAndModifySelection:" => {}
// Moves the visible content region so the current selection is visually centered.
"centerSelectionInVisibleArea:" => {}
// Transposing Elements
// Transposes the content around the current selection.
"transpose:" => {}
// Transposes the words around the current selection.
"transposeWords:" => {}
// Indenting Content
// Indents the content at the current selection.
"indent:" => {}
// Canceling Operations
// Cancels the current operation.
"cancelOperation:" => {}
// Supporting QuickLook
// Invokes QuickLook to preview the current selection.
"quickLookPreviewItems:" => {}
// Supporting Writing Directions
"makeBaseWritingDirectionLeftToRight:" => {}
"makeBaseWritingDirectionNatural:" => {}
"makeBaseWritingDirectionRightToLeft:" => {}
"makeTextWritingDirectionLeftToRight:" => {}
"makeTextWritingDirectionNatural:" => {}
"makeTextWritingDirectionRightToLeft:" => {}
// Changing Capitalization
"capitalizeWord:" => {}
"changeCaseOfLetter:" => {}
"lowercaseWord:" => {}
"uppercaseWord:" => {}
// Supporting Marked Selections
"setMark:" => {}
"selectToMark:" => {}
"deleteToMark:" => {}
"swapWithMark:" => {}
// Supporting Autocomplete
"complete:" => {}
// Instance Methods
"showContextMenuForSelection:" => {}
// Unknown command
_ => {}
};
None
}
/// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#field-that-blocks-implicit-submission
fn implicit_form_submission(doc: &BaseDocument, text_target: usize) {
let Some(form_owner_id) = doc.controls_to_form.get(&text_target) else {
return;
};
if doc
.controls_to_form
.iter()
.filter(|(_control_id, form_id)| *form_id == form_owner_id)
.filter_map(|(control_id, _)| doc.nodes[*control_id].element_data())
.filter(|element_data| {
element_data.attr(local_name!("type")).is_some_and(|t| {
matches!(
t,
"text"
| "search"
| "email"
| "url"
| "tel"
| "password"
| "date"
| "month"
| "week"
| "time"
| "datetime-local"
| "number"
)
})
})
.count()
> 1
{
return;
}
doc.submit_form(*form_owner_id, *form_owner_id);
}