Skip to content

Commit 8f46728

Browse files
committed
Update to ipywidgets 6 and first lab extension
1 parent 6f9feff commit 8f46728

12 files changed

+112
-34
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ node_modules/
77

88
# Compiled javascript
99
ipympl/static/
10+
ipympl/staticlab/
1011

1112
# OS X
1213
.DS_Store

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2016, Matplotlib Contributors
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
recursive-include ipympl/static *.*
2+
include LICENSE

ipympl/__init__.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
from ._version import version_info, __version__
22

3+
npm_pkg_name = 'jupyter-matplotlib'
34

45
def _jupyter_nbextension_paths():
56
return [{
67
'section': 'notebook',
78
'src': 'static',
8-
'dest': 'jupyter-matplotlib',
9-
'require': 'jupyter-matplotlib/extension'
9+
'dest': npm_pkg_name,
10+
'require': npm_pkg_name + '/extension'
11+
}]
12+
13+
def _jupyter_labextension_paths():
14+
return [{
15+
'name': npm_pkg_name,
16+
'src': 'staticlab'
1017
}]
1118

1219
import matplotlib

ipympl/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 0, 3)
1+
version_info = (0, 0, 4)
22
__version__ = '.'.join(map(str, version_info))

ipympl/backend_nbagg.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def __call__(self, block=None):
5252

5353
show = Show()
5454

55-
5655
def draw_if_interactive():
5756
import matplotlib._pylab_helpers as pylab_helpers
5857

@@ -61,7 +60,6 @@ def draw_if_interactive():
6160
if manager is not None:
6261
manager.show()
6362

