blob: b726a3b93c7b9f014176945b976c72a20976ce9d [file] [log] [blame]
Blink Reformat4c46d092018-04-07 15:32:371/*
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 Lewis9950e182019-12-16 16:06:0731import {VBox} from './Widget.js';
32import {XLink} from './XLink.js';
33
Sigurd Schneider46da7db2020-05-20 13:45:1134
Paul Lewis9950e182019-12-16 16:06:0735export class EmptyWidget extends VBox {
Blink Reformat4c46d092018-04-07 15:32:3736 /**
37 * @param {string} text
38 */
39 constructor(text) {
40 super();
Jack Franklin71519f82020-11-03 12:08:5941 this.registerRequiredCSS('ui/emptyWidget.css', {enableLegacyPatching: true});
Blink Reformat4c46d092018-04-07 15:32:3742 this.element.classList.add('empty-view-scroller');
43 this._contentElement = this.element.createChild('div', 'empty-view');
Michael Liao (WPT)8b0cac52019-07-16 23:19:4044 this._textElement = this._contentElement.createChild('div', 'empty-bold-text');
Blink Reformat4c46d092018-04-07 15:32:3745 this._textElement.textContent = text;
46 }
47
48 /**
49 * @return {!Element}
50 */
51 appendParagraph() {
52 return this._contentElement.createChild('p');
53 }
54
55 /**
Kayce Basques1ec0c932019-04-30 18:38:5356 * @param {string} link
57 * @return {!Node}
58 */
59 appendLink(link) {
Peter Marshall90bf6602020-08-04 13:50:4360 return this._contentElement.appendChild(XLink.create(link, ls`Learn more`));
Kayce Basques1ec0c932019-04-30 18:38:5361 }
62
63 /**
Blink Reformat4c46d092018-04-07 15:32:3764 * @param {string} text
65 */
66 set text(text) {
67 this._textElement.textContent = text;
68 }
Tim van der Lippe0830b3d2019-10-03 13:20:0769}