Prettier for JS

This commit is contained in:
Valentin Silytuin 2025-01-21 15:43:11 +04:00
parent 6eba60b7cb
commit fc74787b78
1 changed files with 6 additions and 6 deletions

View File

@ -100,7 +100,7 @@ const setVideoSize = (gallery) => {
const hide = async (duration = 500, easing = 'linear') => { const hide = async (duration = 500, easing = 'linear') => {
const gallery = document.body.querySelector('.advdominion-lg'); const gallery = document.body.querySelector('.advdominion-lg');
await gallery.animate([{opacity: 1}, {opacity: 0}], { await gallery.animate([{ opacity: 1 }, { opacity: 0 }], {
duration, duration,
easing, easing,
}).finished; }).finished;
@ -121,14 +121,14 @@ const show = async (duration = 500, easing = 'linear') => {
margin-right: ${getScrollbarWidth()}px margin-right: ${getScrollbarWidth()}px
`; `;
await gallery.animate([{opacity: 0}, {opacity: 1}], { await gallery.animate([{ opacity: 0 }, { opacity: 1 }], {
duration, duration,
easing, easing,
}).finished; }).finished;
}; };
const init = async (items = [], options = {}, index = 0) => { const init = async (items = [], options = {}, index = 0) => {
const [{default: Swiper}, {Navigation, Pagination}] = await Promise.all([ const [{ default: Swiper }, { Navigation, Pagination }] = await Promise.all([
import('swiper'), import('swiper'),
import('swiper/modules'), import('swiper/modules'),
]); ]);
@ -244,7 +244,7 @@ const init = async (items = [], options = {}, index = 0) => {
${options.navigation || ''} ${options.navigation || ''}
</div> </div>
</div> </div>
` `,
); );
const gallery = document.body.querySelector('.advdominion-lg'); const gallery = document.body.querySelector('.advdominion-lg');
@ -257,7 +257,7 @@ const init = async (items = [], options = {}, index = 0) => {
const swiper = new Swiper( const swiper = new Swiper(
gallery.querySelector('.advdominion-lg__container'), gallery.querySelector('.advdominion-lg__container'),
Object.assign({modules: [Navigation, Pagination], init: false, initialSlide: index}, options.swiper) Object.assign({ modules: [Navigation, Pagination], init: false, initialSlide: index }, options.swiper),
); );
swiper.on('init', function () { swiper.on('init', function () {
@ -304,7 +304,7 @@ const init = async (items = [], options = {}, index = 0) => {
}, },
{ {
once: true, once: true,
} },
); );
}; };