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
|
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 3.0.0pr2
*/
YUI.add('classnamemanager', function(Y) {
/**
* Contains a singleton (ClassNameManager) that enables easy creation and caching of
* prefixed class names.
* @module classnamemanager
*/
/**
* A singleton class providing:
*
* <ul>
* <li>Easy creation of prefixed class names</li>
* <li>Caching of previously created class names for improved performance.</li>
* </ul>
*
* @class ClassNameManager
* @static
*/
// String constants
var CLASS_NAME_PREFIX = 'classNamePrefix',
CLASS_NAME_DELIMITER = 'classNameDelimiter';
// Global config
/**
* Configuration property indicating the prefix for all CSS class names in this YUI instance.
*
* @property Y.config.classNamePrefix
* @type {String}
* @default "yui"
* @static
*/
Y.config[CLASS_NAME_PREFIX] = Y.config[CLASS_NAME_PREFIX] || 'yui';
/**
* Configuration property indicating the delimiter used to compose all CSS class names in
* this YUI instance.
*
* @property Y.config.classNameDelimiter
* @type {String}
* @default "-"
* @static
*/
Y.config[CLASS_NAME_DELIMITER] = Y.config[CLASS_NAME_DELIMITER] || '-';
Y.ClassNameManager = function () {
var sPrefix = Y.config[CLASS_NAME_PREFIX],
sDelimiter = Y.config[CLASS_NAME_DELIMITER],
classNames = {};
return {
/**
* Returns a class name prefixed with the the value of the
* <code>Y.config.classNamePrefix</code> attribute + the provided strings.
* Uses the <code>Y.config.classNameDelimiter</code> attribute to delimit the
* provided strings. E.g. Y.ClassNameManager.getClassName('foo','bar'); // yui-foo-bar
*
*
* @method getClassName
* @param {String}+ one or more classname bits to be joined and prefixed
*/
getClassName: function (c,x) {
// Test for multiple classname bits
if (x) {
c = Y.Array(arguments,0,true).join(sDelimiter);
}
// memoize in classNames map
return classNames[c] || (classNames[c] = sPrefix + sDelimiter + c);
}
};
}();
}, '3.0.0pr2' );
|