mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-07-29 11:21:37 +08:00
Removed index parameter in yapf_format function; instead get currently selected cell
203 lines
7.2 KiB
JavaScript
Executable File
203 lines
7.2 KiB
JavaScript
Executable File
// Copyright (c) Jupyter-Contrib Team.
|
|
// Distributed under the terms of the Modified BSD License.
|
|
|
|
define(function(require, exports, module) {
|
|
'use strict';
|
|
|
|
var Jupyter = require('base/js/namespace');
|
|
var keyboard = require('base/js/keyboard');
|
|
var utils = require('base/js/utils');
|
|
var configmod = require('services/config');
|
|
var Cell = require('notebook/js/cell').Cell;
|
|
var CodeCell = require('notebook/js/codecell').CodeCell;
|
|
|
|
var add_edit_shortcuts = {};
|
|
var replace_in_cell = false; //bool to enable/disable replacements
|
|
var exec_code_verbose = true;
|
|
var kName; // name of current kernel
|
|
var kernelLanguage; // language associated with kernel
|
|
|
|
var cfg = {
|
|
code_format_hotkey: 'Ctrl-L',
|
|
}
|
|
|
|
// list of availables kernels
|
|
var userKernels;
|
|
|
|
|
|
var kMap = { // map of parameters for supported kernels
|
|
python: {
|
|
library: 'from yapf.yapflib.yapf_api import FormatCode',
|
|
exec: yapf_format,
|
|
post_exec: ''
|
|
},
|
|
r: { // intentionally in lower case
|
|
library: 'library(formatR)',
|
|
exec: autoR_format,
|
|
post_exec: ''
|
|
},
|
|
javascript: {
|
|
library: String('var beautify' + ' = require' + '("js-beautify").js_beautify'),
|
|
exec: js_beautify,
|
|
post_exec: ''
|
|
},
|
|
}
|
|
|
|
|
|
function initialize() {
|
|
// create config object to load parameters
|
|
var base_url = utils.get_body_data("baseUrl");
|
|
var config = new configmod.ConfigSection('notebook', { base_url: base_url });
|
|
config.load();
|
|
config.loaded.then(function config_loaded_callback() {
|
|
for (var key in cfg) {
|
|
if (config.data.hasOwnProperty(key)) {
|
|
cfg[key] = config.data[key];
|
|
}
|
|
}
|
|
code_format_hotkey(); //initialize hotkey
|
|
})
|
|
}
|
|
|
|
function code_exec_callback(msg) {
|
|
|
|
if (msg.msg_type == "error") {
|
|
if (exec_code_verbose) alert("CODE prettify extension\n Error: " + msg.content.ename + "\n" + msg.content.evalue)
|
|
return
|
|
}
|
|
if (replace_in_cell) {
|
|
if (kernelLanguage == "python") {
|
|
var ret = msg.content.data['text/plain'];
|
|
//console.log("RETURNED code", ret)
|
|
var quote = String(ret[ret.length - 1])
|
|
var reg = RegExp(quote + '[\\S\\s]*' + quote)
|
|
var ret = String(ret).match(reg)[0] // extract text between quotes
|
|
ret = ret.substr(1, ret.length - 2) //suppress quotes
|
|
ret = ret.replace(/([^\\])\\n/g, "$1\n").replace(/([^\\])\\n/g, "$1\n")
|
|
// replace \n if not escaped (two times beacause of recovering subsequences)
|
|
.replace(/([^\\])\\\\\\n/g, "$1\\\n") // [continuation line] replace \ at eol (but no conversion)
|
|
.replace(/\\'/g, "'") // replace simple quotes
|
|
.replace(/\\\\/g, "\\") // unescape
|
|
}
|
|
|
|
if (kernelLanguage == "r") {
|
|
var ret = msg.content['text'];
|
|
var ret = String(ret).replace(/\\"/gm, "'").replace(/\\n/gm, '\n').replace(/\$\!\$/gm, "\\n")
|
|
}
|
|
if (kernelLanguage == "javascript") {
|
|
var ret = msg.content.data['text/plain'];
|
|
var ret = String(ret).substr(1, ret.length - 1)
|
|
.replace(/\\'/gm, "'").replace(/\\n/gm, '\n').replace(/\$\!\$/gm, "\\n")
|
|
}
|
|
//yapf/formatR - cell (file) ends with a blank line. Here, still remove the last blank line
|
|
var ret = ret.substr(0, ret.length - 1) //last blank line/quote char for javascript kernel
|
|
var selected_cell = Jupyter.notebook.get_selected_cell();
|
|
selected_cell.set_text(String(ret));
|
|
}
|
|
}
|
|
|
|
|
|
function exec_code(code_input) {
|
|
Jupyter.notebook.kernel.execute(code_input, { iopub: { output: code_exec_callback } }, { silent: false });
|
|
}
|
|
|
|
|
|
function js_beautify() {
|
|
var selected_cell = Jupyter.notebook.get_selected_cell();
|
|
if (selected_cell instanceof CodeCell) {
|
|
var text = selected_cell.get_text().replace(/\\n/gm, "$!$")
|
|
.replace(/\n/gm, "\\n")
|
|
.replace(/\'/gm, "\\'")
|
|
var code_input = "beautify(text='" + text + "')"
|
|
exec_code(code_input)
|
|
}
|
|
}
|
|
|
|
function autoR_format() {
|
|
var selected_cell = Jupyter.notebook.get_selected_cell();
|
|
if (selected_cell instanceof CodeCell) {
|
|
var text = selected_cell.get_text().replace(/\\n/gm, "$!$")
|
|
.replace(/\'/gm, "\\'").replace(/\\"/gm, "\\'")
|
|
var code_input = "tidy_source(text='" + text + "')"
|
|
exec_code(code_input)
|
|
}
|
|
}
|
|
|
|
function yapf_format() {
|
|
var selected_cell = Jupyter.notebook.get_selected_cell();
|
|
if (selected_cell instanceof CodeCell) {
|
|
var text = selected_cell.get_text()
|
|
.replace(/\\n/gm, "$!$") // Replace escaped \n by $!$
|
|
.replace(/\"/gm, '\\"'); // Escape double quote
|
|
var text = selected_cell.get_text()
|
|
text = JSON.stringify(text)
|
|
.replace(/([^\\])\\\\\\n/g, "$1") // [continuation line] replace \ at eol (but result will be on a single line)
|
|
var code_input = 'FormatCode(' + text + ')[0]'
|
|
//console.log("INPUT",code_input)
|
|
exec_code(code_input)
|
|
}
|
|
}
|
|
|
|
function autoFormat() {
|
|
replace_in_cell = true;
|
|
kMap[kernelLanguage].exec()
|
|
}
|
|
|
|
|
|
function code_format_button() {
|
|
if ($('#code_format_button').length == 0) {
|
|
Jupyter.toolbar.add_buttons_group([{
|
|
'label': 'Code formatting',
|
|
'icon': 'fa-legal',
|
|
'callback': autoFormat,
|
|
'id': 'code_format_button'
|
|
}]);
|
|
}
|
|
}
|
|
|
|
function code_format_hotkey() {
|
|
add_edit_shortcuts[cfg['code_format_hotkey']] = {
|
|
help: "code formatting",
|
|
help_index: 'yf',
|
|
handler: autoFormat
|
|
};
|
|
}
|
|
|
|
function getKernelInfos() {
|
|
//console.log("--->kernel_ready.Kernel")
|
|
kName = Jupyter.notebook.kernel.name;
|
|
kernelLanguage = Jupyter.notebook.metadata.kernelspec.language.toLowerCase()
|
|
var knownKernel = kMap[kernelLanguage]
|
|
if (!knownKernel) {
|
|
$('#code_format_button').remove()
|
|
alert("Sorry; code prettify nbextension only works with a Python, R or javascript kernel");
|
|
|
|
} else {
|
|
code_format_button();
|
|
Jupyter.keyboard_manager.edit_shortcuts.add_shortcuts(add_edit_shortcuts);
|
|
replace_in_cell = false;
|
|
exec_code(kMap[kernelLanguage].library)
|
|
}
|
|
}
|
|
|
|
|
|
function load_notebook_extension() {
|
|
|
|
initialize();
|
|
|
|
if (typeof Jupyter.notebook.kernel !== "undefined" && Jupyter.notebook.kernel != null) {
|
|
getKernelInfos();
|
|
}
|
|
|
|
// only if kernel_ready (but kernel may be loaded before)
|
|
$([Jupyter.events]).on("kernel_ready.Kernel", function() {
|
|
console.log("code_prettify: restarting")
|
|
getKernelInfos();
|
|
});
|
|
}
|
|
|
|
return {
|
|
load_ipython_extension: load_notebook_extension
|
|
};
|
|
});
|