-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathairplay_button.js
169 lines (138 loc) · 4.83 KB
/
airplay_button.js
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shaka.ui.AirPlayButton');
goog.require('goog.asserts');
goog.require('shaka.Player');
goog.require('shaka.ui.Controls');
goog.require('shaka.ui.Element');
goog.require('shaka.ui.Enums');
goog.require('shaka.ui.Locales');
goog.require('shaka.ui.Localization');
goog.require('shaka.ui.OverflowMenu');
goog.require('shaka.ui.Utils');
goog.require('shaka.util.Dom');
goog.requireType('shaka.ui.Controls');
/**
* @extends {shaka.ui.Element}
* @final
* @export
*/
shaka.ui.AirPlayButton = class extends shaka.ui.Element {
/**
* @param {!HTMLElement} parent
* @param {!shaka.ui.Controls} controls
*/
constructor(parent, controls) {
super(parent, controls);
/** @private {!HTMLButtonElement} */
this.airplayButton_ = shaka.util.Dom.createButton();
this.airplayButton_.classList.add('shaka-airplay-button');
this.airplayButton_.classList.add('shaka-tooltip');
this.airplayButton_.ariaPressed = 'false';
/** @private {!HTMLElement} */
this.airplayIcon_ = shaka.util.Dom.createHTMLElement('i');
this.airplayIcon_.classList.add('material-icons-round');
this.airplayIcon_.textContent = shaka.ui.Enums.MaterialDesignIcons.AIRPLAY;
this.airplayButton_.appendChild(this.airplayIcon_);
// Don't show the button if AirPlay is not supported.
if (!window.WebKitPlaybackTargetAvailabilityEvent) {
this.airplayButton_.classList.add('shaka-hidden');
}
const label = shaka.util.Dom.createHTMLElement('label');
label.classList.add('shaka-overflow-button-label');
label.classList.add('shaka-overflow-menu-only');
this.airplayNameSpan_ = shaka.util.Dom.createHTMLElement('span');
label.appendChild(this.airplayNameSpan_);
this.airplayCurrentSelectionSpan_ =
shaka.util.Dom.createHTMLElement('span');
this.airplayCurrentSelectionSpan_.classList.add(
'shaka-current-selection-span');
label.appendChild(this.airplayCurrentSelectionSpan_);
this.airplayButton_.appendChild(label);
this.parent.appendChild(this.airplayButton_);
// Setup strings in the correct language
this.updateLocalizedStrings_();
// Setup button display and state according to the current airplay status
this.onAirPlayStatusChange_();
this.eventManager.listen(
this.localization, shaka.ui.Localization.LOCALE_UPDATED, () => {
this.updateLocalizedStrings_();
});
this.eventManager.listen(
this.localization, shaka.ui.Localization.LOCALE_CHANGED, () => {
this.updateLocalizedStrings_();
});
this.eventManager.listen(this.airplayButton_, 'click', () => {
this.onAirPlayClick_();
});
const video = this.controls.getVideo();
goog.asserts.assert(video != null, 'Should have a video!');
this.eventManager.listen(video,
'webkitplaybacktargetavailabilitychanged', (e) => {
const event = /** @type {!AirPlayEvent} */ (e);
this.onAirPlayAvailabilityChange_(event);
});
this.eventManager.listen(video,
'webkitcurrentplaybacktargetiswirelesschanged', () => {
this.onAirPlayStatusChange_();
});
}
/**
* @private
*/
onAirPlayClick_() {
const video = this.controls.getVideo();
goog.asserts.assert(video != null, 'Should have a video!');
video.webkitShowPlaybackTargetPicker();
}
/**
* @param {!AirPlayEvent} e
* @private
*/
onAirPlayAvailabilityChange_(e) {
const canCast = e.availability == 'available';
const loadMode = this.player.getLoadMode();
const srcMode = loadMode == shaka.Player.LoadMode.SRC_EQUALS;
shaka.ui.Utils.setDisplay(this.airplayButton_, canCast && srcMode);
}
/**
* @private
*/
onAirPlayStatusChange_() {
const video = this.controls.getVideo();
goog.asserts.assert(video != null, 'Should have a video!');
const isCasting = video && video.webkitCurrentPlaybackTargetIsWireless;
// Aria-pressed set to true when casting, set to false otherwise.
if (isCasting) {
this.airplayButton_.ariaPressed = 'true';
} else {
this.airplayButton_.ariaPressed = 'false';
}
}
/**
* @private
*/
updateLocalizedStrings_() {
const LocIds = shaka.ui.Locales.Ids;
this.airplayButton_.ariaLabel = this.localization.resolve(LocIds.AIRPLAY);
this.airplayNameSpan_.textContent =
this.localization.resolve(LocIds.AIRPLAY);
}
};
/**
* @implements {shaka.extern.IUIElement.Factory}
* @final
*/
shaka.ui.AirPlayButton.Factory = class {
/** @override */
create(rootElement, controls) {
return new shaka.ui.AirPlayButton(rootElement, controls);
}
};
shaka.ui.OverflowMenu.registerElement(
'airplay', new shaka.ui.AirPlayButton.Factory());
shaka.ui.Controls.registerElement(
'airplay', new shaka.ui.AirPlayButton.Factory());