summaryrefslogtreecommitdiff
path: root/chromium/ui/webui/resources/cr_elements/cr_toast/cr_toast_manager.js
blob: 53009cdffbf340a52d74ee75a653605463f99ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

cr.define('cr.toastManager', () => {
  /* eslint-disable */
  /** @private {?CrToastManagerElement} */
  let toastManagerInstance = null;
  /* eslint-enable */

  /** @return {!CrToastManagerElement} */
  /* #export */ function getToastManager() {
    return assert(toastManagerInstance);
  }

  /** @param {?CrToastManagerElement} instance */
  function setInstance(instance) {
    assert(!instance || !toastManagerInstance);
    toastManagerInstance = instance;
  }

  /**
   * @fileoverview Element which shows toasts with optional undo button.
   */
  // eslint-disable-next-line
  Polymer({
    is: 'cr-toast-manager',

    properties: {
      duration: {
        type: Number,
        value: 0,
      },
    },

    /** @return {boolean} */
    get isToastOpen() {
      return this.$.toast.open;
    },

    /** @return {boolean} */
    get slottedHidden() {
      return this.$.slotted.hidden;
    },

    /** @override */
    attached() {
      setInstance(this);
    },

    /** @override */
    detached() {
      setInstance(null);
    },

    /**
     * @param {string} label The label to display inside the toast.
     * @param {boolean=} hideSlotted
     */
    show(label, hideSlotted = false) {
      this.$.content.textContent = label;
      this.showInternal_(hideSlotted);
    },

    /**
     * Shows the toast, making certain text fragments collapsible.
     * @param {!Array<!{value: string, collapsible: boolean}>} pieces
     * @param {boolean=} hideSlotted
     */
    showForStringPieces(pieces, hideSlotted = false) {
      const content = this.$.content;
      content.textContent = '';
      pieces.forEach(function(p) {
        if (p.value.length === 0) {
          return;
        }

        const span = document.createElement('span');
        span.textContent = p.value;
        if (p.collapsible) {
          span.classList.add('collapsible');
        }

        content.appendChild(span);
      });

      this.showInternal_(hideSlotted);
    },

    /**
     * @param {boolean} hideSlotted
     * @private
     */
    showInternal_(hideSlotted) {
      this.$.slotted.hidden = hideSlotted;
      this.$.toast.show();
    },

    hide() {
      this.$.toast.hide();
    },
  });

  // #cr_define_end
  return {
    getToastManager: getToastManager,
  };
});