File size: 4,144 Bytes
fdaf774 |
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 |
define([
'require',
'jquery',
'base/js/namespace',
'base/js/events',
'base/js/utils',
'notebook/js/codecell',
], function (
requirejs,
$,
Jupyter,
events,
utils,
codecell
) {
"use strict";
var CodeCell = codecell.CodeCell;
var Scratchpad = function (nb) {
var scratchpad = this;
this.notebook = nb;
this.kernel = nb.kernel;
this.km = nb.keyboard_manager;
this.collapsed = true;
// create elements
this.element = $("<div id='nbextension-scratchpad'>");
this.close_button = $("<i>").addClass("fa fa-caret-square-o-down scratchpad-btn scratchpad-close");
this.open_button = $("<i>").addClass("fa fa-caret-square-o-up scratchpad-btn scratchpad-open");
this.element.append(this.close_button);
this.element.append(this.open_button);
this.open_button.click(function () {
scratchpad.expand();
});
this.close_button.click(function () {
scratchpad.collapse();
});
// create my cell
var cell = this.cell = new CodeCell(nb.kernel, {
events: nb.events,
config: nb.config,
keyboard_manager: nb.keyboard_manager,
notebook: nb,
tooltip: nb.tooltip,
});
cell.set_input_prompt();
this.element.append($("<div/>").addClass('cell-wrapper').append(this.cell.element));
cell.render();
cell.refresh();
this.collapse();
// override ctrl/shift-enter to execute me if I'm focused instead of the notebook's cell
var execute_and_select_action = this.km.actions.register({
handler: $.proxy(this.execute_and_select_event, this),
}, 'scratchpad-execute-and-select');
var execute_action = this.km.actions.register({
handler: $.proxy(this.execute_event, this),
}, 'scratchpad-execute');
var toggle_action = this.km.actions.register({
handler: $.proxy(this.toggle, this),
}, 'scratchpad-toggle');
var shortcuts = {
'shift-enter': execute_and_select_action,
'ctrl-enter': execute_action,
'ctrl-b': toggle_action,
}
this.km.edit_shortcuts.add_shortcuts(shortcuts);
this.km.command_shortcuts.add_shortcuts(shortcuts);
// finally, add me to the page
$("body").append(this.element);
};
Scratchpad.prototype.toggle = function () {
if (this.collapsed) {
this.expand();
} else {
this.collapse();
}
return false;
};
Scratchpad.prototype.expand = function () {
this.collapsed = false;
var site_height = $("#site").height();
this.element.animate({
height: site_height,
}, 200);
this.open_button.hide();
this.close_button.show();
this.cell.element.show();
this.cell.focus_editor();
//$("#notebook-container").css('margin-left', 0);
};
Scratchpad.prototype.collapse = function () {
this.collapsed = true;
//$("#notebook-container").css('margin-left', 'auto');
this.element.animate({
height: 0,
}, 100);
this.close_button.hide();
this.open_button.show();
this.cell.element.hide();
};
Scratchpad.prototype.execute_and_select_event = function (evt) {
if (utils.is_focused(this.element)) {
this.cell.execute();
} else {
this.notebook.execute_cell_and_select_below();
}
};
Scratchpad.prototype.execute_event = function (evt) {
if (utils.is_focused(this.element)) {
this.cell.execute();
} else {
this.notebook.execute_selected_cells();
}
};
function setup_scratchpad () {
// lazy, hook it up to Jupyter.notebook as the handle on all the singletons
console.log("Setting up scratchpad");
return new Scratchpad(Jupyter.notebook);
}
function load_extension () {
// add css
var link = document.createElement("link");
link.type = "text/css";
link.rel = "stylesheet";
link.href = requirejs.toUrl("./scratchpad.css");
document.getElementsByTagName("head")[0].appendChild(link);
// load when the kernel's ready
if (Jupyter.notebook.kernel) {
setup_scratchpad();
} else {
events.on('kernel_ready.Kernel', setup_scratchpad);
}
}
return {
load_ipython_extension: load_extension,
};
});
|