
assets.es-head.src.app.ux.templates.templates.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirius-search Show documentation
Show all versions of sirius-search Show documentation
Provides a thin layer above Elasticsearch (Fluent Query API, Automatic Mapping, Utilities)
The newest version!
(function( app ) {
var ut = app.ns("ut");
ut.option_template = function(v) { return { tag: "OPTION", value: v, text: v }; };
ut.require_template = function(f) { return f.require ? { tag: "SPAN", cls: "require", text: "*" } : null; };
var sib_prefix = ['B','ki','Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi', 'Yi'];
ut.byteSize_template = function(n) {
var i = 0;
while( n >= 1000 ) {
i++;
n /= 1024;
}
return (i === 0 ? n.toString() : n.toFixed( 3 - parseInt(n,10).toString().length )) + ( sib_prefix[ i ] || "..E" );
};
var sid_prefix = ['','k','M', 'G', 'T', 'P', 'E', 'Z', 'Y'];
ut.count_template = function(n) {
var i = 0;
while( n >= 1000 ) {
i++;
n /= 1000;
}
return i === 0 ? n.toString() : ( n.toFixed( 3 - parseInt(n,10).toString().length ) + ( sid_prefix[ i ] || "..E" ) );
};
})( this.app );
© 2015 - 2025 Weber Informatics LLC | Privacy Policy