Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | 1x 124x 124x 124x 124x 19x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 1x 105x 105x 105x 105x 105x 105x 105x 105x 420x 420x 315x 210x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 804x 804x 1x 315x 315x 315x 315x 315x 9x 9x 9x 9x 9x 315x 1x 2x 2x 2x 2x 112x 1x 1x 1x 1x 1x 99x 99x 1x 1x 1x 1x 1x 6x 6x 6x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1147x 1147x 1147x 1147x 1147x 1147x 1147x 3027x 3027x 3027x 3027x 3027x 3027x 12571x 3027x 3027x 1147x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 3x 3x 9x 9x 9x 3x 3x 3x 21x 18x 18x 18x 9x 3x 9x 9x 44x 44x 6x 6x 38x 38x 38x 38x 15x 15x 15x 9x 9x 9x 9x 9x 9x 6x 9x 9x 3x 3x 2x 1x 1x 3x 1x 9x 1x 17x 17x 17x 1x 1x 1x 8x 8x 8x 8x 8x 8x 8x 8x 8x 600x 8x 8x 8x 8x 8x 8x 3x 5x 5x 5x 5x 5x 8x 8x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1420x 1x 1530x 110x 110x 110x 1420x 1420x 1420x 1420x 1042x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 1x 1x 1x 1x 1x 1x 1x 8x 1x 2x 1x 109x 1x 3x 1x 328x 328x 328x 328x 328x 328x 328x 107x 328x 1x 804x 804x 804x 804x 804x 107x 697x 105x 804x 804x 804x 804x 804x 804x 212x 212x 1x 1x 1x 1x 81x 81x 16x 18x 1x 66x 455x 455x 455x 455x 455x 455x 1x 17x 46x 46x 46x 1x 45x 45x 46x 46x 1x 37x 145x 145x 1x 144x 144x 144x 145x 145x 1x 21x 7x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x | import Doc from './doc.js';
import Engine from './engine.js';
import Keyboard from './keyboard.js';
import Mousetrap from '../lib/mousetrap/mousetrap.min.js';
import Settings from './settings.js';
import Symbols from './symbols.js';
import Utils from './utils.js';
import katex from '../lib/katex/katex-modified.min.js';
/**
@class
@classdesc An instance of Guppy. Calling `Guppy(id)` with the ID of
an existing editor will simply return that instance.
@param {string|Node} element - The string id or the Dom Node of the
element that should be converted to an editor.
@constructor
*/
var Guppy = function(el){
if(!Guppy.initialised) Guppy.init();
// Get the element and try to get its corresponding instance and settings
var element = typeof el === 'string' ? document.getElementById(el) : el;
var instance = Guppy.instances.get(element);
if(instance){
return instance;
}
var self = this;
// Store a record of this instance in case somebody wants it again
Guppy.instances.set(element, this)
var tab_idx = Guppy.max_tabIndex || 0;
element.tabIndex = tab_idx;
Guppy.max_tabIndex = tab_idx+1;
this.editor_active = true;
//this.empty_content = settings['empty_content'] || "\\red{[?]}"
this.editor = element;
this.blacklist = [];
this.autoreplace = true;
/** @member {Engine} */
this.engine = new Engine(self);
this.temp_cursor = {"node":null,"caret":0}
this.editor.addEventListener("keydown",Guppy.key_down, false);
this.editor.addEventListener("keyup",Guppy.key_up, false);
this.editor.addEventListener("focus", function() { Guppy.kb.alt_down = false; }, false);
Iif(!Settings.config.settings["buttons"])
this.configure("buttons",["settings","controls","symbols"]);
else
this.set_buttons();
this.render(true);
this.deactivate();
this.recompute_locations_paths();
}
Guppy.prototype.set_buttons = function(){
var buttons = this.engine.setting('buttons');
var self = this;
Iif(!buttons || buttons.length == 0) return;
// Remove old button div if applicable
Iif(this.buttons_div){
this.buttons_div.parentElement.removeChild(this.buttons_div);
delete this.buttons_div;
}
this.buttons_div = document.createElement("div");
this.buttons_div.setAttribute("class","guppy_buttons");
Eif(buttons){
for(var i = 0; i < buttons.length; i++){
Iif(buttons[i] == "osk" && Settings.osk){
Guppy.make_button("keyboard", this.buttons_div, function() {
if(Settings.osk.guppy == self){ Settings.osk.detach(self); }
else{ Settings.osk.attach(self); }});
}
else if(buttons[i] == "settings") Guppy.make_button("settings", this.buttons_div, function(){ Settings.toggle("settings", self); });
else if(buttons[i] == "symbols") Guppy.make_button("symbols", this.buttons_div, function(){ Settings.toggle("symbols", self); });
else if(buttons[i] == "controls") Guppy.make_button("help", this.buttons_div, function(){ Settings.toggle("controls", self); });
}
}
}
Guppy.instances = new Map()
Guppy.Doc = Doc;
Guppy.active_guppy = null;
Guppy.Symbols = Symbols;
Guppy.Mousetrap = Mousetrap;
Guppy.katex = katex;
Guppy.raw_input_target = null;
Guppy.raw_input = document.createElement("input");
Guppy.raw_input.setAttribute("type","text");
Guppy.raw_input.setAttribute("class","guppy-raw");
Guppy.raw_input.style = "position:absolute;top:0;left:0;display:none;";
Guppy.raw_input.addEventListener("keyup", function(e){
var g = Guppy.raw_input_target;
if(!g) return;
if(e.keyCode == 13){ // enter
g.activate();
var s = Guppy.raw_input.value;
s = s.normalize();
for(var c of s){
g.engine.insert_utf8(c.codePointAt(0));
}
Guppy.raw_input.value = "";
Guppy.raw_input.style.display="none";
g.render(true);
Guppy.hide_raw_input();
g.engine.fire_event("focus",{"focused":true});
}
else if(e.keyCode == 27){ // esc
Guppy.hide_raw_input();
g.engine.fire_event("focus",{"focused":true});
}
});
Guppy.get_raw_input = function(){
var g = Guppy.active_guppy;
if(!g) return;
Guppy.raw_input_target = g;
var r = g.editor.getElementsByClassName("cursor")[0].getBoundingClientRect();
var height = r.bottom-r.top;
Guppy.raw_input.style.top = (r.bottom+document.documentElement.scrollTop-height/2) + "px";
Guppy.raw_input.style.left = (r.left+document.documentElement.scrollLeft) + "px";
Guppy.raw_input.style.display = "block";
Guppy.raw_input.focus();
if(Guppy.OSK) Guppy.OSK.detach();
}
Guppy.hide_raw_input = function(){
Guppy.raw_input_target = null;
Guppy.raw_input.style.display = "none";
}
Guppy.make_button = function(cls, parent, cb){
var b = document.createElement("div");
b.setAttribute("class","guppy-button "+cls);
parent.appendChild(b);
Eif(cb){
b.addEventListener("mouseup", function(e){
cb(e);
Eif(e.cancelBubble!=null) e.cancelBubble = true;
Eif(e.stopPropagation) e.stopPropagation();
e.preventDefault();
return false;
}, false);
}
return b;
}
/**
Add a symbol to all instances of the editor
@memberof Guppy
@param {string} name - The name of the symbol to add. This is
also the string that will be autoreplaced with the symbol.
@param {Object} symbol - If `template` is present, this is just
the template arguments. Otherwise, it is the complete symbol
specification
@param {Object} symbol.output - Key/value pairs where the key is
the output type (such as "latex" or "asciimath") and the value is
the string by which the output will be rendered in that format.
In this string, {$n} will be substituted with the rendering of the
nth argument. If the nth argument is a d-dimensional list, then
the argument should be specified as {$n{sep_1}{sep_2}...{sep_d}}
where sep_i will be the separator used to separate entries in the
ith dimension. Note that keys are not necessary to describe the
AST or plain-text outputs.
@param {Array} symbol.keys - A list of strings representing
keystrokes that can be used to trigger the insertion of this
symbol. For example, `"^" or `"shift+up"` for the `exponential`
symbol.
@param {Object} symbol.attrs - A specification of the attributes
of the symbol
@param {string} symbol.attrs.type - A longer description of the
symbol type, suitable for searching and text rendering.
@param {string} symbol.attrs.group - The group in which to place
this symbol (for OSK)
@param {Object} [symbol.input] - If the symbol should subsume part
of the existing content of the editor (as in, for example, the
case of exponent), this object will contain the (1-based) index of
the argument in which that content should be placed.
@param {Object} [symbol.ast] - Modifies the default construction
of an entry in the AST for this symbol.
@param {Object} [symbol.ast.type="operator"] - The type of symbol
for AST purposes. Can be "name" (meaning this symbol represents
a variable, as in the case of pi), "number" (meaning this symbol
is a literal value), "operator" (meaning this symbol is a
function or otherwise takes arguments (as in cos or +), or
"pass" (meaning this symbol's first argument will be used as its
AST entry, as in the case of brackets/parentheses).
@param {Object[]} [symbol.args] - A list of specifications, one
for each argument
@param {string} [symbol.args.down] - The index of the argument
to jump to when the "down" arrow is pressed in this argument
@param {string} [symbol.args.up] - The index of the argument
to jump to when the "up" arrow is pressed in this argument
@param {string} [symbol.args.small="no"] - "yes" if the symbol is
small (as in an exponent)
@param {string} [symbol.args.name] - The name of this particular
argument (suitable for searching)
@param {string} [symbol.args.bracket="no"] - "yes" if brackets
should automatically be rendered around this argument when they
might be needed to disambiguate.
@param {string} [symbol.args.delete] - If present, when the
"backspace" key is pressed at the beginning of this argument,
the symbol will be deleted and replaced with the argument whose
index is specified in this parameter. For example, the second
argument of an exponent has this value set to "1", so that when
the exponent is deleted, the base remains.
@param {string} [symbol.args.mode="math"] - Change the mode of an
argument. Can be "text" (meaning the argument will be editable
as and rendered as plain text), "symbol" (meaning the argument
will specify a symbol name and will complete to an actual symbol
when this is entered--only used for the backslash symbol), or
"math" (the default)
@param {string} [symbol.args.is_bracket="no"] - Set to "yes" if
the symbol is itself a bracket/parenthesis equivalent.
@param {string} [template] - The name of the template to use
*/
Guppy.add_global_symbol = function(name, symbol, template){
Eif(template){
symbol = Symbols.make_template_symbol(template, name, symbol);
}
Symbols.symbols[name] = JSON.parse(JSON.stringify(symbol));
for(var [, instance] of Guppy.instances){
instance.engine.symbols[name] = JSON.parse(JSON.stringify(symbol));
}
}
/**
Add a template symbol to all instances of the editor
@memberof Guppy
@param {string} name - The name of the template to add.
@param {Object} template - A template dictionary. This is the same
as a symbol dictionary, but it can have parameters of the form
{$myparam} as a substring of any dictionary value, which will be
replaced with the parameter's value when generating symbols from
this template.
*/
Guppy.add_template = function(name, template){
Symbols.templates[name] = JSON.parse(JSON.stringify(template));
}
/**
Remove a symbol from all instances of the editor
@memberof Guppy
@param {string} name - The name of the symbol to remove
*/
Guppy.remove_global_symbol = function(name){
Eif(Symbols.symbols[name]){
delete Symbols.symbols[name]
for(var [, instance] of Guppy.instances){
Eif(instance.engine.symbols[name]){
delete instance.engine.symbols[name];
}
}
}
}
/**
@param {string} name - The name of the setting to configure. Can be "xml_content", "autoreplace", "blank_caret", "empty_content", "blacklist", "buttons", or "cliptype"
@param {Object} val - The value associated with the named setting:
* "xml_content": An XML string with which to initialise the editor's state. (Defaults to "<m><e/></m>".)
* "autoreplace": A string describing how to autoreplace typed text with symbols:
* "auto" (default): Replace symbls greedily
* "whole": Replace only entire tokens
* "delay": Same as "whole", but with 200ms delay before replacement
* "blank_caret": A LaTeX string that specifies what the caret should look like when in a blank spot. If `""`, the default caret is used.
* "empty_content": A LaTeX string that will be displayed when the editor is both inactive and contains no content. (Defaults to "\color{red}{[?]}")
* "blacklist": A list of string symbol names, corresponding to symbols that should not be allowed in this instance of the editor.
* "buttons": A list of strings corresponding to the helper buttons that should be displayed in the editor; should be a subset of ["osk","settings","symbols","controls"]]
* "cliptype": A string describing what gets placed on the system clipboard when content is copied from the editor.
* "text": Use plain-text editor content
* "latex": Use LaTeX rendering of editor content
*/
Guppy.configure = function(name, val){
if(name in Settings.settings_options && Settings.settings_options[name].indexOf(val) == -1){
throw "Valid values for " + name + " are " + JSON.stringify(Settings.settings_options[name]);
}
Settings.config.settings[name] = val;
}
/**
@param {string} name - The name of the setting to configure. Can be "xml_content", "autoreplace", "blank_caret", "empty_content", "blacklist", "buttons", or "cliptype"
@param {Object} val - The value associated with the named setting:
"xml_content": An XML string with which to initialise the editor's state. (Defaults to "<m><e/></m>".)
"autoreplace": A string describing how to autoreplace typed text with symbols:
"auto" (default): Replace symbls greedily
"whole": Replace only entire tokens
"delay": Same as "whole", but with 200ms delay before replacement
"blank_caret": A LaTeX string that specifies what the caret should look like when in a blank spot. If `""`, the default caret is used.
"empty_content": A LaTeX string that will be displayed when the editor is both inactive and contains no content. (Defaults to "\color{red}{[?]}")
"blacklist": A list of string symbol names, corresponding to symbols that should not be allowed in this instance of the editor.
"buttons": A list of strings corresponding to the helper buttons that should be displayed in the editor; should be a subset of ["osk","settings","symbols","controls"]]
"cliptype": A string describing what gets placed on the system clipboard when content is copied from the editor.
"text": Use plain-text editor content
"latex": Use LaTeX rendering of editor content
*/
Guppy.prototype.configure = function(name, val){
if(name in Settings.settings_options && Settings.settings_options[name].indexOf(val) == -1){
throw "Valid values for " + name + " are " + JSON.stringify(Settings.config.options[name]);
}
this.engine.settings[name] = val;
if(name == 'buttons') this.set_buttons();
this.render(true);
}
/**
Render all guppy documents on the page.
@param {string} type - The type of content to render
@param {string} [delim] - The string to delimit mathematical symbols
@param {string} [root_node] - The DOM Element object within which to do the rendering
@memberof Guppy
*/
Guppy.render_all = function(t, delim, root_node){
if(!Guppy.initialised) Guppy.init();
Doc.render_all(t, delim, root_node)
}
/**
@param {string} name - The name of an event. Can be:
* change - Called when the editor's content changes. Argument will be a dictionary with keys `old` and `new` containing the old and new documents, respectively.
* left_end - Called when the cursor is at the left-most point and a command is received to move the cursor to the left (e.g., via the left arrow key). Argument will be null.
* right_end - Called when the cursor is at the right-most point and a command is received to move the cursor to the right (e.g., via the right arrow key). Argument will be null.
* done - Called when the enter key is pressed in the editor.
* completion - Called when the editor outputs tab completion options. Argument is a dictionary with the key `candidates`, a list of the options for tab-completion.
* debug - Called when the editor outputs some debug information. Argument is a dictionary with the key `message`.
* error - Called when the editor receives an error. Argument is a dictionary with the key `message`.
* focus - Called when the editor is focused or unfocused. Argument will have a single key `focused` which will be `true` or `false` according to whether the editor is newly focused or newly unfocused (respectively).
@param {function} handler - The function that will be called to handle the given event
*/
Guppy.prototype.event = function(name, handler){
if(Settings.config.valid_events.indexOf(name) == -1) {
throw "Valid events are " + JSON.stringify(Settings.config.valid_events);
}
if(name == "focus" && Settings.osk) {
var f = Settings.config.events["focus"];
this.engine.events["focus"] = function(e){
f(e);
handler(e);
if(e.focused) Settings.osk.attach(e.target);
else Settings.osk.detach(e.target);
};
}
else {
this.engine.events[name] = handler;
}
}
/**
@param {string} name - The name of an event. Can be:
* change - Called when the editor's content changes. Argument will be a dictionary with keys `old` and `new` containing the old and new documents, respectively.
* left_end - Called when the cursor is at the left-most point and a command is received to move the cursor to the left (e.g., via the left arrow key). Argument will be null.
* right_end - Called when the cursor is at the right-most point and a command is received to move the cursor to the right (e.g., via the right arrow key). Argument will be null.
* done - Called when the enter key is pressed in the editor.
* completion - Called when the editor outputs tab completion options. Argument is a dictionary with the key `candidates`, a list of the options for tab-completion.
* debug - Called when the editor outputs some debug information. Argument is a dictionary with the key `message`.
* error - Called when the editor receives an error. Argument is a dictionary with the key `message`.
* focus - Called when the editor is focused or unfocused. Argument will have a single key `focused` which will be `true` or `false` according to whether the editor is newly focused or newly unfocused (respectively).
@param {function} handler - The function that will be called to handle the given event
*/
Guppy.event = function(name, handler){
Iif(Settings.config.valid_events.indexOf(name) == -1) {
throw "Valid events are " + JSON.stringify(Settings.config.valid_events);
}
Iif(name == "focus" && Settings.osk) {
Settings.config.events["focus"] = function(e){
handler(e);
if(e.focused) Settings.osk.attach(e.target);
else Settings.osk.detach(e.target);
};
}
else {
Settings.config.events[name] = handler;
}
}
/**
@param {GuppyOSK} [osk] - A GuppyOSK object to use for the on-screen keyboard if one is desired
*/
Guppy.use_osk = function(osk){
Guppy.OSK = osk;
Settings.osk = osk;
if(osk.config.attach == "focus"){
var f = Settings.config.events["focus"];
Settings.config.events["focus"] = function(e){
if(f) f(e);
if(e.focused) osk.attach(e.target);
else osk.detach(e.target);
};
}
}
Guppy.prototype.is_changed = function(){
var bb = this.editor.getElementsByClassName("katex")[0];
Iif(!bb) return;
var rect = bb.getBoundingClientRect();
var ans = null;
Iif(this.bounding_box)
ans = this.bounding_box.top != rect.top || this.bounding_box.bottom != rect.bottom || this.bounding_box.right != rect.right || this.bounding_box.left != rect.left;
else
ans = true;
this.bounding_box = rect;
return ans;
}
Guppy.prototype.recompute_locations_paths = function(){
var ans = [];
var bb = this.editor.getElementsByClassName("katex")[0];
Iif(!bb) return;
var rect = bb.getBoundingClientRect();
ans.push({'path':'all',
'top':rect.top,
'bottom':rect.bottom,
'left':rect.left,
'right':rect.right});
var elts = this.editor.getElementsByClassName("guppy_elt");
for(var i = 0; i < elts.length; i++){
var elt = elts[i];
Iif(elt.nodeName == "mstyle") continue;
rect = elt.getBoundingClientRect();
Iif(rect.top == 0 && rect.bottom == 0 && rect.left == 0 && rect.right == 0) continue;
var cl = elt.classList;
for(var j = 0; j < cl.length; j++){
if(cl[j].indexOf("guppy_loc") == 0){
ans.push({'path':cl[j],
'top':rect.top,
'bottom':rect.bottom,
'left':rect.left,
'right':rect.right,
'mid_x':(rect.left+rect.right)/2,
'mid_y':(rect.bottom+rect.top)/2,
'blank':(' '+elt.className+' ').indexOf(' guppy_blank ') >= 0});
break;
}
}
}
this.boxes = ans;
}
Guppy.get_loc = function(x,y,current_node,current_caret){
var g = Guppy.active_guppy;
var min_dist = -1;
var mid_dist = 0;
var pos = "";
var opt = null;
var cur = null;
var car = null;
// check if we go to first or last element
var bb = g.editor.getElementsByClassName("katex")[0];
Iif(!bb) return;
if(current_node){
var current_path = Utils.path_to(current_node);
var current_pos = parseInt(current_path.substring(current_path.lastIndexOf("e")+1));
}
var boxes = g.boxes;
Iif(!boxes) return;
if(current_node){
current_path = current_path.replace(/e[0-9]+$/,"e");
var boxes2 = [];
for(var i = 0; i < boxes.length; i++){
if(boxes[i].path == "all") continue;
var loc = boxes[i].path.substring(0,boxes[i].path.lastIndexOf("_"));
loc = loc.replace(/e[0-9]+$/,"e");
if(loc == current_path){
boxes2.push(boxes[i]);
}
}
boxes = boxes2;
}
Iif(!boxes) return;
for(var j = 0; j < boxes.length; j++){
var box = boxes[j];
if(box.path == "all"){
Eif(!opt) opt = {'path':'guppy_loc_m_e1_0'};
continue;
}
var xdist = Math.max(box.left - x, x - box.right, 0)
var ydist = Math.max(box.top - y, y - box.bottom, 0)
var dist = Math.sqrt(xdist*xdist + ydist*ydist);
if(min_dist == -1 || dist < min_dist){
min_dist = dist;
mid_dist = x - box.mid_x;
opt = box;
}
}
loc = opt.path.substring("guppy_loc".length);
loc = loc.replace(/_/g,"/");
loc = loc.replace(/([0-9]+)(?=.*?\/)/g,"[$1]");
cur = g.engine.doc.xpath_node(loc.substring(0,loc.lastIndexOf("/")), g.engine.doc.root());
car = parseInt(loc.substring(loc.lastIndexOf("/")+1));
// Check if we want the cursor before or after the element
if(mid_dist > 0 && !(opt.blank)){
car++;
}
var ans = {"current":cur,"caret":car,"pos":pos};
if(current_node && opt){
var opt_pos = parseInt(opt.path.substring(opt.path.lastIndexOf("e")+1,opt.path.lastIndexOf("_")));
if(opt_pos < current_pos) pos = "left";
else if(opt_pos > current_pos) pos = "right";
else Iif(car < current_caret) pos = "left";
else Iif(car > current_caret) pos = "right";
if(pos) ans['pos'] = pos;
else ans['pos'] = "none";
}
return ans;
}
Guppy.mouse_up = function(){
Guppy.kb.is_mouse_down = false;
var g = Guppy.active_guppy;
Eif(g) g.render(true);
}
Guppy.touch_start = function(e){
var touchobj = e.changedTouches[0];
var n = touchobj.target;
while(n != null){
var instance = Guppy.instances.get(n);
if(instance){
e.preventDefault();
var prev_active = Guppy.active_guppy;
for(var [element, gup] of Guppy.instances){
if(element !== n) gup.deactivate();
else gup.activate();
}
var g = Guppy.active_guppy;
var b = Guppy.active_guppy.engine;
g.space_caret = 0;
if(prev_active == g){
var loc = Guppy.get_loc(touchobj.clientX,touchobj.clientY);
if(!loc) return;
b.current = loc.current;
b.caret = loc.caret;
b.sel_status = Engine.SEL_NONE;
g.render(true);
}
return;
}
if(n.classList && n.classList.contains("guppy_osk")){
return;
}
n = n.parentNode;
}
}
Guppy.touch_move = function(e){
var touchobj = e.changedTouches[0];
var g = Guppy.active_guppy;
if(!g) return;
var n = touchobj.target;
while(n != null){
var instance = Guppy.instances.get(n);
if(instance == g){
g.select_to(touchobj.clientX,touchobj.clientY, true);
g.render(g.is_changed());
}
n = n.parentNode;
}
}
Guppy.mouse_down = function(e){
Iif(e.target.getAttribute("class") == "guppy-button") return;
var n = e.target;
Guppy.kb.is_mouse_down = true;
while(n != null){
var instance = Guppy.instances.get(n);
Eif(instance){
e.preventDefault();
var prev_active = Guppy.active_guppy;
for(var [element, gup] of Guppy.instances){
if(element !== n) gup.deactivate();
else gup.activate();
}
var g = Guppy.active_guppy;
var b = Guppy.active_guppy.engine;
g.space_caret = 0;
Eif(prev_active == g){
if(e.shiftKey){
g.select_to(e.clientX, e.clientY, true);
}
else {
var loc = Guppy.get_loc(e.clientX,e.clientY);
Iif(!loc) return;
b.current = loc.current;
b.caret = loc.caret;
b.sel_status = Engine.SEL_NONE;
}
g.render(true);
}
return;
}
if(n.classList && n.classList.contains("guppy_osk")){
return;
}
n = n.parentNode;
}
Guppy.active_guppy = null;
for(var [, gup2] of Guppy.instances){
gup2.deactivate();
}
}
Guppy.mouse_move = function(e){
var g = Guppy.active_guppy;
Iif(!g) return;
Eif(!Guppy.kb.is_mouse_down){
var bb = g.editor;
var rect = bb.getBoundingClientRect();
Iif((e.clientX < rect.left || e.clientX > rect.right) || (e.clientY > rect.bottom || e.clientY < rect.top)){
g.temp_cursor = {"node":null,"caret":0};
}
else{
var loc = Guppy.get_loc(e.clientX,e.clientY);
Iif(!loc) return;
g.temp_cursor = {"node":loc.current,"caret":loc.caret};
}
g.render(g.is_changed());
}
else{
g.select_to(e.clientX,e.clientY, true);
g.render(g.is_changed());
}
}
Guppy.prototype.select_to = function(x, y, mouse){
var sel_caret = this.engine.caret;
var sel_cursor = this.engine.current;
Iif(this.engine.sel_status == Engine.SEL_CURSOR_AT_START){
sel_cursor = this.engine.sel_end.node;
sel_caret = this.engine.sel_end.caret;
}
else Iif(this.engine.sel_status == Engine.SEL_CURSOR_AT_END){
sel_cursor = this.engine.sel_start.node;
sel_caret = this.engine.sel_start.caret;
}
var loc = Guppy.get_loc(x,y,sel_cursor,sel_caret);
Iif(!loc) return;
this.engine.select_to(loc, sel_cursor, sel_caret, mouse);
}
window.addEventListener("touchstart",Guppy.touch_start, true);
window.addEventListener("touchmove",Guppy.touch_move, true);
window.addEventListener("mousedown",Guppy.mouse_down, true);
window.addEventListener("mouseup",Guppy.mouse_up, true);
window.addEventListener("mousemove",Guppy.mouse_move, false);
Guppy.prototype.render_node = function(t){
// All the interesting work is done by transform. This function just adds in the cursor and selection-start cursor
var output = "";
Eif(t == "render"){
var root = this.engine.doc.root();
this.engine.add_paths(root,"m");
this.engine.temp_cursor = this.temp_cursor;
this.engine.add_classes_cursors(root);
this.engine.current.setAttribute("current","yes");
if(this.temp_cursor.node) this.temp_cursor.node.setAttribute("temp","yes");
output = this.engine.get_content("latex",true);
this.engine.remove_cursors_classes(root);
output = output.replace(new RegExp('&','g'), '&');
return output;
}
else{
output = this.engine.get_content(t);
}
return output
}
/**
Render the document
@memberof Guppy
@param {boolean} [updated=false] - Whether there have been visible
changes to the document (i.e. that affect the positions of
elements)
*/
Guppy.prototype.render = function(updated){
if(!this.editor_active && this.engine.doc.is_blank()){
katex.render(this.engine.setting("empty_content"),this.editor);
Eif(this.buttons_div) this.editor.appendChild(this.buttons_div);
return;
}
var tex = this.render_node("render");
katex.render(tex,this.editor);
Eif(this.buttons_div) this.editor.appendChild(this.buttons_div);
if(updated){
this.recompute_locations_paths();
}
}
/**
Get the content of the editor as LaTeX
@memberof Guppy
*/
Guppy.prototype.latex = function(){
return this.engine.get_content("latex");
}
/**
Get the content of the editor as XML
@memberof Guppy
*/
Guppy.prototype.xml = function(){
return this.engine.get_content("xml");
}
/**
Get the content of the editor as a syntax tree, serialised using JSON
@memberof Guppy
*/
Guppy.prototype.syntax_tree = function(){
return this.engine.get_content("ast");
}
/**
Get the content of the editor as a list of equations, serialised
using JSON. For example, `x < y = z` will be returned as `[["<", [["var", "x"], ["var", "y"]]],["=", [["var", "y"], ["var", "z"]]]]
@memberof Guppy
*/
Guppy.prototype.equations = function(){
return this.engine.get_content("eqns");
}
/**
Get the content of the editor in a parseable text format.
@memberof Guppy
*/
Guppy.prototype.text = function(){
return this.engine.get_content("text");
}
/**
Get the content of the editor in AsciiMath.
@memberof Guppy
*/
Guppy.prototype.asciimath = function(){
return this.engine.get_content("asciimath");
}
/**
Get the Doc object representing the editor's contents.
@memberof Guppy
*/
Guppy.prototype.doc = function(){
return this.engine.doc;
}
/**
Get the content of the editor as a Javascript function, with
user-supplied interpretations of the various symbols. If not
supplied, default interpretations will be given for the following
symbols: `*,+,/,-,^,sqrt,sin,cos,tan,log`
@param {Object} [evaluators] - An object with a key for each
possible symbol type ("exponential", "integral", etc.)
whose values are functions. These functions take in a single
argument, `args`, which is an array of that symbol's arguments,
and should return a function that takes in an object argument
`vars`. In this inner function, to compute e.g. the sum of the
first and second arguments, you would do
`args[0](vars)+args[1](vars)`. This function should return the
result of that symbol's operation.
@returns {function(Object)} - Returns a function that takes in an
object with a key for each variable in the expression and whose
values are the values that will be passed in for those variables.
In addition, this function is augmented with a `vars` member which
is a list of the variables that appear in the expression.
@memberof Guppy
*/
Guppy.prototype.func = function(evaluators){
var res = this.engine.get_content("function", evaluators);
var f = res['function'];
f.vars = res.vars;
return f;
}
/**
Recursively evaluate the syntax tree of the editor's contents using specified functions.
@param {Object} [evaluators] - An object with a key for each
possible symbol type ("exponential", "integral", etc.)
whose values are functions that will be applied whenever that
symbol is encountered in the syntax tree. These functions take a
single argument, `args`, which is a list of the results of
evaluating that symbol's arguments.
@returns - Whatever the `evaluators` function for the root symbol
in the syntax tree returns.
@memberof Guppy
*/
Guppy.prototype.evaluate = function(evaluators){
return this.engine.doc.evaluate(evaluators);
}
/**
Get a list of the symbols used in the document, in order of
appearance, with each kind of symbol appearing only once. For
example, a document representing `sin(x^3)+sqrt(x^2+x)` will
have symbols `["sin","exponential","square_root"]`.
@param {String[]} [groups] - A list of the groups whose symbols
may be included in the output. If absent, all symbols in the
document will be returned.
@memberof Guppy
*/
Guppy.prototype.symbols_used = function(groups){
return this.engine.doc.get_symbols(groups);
}
/**
Get a list of the variable names used in the document.
@memberof Guppy
*/
Guppy.prototype.vars = function(){
return this.engine.get_content("function").vars;
}
/**
Set the content of the document from text in the format outputted by `guppy.text()`.
@param {String} text - A string representing the document to import.
@memberof Guppy
*/
Guppy.prototype.import_text = function(text){
return this.engine.import_text(text);
}
/**
Set the content of the document from input text in "semantic
LaTeX" format. That is, all functions are represented as
`\funcname{arg1}{arg2}`. For example,
`\defintegral{1}{2}{x^2}{x}`.
@param {String} text - A string representing the document to import.
@memberof Guppy
*/
Guppy.prototype.import_latex = function(text){
return this.engine.import_latex(text);
}
/**
Set the content of the document from XML in the format outputted
by `guppy.xml()`.
@param {String} xml - An XML string representing the document to
import.
@memberof Guppy
*/
Guppy.prototype.import_xml = function(xml){
return this.engine.set_content(xml);
}
/**
Import a syntax tree from a JSON object formatted as outputted by `guppy.syntax_tree()`.
@param {Object} tree - A JSON object representing the syntax tree to import.
@memberof Guppy
*/
Guppy.prototype.import_syntax_tree = function(tree){
return this.engine.import_ast(tree);
}
/**
Focus this instance of the editor
@memberof Guppy
*/
Guppy.prototype.activate = function(){
var newly_active = !(this.editor_active);
Guppy.active_guppy = this;
this.editor_active = true;
this.editor.className = this.editor.className.replace(new RegExp('(\\s|^)guppy_inactive(\\s|$)'),' guppy_active ');
this.editor.focus();
this.render(true);
if(newly_active){
this.engine.fire_event("focus",{"focused":true});
}
Iif(Guppy.raw_input_target == this){
Guppy.hide_raw_input();
}
}
/**
Unfocus this instance of the editor
@memberof Guppy
*/
Guppy.prototype.deactivate = function(){
var newly_inactive = this.editor_active;
this.editor_active = false;
var r1 = new RegExp('(?:\\s|^)guppy_active(?:\\s|$)');
var r2 = new RegExp('(?:\\s|^)guppy_inactive(?:\\s|$)');
if(this.editor.className.match(r1)){
this.editor.className = this.editor.className.replace(r1,' guppy_inactive ');
}
else if(!this.editor.className.match(r2)){
this.editor.className += ' guppy_inactive ';
}
Guppy.kb.shift_down = false;
Guppy.kb.ctrl_down = false;
Guppy.kb.alt_down = false;
Settings.hide_all();
Guppy.hide_raw_input();
if(newly_inactive) {
this.render();
this.engine.fire_event("focus",{"focused":false});
}
}
// Keyboard stuff
Guppy.kb = new Keyboard();
Guppy.register_keyboard_handlers = function(){
Mousetrap.addKeycodes({173: '-'}); // Firefox's special minus (needed for _ = sub binding)
var i, name;
// Pull symbol shortcuts from Symbols:
for(name in Symbols.symbols){
var s = Symbols.symbols[name];
if(s.keys)
for(i = 0; i < s.keys.length; i++)
Guppy.kb.k_syms[s.keys[i]] = s.attrs.type;
}
for(i in Guppy.kb.k_chars)
Mousetrap.bind(i,function(i){ return function(){
Iif(!Guppy.active_guppy) return true;
Guppy.active_guppy.temp_cursor.node = null;
Iif(Utils.is_text(Guppy.active_guppy.engine.current) && Guppy.kb.k_text[i]){
Guppy.active_guppy.engine.insert_string(Guppy.kb.k_text[i]);
}
else{
Guppy.active_guppy.engine.insert_string(Guppy.kb.k_chars[i]);
}
Guppy.active_guppy.render(true);
return false;
}}(i));
for(i in Guppy.kb.k_syms)
Mousetrap.bind(i,function(i){ return function(){
Iif(!Guppy.active_guppy) return true;
Guppy.active_guppy.temp_cursor.node = null;
// We always want to skip using this symbol insertion if
// we are in text mode, and additionally we want only to
// insert the corresponding text if there is an overriding
// text representation in Guppy.kb.k_text
if(Utils.is_text(Guppy.active_guppy.engine.current)){
Eif(Guppy.kb.k_text[i]) Guppy.active_guppy.engine.insert_string(Guppy.kb.k_text[i]);
}
else{
Guppy.active_guppy.engine.space_caret = 0;
//Guppy.active_guppy.engine.insert_symbol(Guppy.kb.k_syms[i]);
Guppy.active_guppy.engine.insert_symbol(Symbols.lookup_type(Guppy.kb.k_syms[i]));
}
Guppy.active_guppy.render(true);
return false;
}}(i));
for(i in Guppy.kb.k_controls)
Mousetrap.bind(i,function(i){ return function(){
Iif(!Guppy.active_guppy) return true;
// We want to skip using this control sequence only if there is an overriding text representation in Guppy.kb.k_text
if(Utils.is_text(Guppy.active_guppy.engine.current) && Guppy.kb.k_text[i]){
Guppy.active_guppy.engine.insert_string(Guppy.kb.k_text[i]);
}
else{
Guppy.active_guppy.engine.space_caret = 0;
Guppy.active_guppy.engine[Guppy.kb.k_controls[i]]();
Guppy.active_guppy.temp_cursor.node = null;
}
Guppy.active_guppy.render(["up","down","right","left","home","end","sel_left","sel_right"].indexOf(i) < 0);
//Guppy.active_guppy.render(false);
return false;
}}(i));
for(i in Guppy.kb.k_text){
if(!(Guppy.kb.k_chars[i] || Guppy.kb.k_syms[i] || Guppy.kb.k_controls[i])){
Mousetrap.bind(i,function(i){ return function(){
Iif(!Guppy.active_guppy) return true;
Guppy.active_guppy.temp_cursor.node = null;
Eif(Utils.is_text(Guppy.active_guppy.engine.current)){
Guppy.active_guppy.engine.insert_string(Guppy.kb.k_text[i]);
}
Guppy.active_guppy.render(true);
return false;
}}(i));
}
}
Mousetrap.bind(Guppy.kb.k_raw,function(){
if(!Guppy.active_guppy) return true;
Guppy.get_raw_input();
return false;
});
}
Guppy.initialised = false;
Guppy.init = function(){
Iif(Guppy.initialised) return;
Settings.init(Symbols.symbols);
Guppy.register_keyboard_handlers();
document.body.appendChild(Guppy.raw_input);
Guppy.initialised = true;
}
export default Guppy;
|