mirror of
https://github.com/grocy/grocy.git
synced 2026-04-05 12:26:15 +02:00
103 lines
1.8 KiB
JavaScript
103 lines
1.8 KiB
JavaScript
function EmptyElementWhenMatches(selector, text)
|
|
{
|
|
if ($(selector).text() === text)
|
|
{
|
|
$(selector).text('');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function BoolVal(test)
|
|
{
|
|
if (!test)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var anything = test.toString().toLowerCase();
|
|
if (anything === true || anything === "true" || anything === "1" || anything === "on")
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function GetFileNameFromPath(path)
|
|
{
|
|
return path.split("/").pop().split("\\").pop();
|
|
}
|
|
|
|
$.extend($.expr[":"],
|
|
{
|
|
"contains_case_insensitive": function(elem, i, match, array)
|
|
{
|
|
return (elem.textContent || elem.innerText || "").toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
|
|
}
|
|
});
|
|
|
|
|
|
$.fn.hasAttr = function(name)
|
|
{
|
|
return this.attr(name) !== undefined;
|
|
};
|
|
|
|
function IsJsonString(text)
|
|
{
|
|
try
|
|
{
|
|
JSON.parse(text);
|
|
} catch (e)
|
|
{
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
$.fn.isVisibleInViewport = function(extraHeightPadding = 0)
|
|
{
|
|
var elementTop = $(this).offset().top;
|
|
var viewportTop = $(window).scrollTop() - extraHeightPadding;
|
|
|
|
return elementTop + $(this).outerHeight() > viewportTop && elementTop < viewportTop + $(window).height();
|
|
};
|
|
|
|
function animateCSS(selector, animationName, callback, speed = "faster")
|
|
{
|
|
var nodes = $(selector);
|
|
nodes.addClass('animated').addClass(speed).addClass(animationName);
|
|
|
|
function handleAnimationEnd()
|
|
{
|
|
nodes.removeClass('animated').removeClass(speed).removeClass(animationName);
|
|
nodes.unbind('animationend', handleAnimationEnd);
|
|
|
|
if (typeof callback === 'function')
|
|
{
|
|
callback();
|
|
}
|
|
}
|
|
|
|
nodes.on('animationend', handleAnimationEnd);
|
|
}
|
|
|
|
function RandomString()
|
|
{
|
|
return Math.random().toString(36).substring(2, 100) + Math.random().toString(36).substring(2, 100);
|
|
}
|
|
|
|
export
|
|
{
|
|
RandomString,
|
|
animateCSS,
|
|
IsJsonString,
|
|
BoolVal,
|
|
GetFileNameFromPath,
|
|
RemoveUriParam,
|
|
UpdateUriParam,
|
|
GetUriParam,
|
|
EmptyElementWhenMatches
|
|
} |