|
370 | 370 | "The TypeScript cookiecutter generates a file `src/widget.ts`. Open the file and rename `ExampleModel` to `EmailModel` and `ExampleView` to `EmailView`:\n",
|
371 | 371 | "\n",
|
372 | 372 | "```typescript\n",
|
373 |
| - "export\n", |
374 |
| - "class EmailModel extends DOMWidgetModel {\n", |
| 373 | + "export class EmailModel extends DOMWidgetModel {\n", |
375 | 374 | " defaults() {\n",
|
376 | 375 | " return {...super.defaults(),\n",
|
377 | 376 | " _model_name: EmailModel.model_name,\n",
|
|
392 | 391 | " static model_name = 'EmailModel';\n",
|
393 | 392 | " static model_module = MODULE_NAME;\n",
|
394 | 393 | " 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", |
397 | 396 | " static view_module_version = MODULE_VERSION;\n",
|
398 | 397 | "}\n",
|
399 | 398 | "\n",
|
400 | 399 | "\n",
|
401 |
| - "export\n", |
402 |
| - "class EmailView extends DOMWidgetView {\n", |
| 400 | + "export class EmailView extends DOMWidgetView {\n", |
403 | 401 | " render() {\n",
|
404 | 402 | " this.el.classList.add('custom-widget');\n",
|
405 | 403 | "\n",
|
|
445 | 443 | "Then, add the following logic for the `render` method:\n",
|
446 | 444 | "\n",
|
447 | 445 | "```typescript\n",
|
448 |
| - "render: function() { \n", |
| 446 | + "render() { \n", |
449 | 447 | " this._emailInput = document.createElement('input');\n",
|
450 | 448 | " this._emailInput.type = 'email';\n",
|
451 | 449 | " this._emailInput.value = '[email protected]';\n",
|
|
501 | 499 | "cell_type": "markdown",
|
502 | 500 | "metadata": {},
|
503 | 501 | "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", |
505 | 503 | "\n",
|
506 | 504 | "```python\n",
|
507 | 505 | "from ipywidgets import DOMWidget, ValueWidget, register\n",
|
|
570 | 568 | "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",
|
571 | 569 | "\n",
|
572 | 570 | "```typescript\n",
|
573 |
| - "export\n", |
574 |
| - "class EmailView extends DOMWidgetView {\n", |
| 571 | + "export class EmailView extends DOMWidgetView {\n", |
575 | 572 | " render() {\n",
|
576 | 573 | " this._emailInput = document.createElement('input');\n",
|
577 | 574 | " this._emailInput.type = 'email';\n",
|
|
604 | 601 | "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",
|
605 | 602 | "\n",
|
606 | 603 | "```typescript\n",
|
607 |
| - "export\n", |
608 |
| - "class EmailView extends DOMWidgetView {\n", |
| 604 | + "export class EmailView extends DOMWidgetView {\n", |
609 | 605 | " render() {\n",
|
610 | 606 | " this._emailInput = document.createElement('input');\n",
|
611 | 607 | " this._emailInput.type = 'email';\n",
|
|
639 | 635 | "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",
|
640 | 636 | "\n",
|
641 | 637 | "```typescript\n",
|
642 |
| - "export\n", |
643 |
| - "class EmailView extends DOMWidgetView {\n", |
| 638 | + "export class EmailView extends DOMWidgetView {\n", |
644 | 639 | " render() {\n",
|
645 | 640 | " this._emailInput = document.createElement('input');\n",
|
646 | 641 | " this._emailInput.type = 'email';\n",
|
|
0 commit comments