|
|
|
"use strict";
|
|
|
|
|
|
|
|
var components = components || {};
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
components.core = {
|
|
|
|
'post': function(name, value) {
|
|
|
|
return $('[data-' + name + '="' + value + '"]');
|
|
|
|
},
|
|
|
|
'post/content': function(pid) {
|
|
|
|
var el = components.core.post('pid', pid).find('[component="post/content"]');
|
|
|
|
return el.length ? el : $('#content_' + pid); // deprecated after 0.7x
|
|
|
|
},
|
|
|
|
'post/header': function(pid) {
|
|
|
|
var el = components.core.post('pid', pid).find('[component="post/header"]');
|
|
|
|
return el.length ? el : $('#topic_title_' + pid); // deprecated after 0.7x
|
|
|
|
},
|
|
|
|
'post/anchor': function(index) {
|
|
|
|
var el = components.core.post('index', index).find('[component="post/anchor"]');
|
|
|
|
return el.length ? el : $('#post_anchor_' + index); // deprecated after 0.7x
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
components.get = function() {
|
|
|
|
var args = Array.prototype.slice.call(arguments, 1);
|
|
|
|
|
|
|
|
if (components.core[arguments[0]] && args.length) {
|
|
|
|
return components.core[arguments[0]].apply(this, args);
|
|
|
|
} else {
|
|
|
|
return $('[component="' + arguments[0] + '"]');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}());
|