Skip to content
This repository was archived by the owner on Dec 26, 2019. It is now read-only.

Commit c7acb9e

Browse files
committed
add Jupyter extensions hooks
1 parent 6fbf1b5 commit c7acb9e

File tree

6 files changed

+30
-44
lines changed

6 files changed

+30
-44
lines changed

fileupload/__init__.py

+6-22
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,9 @@
11
from .widget import FileUploadWidget # noqa
22

33

4-
def nbinstall(overwrite=False, user=True):
5-
'''
6-
Installs the Javascript dependencies.
7-
8-
Parameters
9-
----------
10-
overwrite : bool, optional
11-
If True, always install the files,
12-
regardless of what may already be installed.
13-
user : bool, optional
14-
Whether to install to the user's nbextensions directory.
15-
'''
16-
import os
17-
try:
18-
from notebook import install_nbextension
19-
except ImportError:
20-
from IPython.html.nbextensions import install_nbextension
21-
from .widget import _packet_name
22-
23-
view_static = os.path.abspath(
24-
os.path.join(os.path.dirname(__file__), 'static', _packet_name()))
25-
install_nbextension(view_static, user=user, overwrite=overwrite, verbose=0)
4+
def _jupyter_nbextension_paths():
5+
return [dict(
6+
section='notebook',
7+
src='static',
8+
dest='fileupload',
9+
require='fileupload/extension')]

fileupload/static/extension.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
if (window.require) {
2+
window.require.config({
3+
map: {
4+
'*': {
5+
'fileupload': 'nbextensions/fileupload/widget',
6+
'jupyter-js-widgets': 'nbextensions/jupyter-js-widgets/extension'
7+
}
8+
}
9+
});
10+
}
11+
12+
13+
module.exports = {
14+
load_ipython_extension: function() {}
15+
};

fileupload/static/fileupload/widget.js fileupload/static/widget.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
define([
22
'jquery',
3-
'widgets/js/widget'
4-
], function ($, widget) {
3+
'jupyter-js-widgets'
4+
], function ($, widgets) {
55

6+
'use strict';
67
var _getId = (function () {
78

89
var cnt = 0;
@@ -13,8 +14,7 @@ define([
1314
}
1415
})();
1516

16-
'use strict';
17-
var FileUploadView = widget.DOMWidgetView.extend({
17+
var FileUploadView = widgets.DOMWidgetView.extend({
1818

1919
render: function render () {
2020

fileupload/widget.py

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
1-
import os
21
import base64
32
import ipywidgets
43
import traitlets
54

65

7-
def _module_name():
8-
return os.path.splitext(os.path.basename(__file__))[0]
9-
10-
11-
def _packet_name():
12-
return os.path.basename(os.path.dirname(__file__))
13-
14-
156
class FileUploadWidget(ipywidgets.DOMWidget):
167
'''File Upload Widget.
178
This widget provides file upload using `FileReader`.
189
'''
19-
_view_static = os.path.abspath(
20-
os.path.join(os.path.dirname(__file__), 'static', _packet_name()))
2110
_view_name = traitlets.Unicode('FileUploadView').tag(sync=True)
22-
_view_module = traitlets.Unicode(
23-
os.path.join('nbextensions', _packet_name(), _module_name())
24-
).tag(sync=True)
11+
_view_module = traitlets.Unicode('fileupload').tag(sync=True)
2512

2613
filename = traitlets.Unicode(help='Filename of `data`.').tag(sync=True)
2714
data_base64 = traitlets.Unicode(help='File content, base64 encoded.'

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ipywidgets>=4.0
2-
traitlets>=4.1
3-
notebook>=4.0
1+
ipywidgets>=5.1
2+
traitlets>=4.2
3+
notebook>=4.2

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ keywords =
2424
[files]
2525
packages = fileupload
2626
package_data =
27-
fileupload = *.js
27+
static = *.js
2828
[bdist_wheel]
2929
universal = 1

0 commit comments

Comments
 (0)