64-
6563
def connection_info():
6664
"""
6765
Return a string showing the figure and connection status for
@@ -122,8 +120,15 @@ def export(self):
122120

123121

124122
class FigureCanvasNbAgg(DOMWidget, FigureCanvasWebAggCore):
125-
_view_module = Unicode("jupyter-matplotlib", sync=True)
123+
124+
_model_module = Unicode('jupyter-matplotlib', sync=True)
125+
_model_module_version = Unicode('^0.0.2', sync=True)
126+
_model_name = Unicode('MPLCanvasModel', sync=True)
127+
128+
_view_module = Unicode('jupyter-matplotlib', sync=True)
129+
_view_module_version = Unicode('^0.0.2', sync=True)
126130
_view_name = Unicode('MPLCanvasView', sync=True)
131+
127132
_toolbar_items = List(sync=True)
128133
_closed = Bool(True)
129134
_id = Unicode('', sync=True)

js/package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-matplotlib",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Matplotlib Jupyter Interactive Widget",
55
"author": "Matplotlib Development team",
66
"license": "BSD-3-Clause",
@@ -10,17 +10,19 @@
1010
"url": "https://github.com/matplotlib/jupyter-matplotlib.git"
1111
},
1212
"scripts": {
13-
"prepublish": "webpack",
14-
"build": "webpack",
13+
"build": "webpack",
14+
"prepublish": "npm run build",
1515
"test": "echo \"Error: no test specified\" && exit 1"
1616
},
1717
"devDependencies": {
1818
"json-loader": "^0.5.4",
19+
"@jupyterlab/extension-builder": "^0.10.0",
1920
"webpack": "^1.12.14"
2021
},
2122
"dependencies": {
2223
"jquery": "^2.1.4",
23-
"jupyter-js-widgets": "^1.0.0",
24+
"jupyter-js-widgets": "^2.1.4",
25+
"@jupyterlab/nbwidgets": "^0.6.15",
2426
"underscore": "^1.8.3"
2527
}
2628
}

js/src/labplugin.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
var jupyter_matplotlib = require('./index');
2+
3+
var jupyterlab_widgets = require('@jupyterlab/nbwidgets');
4+
5+
module.exports = {
6+
id: 'jupyter.extensions.jupyter-matplotlib',
7+
requires: [jupyterlab_widgets.INBWidgetExtension],
8+
activate: function(app, widgets) {
9+
widgets.registerWidget({
10+
name: 'jupyter-matplotlib',
11+
version: jupyter_matplotlib.version,
12+
exports: jupyter_matplotlib
13+
});
14+
},
15+
autoStart: true
16+
};

js/src/mpl.js

+2-15
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,10 @@ mpl.figure.prototype._init_header = function() {
109109
this.header = titletext[0];
110110
}
111111

112-
113-
114112
mpl.figure.prototype._canvas_extra_style = function(canvas_div) {
115113

116114
}
117115

118-
119116
mpl.figure.prototype._root_extra_style = function(canvas_div) {
120117

121118
}
@@ -160,18 +157,8 @@ mpl.figure.prototype._init_canvas = function() {
160157

161158
var pass_mouse_events = true;
162159

163-
canvas_div.resizable({
164-
start: function(event, ui) {
165-
pass_mouse_events = false;
166-
},
167-
resize: function(event, ui) {
168-
fig.request_resize(ui.size.width, ui.size.height);
169-
},
170-
stop: function(event, ui) {
171-
pass_mouse_events = true;
172-
fig.request_resize(ui.size.width, ui.size.height);
173-
},
174-
});
160+
// TODO: on resize event
161+
// fig.request_resize(width, height);
175162

176163
function mouse_event_fn(event) {
177164
if (pass_mouse_events)

js/src/mpl_widget.js

+22-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
11
var widgets = require('jupyter-js-widgets');
22
var mpl = require('./mpl.js');
3+
var _ = require('underscore');
34
var $ = require('jquery');
45
require('jquery-ui');
56

7+
var version = require('../package.json').version;
8+
9+
var MPLCanvasModel = widgets.DOMWidgetModel.extend({
10+
defaults: function() {
11+
return _.extend(widgets.WidgetModel.prototype.defaults(), {
12+
_model_name: 'MPLCanvasModel',
13+
_view_name: 'MPLCanvasView',
14+
_model_module: 'jupyter-matplotlib',
15+
_view_module: 'jupyter-matplotlib',
16+
_model_module_version: '^'+ version,
17+
_view_module_version: '^' + version
18+
});
19+
}
20+
});
21+
22+
623
var MPLCanvasView = widgets.DOMWidgetView.extend({
724

825
render: function() {
926
var that = this;
10-
1127
var id = this.model.get('_id');
12-
1328
var element = this.$el;
1429

1530
this.ws_proxy = this.comm_websocket_adapter(this.model.comm);
@@ -51,7 +66,6 @@ var MPLCanvasView = widgets.DOMWidgetView.extend({
5166
};
5267
return ws;
5368
}
54-
5569
});
5670

5771
mpl.figure.prototype.handle_close = function(fig, msg) {
@@ -87,7 +101,7 @@ mpl.figure.prototype._init_toolbar = function() {
87101
return fig.toolbar_button_onmouseover(event['data']);
88102
}
89103

90-
for(var toolbar_ind in mpl.toolbar_items){
104+
for(var toolbar_ind in mpl.toolbar_items) {
91105
var name = mpl.toolbar_items[toolbar_ind][0];
92106
var tooltip = mpl.toolbar_items[toolbar_ind][1];
93107
var image = mpl.toolbar_items[toolbar_ind][2];
@@ -116,14 +130,14 @@ mpl.figure.prototype._init_toolbar = function() {
116130
titlebar.prepend(buttongrp);
117131
}
118132

119-
mpl.figure.prototype._root_extra_style = function(el){
133+
mpl.figure.prototype._root_extra_style = function(el) {
120134
var fig = this
121135
el.on("remove", function(){
122-
fig.close_ws(fig, {});
136+
fig.close_ws(fig, {});
123137
});
124138
}
125139

126-
mpl.figure.prototype._canvas_extra_style = function(el){
140+
mpl.figure.prototype._canvas_extra_style = function(el) {
127141
// this is important to make the div 'focusable'
128142
el.attr('tabindex', 0)
129143
}
@@ -136,5 +150,6 @@ mpl.figure.prototype.handle_save = function(fig, msg) {
136150
}
137151

138152
module.exports = {
153+
MPLCanvasModel: MPLCanvasModel,
139154
MPLCanvasView: MPLCanvasView
140155
}

js/webpack.config.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ var loaders = [
66
{ test: /\.json$/, loader: 'json-loader' },
77
];
88

9+
var buildExtension = require('@jupyterlab/extension-builder/lib/builder').buildExtension;
10+
11+
buildExtension({
12+
name: 'jupyter-matplotlib',
13+
entry: './src/labplugin',
14+
outputDir: '../ipympl/staticlab',
15+
useDefaultLoaders: false,
16+
config: {
17+
module: {
18+
loaders: loaders
19+
}
20+
}
21+
});
922

1023
module.exports = [
1124
{// Notebook extension
@@ -59,7 +72,7 @@ module.exports = [
5972
filename: 'index.js',
6073
path: './dist/',
6174
libraryTarget: 'amd',
62-
publicPath: 'https://npmcdn.com/jupyter-matplotlib@' + version + '/dist/'
75+
publicPath: 'https://unpkg.com/jupyter-matplotlib@' + version + '/dist/'
6376
},
6477
devtool: 'source-map',
6578
module: {

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,13 @@ def run(self):
128128
'ipympl/static/index.js',
129129
'ipympl/static/index.js.map',
130130
]),
131+
('share/jupyter/labextensions/jupyter-matplotlib', [
132+
'ipympl/staticlab/jupyter-matplotlib.bundle.js',
133+
'ipympl/staticlab/jupyter-matplotlib.bundle.js.manifest',
134+
])
131135
],
132136
'install_requires': [
133-
'ipywidgets>=5.1.5',
137+
'ipywidgets>=6.0.0',
134138
'matplotlib>=2.0.0',
135139
'six',
136140
],

0 commit comments

Comments
 (0)