Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Google Inc. 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 |
| 6 | * met: |
| 7 | * |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above |
| 11 | * copyright notice, this list of conditions and the following disclaimer |
| 12 | * in the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * * Neither the name of Google Inc. 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 |
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Paul Lewis | 9950e18 | 2019-12-16 16:06:07 | [diff] [blame] | 31 | import {VBox} from './Widget.js'; |
| 32 | import {XLink} from './XLink.js'; |
| 33 | |
Sigurd Schneider | 46da7db | 2020-05-20 13:45:11 | [diff] [blame] | 34 | |
Paul Lewis | 9950e18 | 2019-12-16 16:06:07 | [diff] [blame] | 35 | export class EmptyWidget extends VBox { |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 36 | /** |
| 37 | * @param {string} text |
| 38 | */ |
| 39 | constructor(text) { |
| 40 | super(); |
Jack Franklin | 71519f8 | 2020-11-03 12:08:59 | [diff] [blame^] | 41 | this.registerRequiredCSS('ui/emptyWidget.css', {enableLegacyPatching: true}); |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 42 | this.element.classList.add('empty-view-scroller'); |
| 43 | this._contentElement = this.element.createChild('div', 'empty-view'); |
Michael Liao (WPT) | 8b0cac5 | 2019-07-16 23:19:40 | [diff] [blame] | 44 | this._textElement = this._contentElement.createChild('div', 'empty-bold-text'); |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 45 | this._textElement.textContent = text; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * @return {!Element} |
| 50 | */ |
| 51 | appendParagraph() { |
| 52 | return this._contentElement.createChild('p'); |
| 53 | } |
| 54 | |
| 55 | /** |
Kayce Basques | 1ec0c93 | 2019-04-30 18:38:53 | [diff] [blame] | 56 | * @param {string} link |
| 57 | * @return {!Node} |
| 58 | */ |
| 59 | appendLink(link) { |
Peter Marshall | 90bf660 | 2020-08-04 13:50:43 | [diff] [blame] | 60 | return this._contentElement.appendChild(XLink.create(link, ls`Learn more`)); |
Kayce Basques | 1ec0c93 | 2019-04-30 18:38:53 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | /** |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 64 | * @param {string} text |
| 65 | */ |
| 66 | set text(text) { |
| 67 | this._textElement.textContent = text; |
| 68 | } |
Tim van der Lippe | 0830b3d | 2019-10-03 13:20:07 | [diff] [blame] | 69 | } |