Skip to content

Commit 4d23460

Browse files
committed
Minor tweaks to the custom widget tutorial
1 parent d8ec7c7 commit 4d23460

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

docs/source/examples/Widget Custom.ipynb

+9-14
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,7 @@
370370
"The TypeScript cookiecutter generates a file `src/widget.ts`. Open the file and rename `ExampleModel` to `EmailModel` and `ExampleView` to `EmailView`:\n",
371371
"\n",
372372
"```typescript\n",
373-
"export\n",
374-
"class EmailModel extends DOMWidgetModel {\n",
373+
"export class EmailModel extends DOMWidgetModel {\n",
375374
" defaults() {\n",
376375
" return {...super.defaults(),\n",
377376
" _model_name: EmailModel.model_name,\n",
@@ -392,14 +391,13 @@
392391
" static model_name = 'EmailModel';\n",
393392
" static model_module = MODULE_NAME;\n",
394393
" static model_module_version = MODULE_VERSION;\n",
395-
" static view_name = 'EmailView'; // Set to null if no view\n",
396-
" static view_module = MODULE_NAME; // Set to null if no view\n",
394+
" static view_name = 'EmailView';\n",
395+
" static view_module = MODULE_NAME;\n",
397396
" static view_module_version = MODULE_VERSION;\n",
398397
"}\n",
399398
"\n",
400399
"\n",
401-
"export\n",
402-
"class EmailView extends DOMWidgetView {\n",
400+
"export class EmailView extends DOMWidgetView {\n",
403401
" render() {\n",
404402
" this.el.classList.add('custom-widget');\n",
405403
"\n",
@@ -445,7 +443,7 @@
445443
"Then, add the following logic for the `render` method:\n",
446444
"\n",
447445
"```typescript\n",
448-
"render: function() { \n",
446+
"render() { \n",
449447
" this._emailInput = document.createElement('input');\n",
450448
" this._emailInput.type = 'email';\n",
451449
" this._emailInput.value = '[email protected]';\n",
@@ -501,7 +499,7 @@
501499
"cell_type": "markdown",
502500
"metadata": {},
503501
"source": [
504-
"We want to be able to avoid user to write an invalid email address, so we need a validator using traitlets.\n",
502+
"We want to be able to avoid the user to write an invalid email address, so we need a validator using traitlets.\n",
505503
"\n",
506504
"```python\n",
507505
"from ipywidgets import DOMWidget, ValueWidget, register\n",
@@ -570,8 +568,7 @@
570568
"By replacing the string literal with a call to `model.get`, the view will now display the value of the back end upon display. However, it will not update itself to a new value when the value changes.\n",
571569
"\n",
572570
"```typescript\n",
573-
"export\n",
574-
"class EmailView extends DOMWidgetView {\n",
571+
"export class EmailView extends DOMWidgetView {\n",
575572
" render() {\n",
576573
" this._emailInput = document.createElement('input');\n",
577574
" this._emailInput.type = 'email';\n",
@@ -604,8 +601,7 @@
604601
"To get the view to update itself dynamically, register a function to update the view's value when the model's `value` property changes. This can be done using the `model.on` method. The `on` method takes three parameters, an event name, callback handle, and callback context. The Backbone event named `change` will fire whenever the model changes. By appending `:value` to it, you tell Backbone to only listen to the change event of the `value` property (as seen below).\n",
605602
"\n",
606603
"```typescript\n",
607-
"export\n",
608-
"class EmailView extends DOMWidgetView {\n",
604+
"export class EmailView extends DOMWidgetView {\n",
609605
" render() {\n",
610606
" this._emailInput = document.createElement('input');\n",
611607
" this._emailInput.type = 'email';\n",
@@ -639,8 +635,7 @@
639635
"This allows us to update the value from the Python kernel to the views. Now to get the value updated from the front-end to the Python kernel (when the input is not disabled) we can do it using the `model.set` method.\n",
640636
"\n",
641637
"```typescript\n",
642-
"export\n",
643-
"class EmailView extends DOMWidgetView {\n",
638+
"export class EmailView extends DOMWidgetView {\n",
644639
" render() {\n",
645640
" this._emailInput = document.createElement('input');\n",
646641
" this._emailInput.type = 'email';\n",

0 commit comments

Comments
 (0)