1
/* Copyright (c) 2011, Canonical Ltd. All rights reserved. */
3
YUI().add('lp.configutils', function(Y) {
5
* The configutils module provides objects for managing the config
6
* or settings of a web page or widget.
8
* Widgets that want to be accessed from a settings/config
9
* icon should extend BaseConfigUtil and provide a callback that
10
* will run when the icon is clicked.
12
* @module lp.configutils
16
var CONTENT_BOX = 'contentBox',
17
EMPTY_FN = function() {};
20
* BaseConfigUtil is the base object that every FooConfigUtil
21
* object should extend.
23
* @class BaseConfigUtil
27
function BaseConfigUtil() {
28
BaseConfigUtil.superclass.constructor.apply(this, arguments);
31
BaseConfigUtil.NAME = 'baseconfigutil';
33
BaseConfigUtil.ATTRS = {
35
* A reference to the anchor element created during renderUI.
46
Y.extend(BaseConfigUtil, Y.Widget, {
49
* Hook for subclasses to do something when the settings
52
_handleClick: EMPTY_FN,
55
* Hook for subclasses to do work after renderUI.
57
_extraRenderUI: EMPTY_FN,
60
* Create the anchor element that will display the settings icon.
64
renderUI: function() {
65
var anchor = Y.Node.create(
66
'<a></a>').addClass('sprite').addClass('config');
67
anchor.set('title', 'Customise visible bug information');
68
this.set('anchor', anchor);
69
var content = this.get(CONTENT_BOX);
70
content.append(anchor);
71
this._extraRenderUI();
75
* Wire up the anchor element to _handleClick.
77
* Objects that extend BaseConfigUtil should create their own
78
* _handleClick method.
83
// Do some work here to set up click handlers.
84
// Add the a element to ATTRS.
85
var anchor = this.get('anchor');
87
anchor.on('click', function(e) {
94
var configutils = Y.namespace('lp.configutils');
95
configutils.BaseConfigUtil = BaseConfigUtil;
97
}, '0.1', {'requires': ['widget']});