|
-
- export const extend = ( a, b ) => {
-
- for( let i in b ) {
- a[ i ] = b[ i ];
- }
-
- return a;
-
- }
-
-
- export const queryAll = ( el, selector ) => {
-
- return Array.from( el.querySelectorAll( selector ) );
-
- }
-
-
- export const toggleClass = ( el, className, value ) => {
- if( value ) {
- el.classList.add( className );
- }
- else {
- el.classList.remove( className );
- }
- }
-
-
- export const deserialize = ( value ) => {
-
- if( typeof value === 'string' ) {
- if( value === 'null' ) return null;
- else if( value === 'true' ) return true;
- else if( value === 'false' ) return false;
- else if( value.match( /^-?[\d\.]+$/ ) ) return parseFloat( value );
- }
-
- return value;
-
- }
-
-
- export const distanceBetween = ( a, b ) => {
-
- let dx = a.x - b.x,
- dy = a.y - b.y;
-
- return Math.sqrt( dx*dx + dy*dy );
-
- }
-
-
- export const transformElement = ( element, transform ) => {
-
- element.style.transform = transform;
-
- }
-
-
- export const matches = ( target, selector ) => {
-
- let matchesMethod = target.matches || target.matchesSelector || target.msMatchesSelector;
-
- return !!( matchesMethod && matchesMethod.call( target, selector ) );
-
- }
-
-
- export const closest = ( target, selector ) => {
-
-
- if( typeof target.closest === 'function' ) {
- return target.closest( selector );
- }
-
-
- while( target ) {
- if( matches( target, selector ) ) {
- return target;
- }
-
-
- target = target.parentNode;
- }
-
- return null;
-
- }
-
-
- export const enterFullscreen = element => {
-
- element = element || document.documentElement;
-
-
- let requestMethod = element.requestFullscreen ||
- element.webkitRequestFullscreen ||
- element.webkitRequestFullScreen ||
- element.mozRequestFullScreen ||
- element.msRequestFullscreen;
-
- if( requestMethod ) {
- requestMethod.apply( element );
- }
-
- }
-
-
- export const createSingletonNode = ( container, tagname, classname, innerHTML='' ) => {
-
-
- let nodes = container.querySelectorAll( '.' + classname );
-
-
-
- for( let i = 0; i < nodes.length; i++ ) {
- let testNode = nodes[i];
- if( testNode.parentNode === container ) {
- return testNode;
- }
- }
-
-
- let node = document.createElement( tagname );
- node.className = classname;
- node.innerHTML = innerHTML;
- container.appendChild( node );
-
- return node;
-
- }
-
-
- export const createStyleSheet = ( value ) => {
-
- let tag = document.createElement( 'style' );
- tag.type = 'text/css';
-
- if( value && value.length > 0 ) {
- if( tag.styleSheet ) {
- tag.styleSheet.cssText = value;
- }
- else {
- tag.appendChild( document.createTextNode( value ) );
- }
- }
-
- document.head.appendChild( tag );
-
- return tag;
-
- }
-
-
- export const getQueryHash = () => {
-
- let query = {};
-
- location.search.replace( /[A-Z0-9]+?=([\w\.%-]*)/gi, a => {
- query[ a.split( '=' ).shift() ] = a.split( '=' ).pop();
- } );
-
-
- for( let i in query ) {
- let value = query[ i ];
-
- query[ i ] = deserialize( unescape( value ) );
- }
-
-
-
- if( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];
-
- return query;
-
- }
-
-
- export const getRemainingHeight = ( element, height = 0 ) => {
-
- if( element ) {
- let newHeight, oldHeight = element.style.height;
-
-
-
- element.style.height = '0px';
-
-
-
- element.parentNode.style.height = 'auto';
-
- newHeight = height - element.parentNode.offsetHeight;
-
-
- element.style.height = oldHeight + 'px';
-
-
- element.parentNode.style.removeProperty('height');
-
- return newHeight;
- }
-
- return height;
-
- }
|