OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 cr.define('options', function() { | |
6 const OptionsPage = options.OptionsPage; | |
7 | |
8 ///////////////////////////////////////////////////////////////////////////// | |
9 // HandlerOptions class: | |
10 | |
11 /** | |
12 * Encapsulated handling of handler options page. | |
13 * @constructor | |
14 */ | |
15 function HandlerOptions() { | |
16 this.activeNavTab = null; | |
17 OptionsPage.call(this, | |
18 'handlers', | |
19 templateData.handlersPageTabTitle, | |
20 'handler-options'); | |
21 } | |
22 | |
23 cr.addSingletonGetter(HandlerOptions); | |
24 | |
25 HandlerOptions.prototype = { | |
26 __proto__: OptionsPage.prototype, | |
27 | |
28 /** | |
29 * The handlers list. | |
30 * @type {DeletableItemList} | |
31 * @private | |
32 */ | |
33 handlersList_: null, | |
34 | |
35 /** @inheritDoc */ | |
36 initializePage: function() { | |
37 OptionsPage.prototype.initializePage.call(this); | |
38 | |
39 this.createHandlersList_(); | |
40 }, | |
41 | |
42 /** | |
43 * Creates, decorates and initializes the handlers list. | |
44 * @private | |
45 */ | |
46 createHandlersList_: function() { | |
47 this.handlersList_ = $('handlers-list'); | |
48 options.HandlersList.decorate(this.handlersList_); | |
49 this.handlersList_.autoExpands = true; | |
50 | |
51 this.ignoredHandlersList_ = $('ignored-handlers-list'); | |
52 options.IgnoredHandlersList.decorate(this.ignoredHandlersList_); | |
53 this.ignoredHandlersList_.autoExpands = true; | |
54 }, | |
55 }; | |
56 | |
57 /** | |
58 * Sets the list of handlers shown by the view. | |
59 * @param handlers to be shown in the view. | |
60 */ | |
61 HandlerOptions.setHandlers = function(handlers) { | |
62 $('handlers-list').setHandlers(handlers); | |
63 }; | |
64 | |
65 /** | |
66 * Sets the list of ignored handlers shown by the view. | |
67 * @param handlers to be shown in the view. | |
68 */ | |
69 HandlerOptions.setIgnoredHandlers = function(handlers) { | |
70 $('ignored-handlers-section').hidden = handlers.length == 0; | |
71 $('ignored-handlers-list').setHandlers(handlers); | |
72 }; | |
73 | |
74 return { | |
75 HandlerOptions: HandlerOptions | |
76 }; | |
77 }); | |
OLD | NEW |