@furystack/shades-common-components
Version:
38 lines • 1.63 kB
JavaScript
import { Shade, createComponent } from '@furystack/shades';
import { ThemeProviderService } from '../services/theme-provider-service.js';
import { promisifyAnimation } from '../utils/promisify-animation.js';
export const Loader = Shade({
shadowDomName: 'shade-loader',
style: {
display: 'inline-block',
transformOrigin: 'center',
opacity: '0',
},
render: ({ element, props, injector }) => {
const { theme } = injector.getInstance(ThemeProviderService);
const { delay = 500 } = props;
const { borderWidth = 15 } = props;
const { borderColor = theme.palette.primary.main } = props;
setTimeout(() => {
void promisifyAnimation(element, [{ opacity: '0' }, { opacity: '1' }], {
duration: 500,
delay,
fill: 'forwards',
});
void promisifyAnimation(element.firstElementChild, [{ transform: 'rotate(0deg)' }, { transform: 'rotate(180deg)' }, { transform: 'rotate(360deg)' }], {
duration: 1500,
easing: 'ease-in-out',
iterations: Infinity,
});
}, 1);
return (createComponent("div", { style: {
position: 'relative',
width: `calc(100% - ${borderWidth * 2}px)`,
height: `calc(100% - ${borderWidth * 2}px)`,
border: `${borderWidth}px solid rgba(128,128,128,0.1)`,
borderBottom: `${borderWidth}px solid ${borderColor}`,
borderRadius: '50%',
} }));
},
});
//# sourceMappingURL=loader.js.map