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
|
// Copyright 2015 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('downloads', function() {
var Toolbar = Polymer({
is: 'downloads-toolbar',
attached: function() {
// isRTL() only works after i18n_template.js runs to set <html dir>.
this.overflowAlign_ = isRTL() ? 'left' : 'right';
/** @private {!SearchFieldDelegate} */
this.searchFieldDelegate_ = new ToolbarSearchFieldDelegate(this);
this.$['search-input'].setDelegate(this.searchFieldDelegate_);
},
properties: {
downloadsShowing: {
reflectToAttribute: true,
type: Boolean,
value: false,
observer: 'onDownloadsShowingChange_',
},
overflowAlign_: {
type: String,
value: 'right',
},
},
/** @return {boolean} Whether removal can be undone. */
canUndo: function() {
return this.$['search-input'] != this.shadowRoot.activeElement;
},
/** @return {boolean} Whether "Clear all" should be allowed. */
canClearAll: function() {
return !this.$['search-input'].getValue() && this.downloadsShowing;
},
/** @private */
onClearAllTap_: function() {
assert(this.canClearAll());
downloads.ActionService.getInstance().clearAll();
},
/** @private */
onDownloadsShowingChange_: function() {
this.updateClearAll_();
},
/** @param {string} searchTerm */
onSearchTermSearch: function(searchTerm) {
downloads.ActionService.getInstance().search(searchTerm);
this.updateClearAll_();
},
/** @private */
onOpenDownloadsFolderTap_: function() {
downloads.ActionService.getInstance().openDownloadsFolder();
},
/** @private */
updateClearAll_: function() {
this.$$('#actions .clear-all').hidden = !this.canClearAll();
this.$$('paper-menu .clear-all').hidden = !this.canClearAll();
},
});
/**
* @constructor
* @implements {SearchFieldDelegate}
*/
// TODO(devlin): This is a bit excessive, and it would be better to just have
// Toolbar implement SearchFieldDelegate. But for now, we don't know how to
// make that happen with closure compiler.
function ToolbarSearchFieldDelegate(toolbar) {
this.toolbar_ = toolbar;
}
ToolbarSearchFieldDelegate.prototype = {
/** @override */
onSearchTermSearch: function(searchTerm) {
this.toolbar_.onSearchTermSearch(searchTerm);
}
};
return {Toolbar: Toolbar};
});
// TODO(dbeam): https://github.com/PolymerElements/iron-dropdown/pull/16/files
/** @suppress {checkTypes} */
(function() {
Polymer.IronDropdownScrollManager.pushScrollLock = function() {};
})();
|