403Webshell
Server IP : 185.208.173.17  /  Your IP : 87.236.161.98
Web Server : Microsoft-IIS/10.0
System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64
User : IUSR ( 0)
PHP Version : 7.4.13
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/parsmega.nuxt/node_modules/vue-slick-carousel/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/parsmega.nuxt/node_modules/vue-slick-carousel/src/VueSlickCarousel.vue
<script>
import json2mq from 'json2mq'

import mixinPropsUpdated from './mixinPropsUpdated'
import {
  cloneVNode,
  mergeVNodeData,
  setVNodeData,
  getStyle,
} from './vNodeUtils'
import { canUseDOM, filterUndefined } from './innerSliderUtils'
import { props, defaultValues } from './defaultProps'
import InnerSlider from './InnerSlider'

const enquire = canUseDOM() && require('enquire.js')

export default {
  name: 'VueSlickCarousel',
  components: {
    InnerSlider,
  },
  mixins: [mixinPropsUpdated],
  inheritAttrs: false,
  props,
  data() {
    return {
      breakpoint: null,
    }
  },
  computed: {
    settings() {
      const props = filterUndefined(this.$props)
      let settings
      let newProps

      if (this.breakpoint) {
        newProps = this.responsive.filter(
          resp => resp.breakpoint === this.breakpoint,
        )
        settings =
          newProps[0].settings === 'unslick'
            ? 'unslick'
            : {
                ...defaultValues,
                ...props,
                ...newProps[0].settings,
              }
      } else {
        settings = { ...defaultValues, ...props }
      }

      // force scrolling by one if centerMode is on
      if (settings.centerMode) {
        if (
          settings.slidesToScroll > 1 &&
          process.env.NODE_ENV !== 'production'
        ) {
          // eslint-disable-next-line no-console
          console.warn(
            `slidesToScroll should be equal to 1 in centerMode, you are using ${settings.slidesToScroll}`,
          )
        }
        settings.slidesToScroll = 1
      }
      // force showing one slide and scrolling by one if the fade mode is on
      if (settings.fade) {
        if (
          settings.slidesToShow > 1 &&
          process.env.NODE_ENV !== 'production'
        ) {
          // eslint-disable-next-line no-console
          console.warn(
            `slidesToShow should be equal to 1 when fade is true, you're using ${settings.slidesToShow}`,
          )
        }
        if (
          settings.slidesToScroll > 1 &&
          process.env.NODE_ENV !== 'production'
        ) {
          // eslint-disable-next-line no-console
          console.warn(
            `slidesToScroll should be equal to 1 when fade is true, you're using ${settings.slidesToScroll}`,
          )
        }
        settings.slidesToShow = 1
        settings.slidesToScroll = 1
      }

      // rows and slidesPerRow logic is handled here
      if (
        settings.variableWidth &&
        (settings.rows > 1 || settings.slidesPerRow > 1)
      ) {
        // eslint-disable-next-line no-console
        console.warn(
          `variableWidth is not supported in case of rows > 1 or slidesPerRow > 1`,
        )
        settings.variableWidth = false
      }

      return settings
    },
  },
  created() {
    this.makeBreakpoints()
  },
  beforeDestroy() {
    this.clearBreakpoints()
  },
  methods: {
    prev() {
      this.$refs.innerSlider.prev()
    },
    next() {
      this.$refs.innerSlider.next()
    },
    goTo(slide, dontAnimate = false) {
      this.$refs.innerSlider.goTo(slide, dontAnimate)
    },
    pause() {
      this.$refs.innerSlider.pause('paused')
    },
    play() {
      this.$refs.innerSlider.autoPlay('play')
    },
    onPropsUpdated() {
      this.clearBreakpoints()
      this.makeBreakpoints()
    },
    clearBreakpoints() {
      this.responsiveMediaHandlers.forEach(obj =>
        enquire.unregister(obj.query, obj.handler),
      )
      this.responsiveMediaHandlers = []
    },
    media(query, handler) {
      // javascript handler for  css media query
      // when not using server side rendering
      if (!canUseDOM()) {
        return
      }

      enquire.register(query, handler)
      this.responsiveMediaHandlers.push({ query, handler })
    },
    makeBreakpoints() {
      this.breakpoint = null
      this.responsiveMediaHandlers = []

      // handles responsive breakpoints
      if (this.responsive) {
        let breakpoints = this.responsive.map(breakpt => breakpt.breakpoint)
        // sort them in increasing order of their numerical value
        breakpoints.sort((x, y) => x - y)

        breakpoints.forEach((breakpoint, index) => {
          // media query for each breakpoint
          const mediaQuery = json2mq({
            minWidth: index === 0 ? 0 : breakpoints[index - 1] + 1,
            maxWidth: breakpoint,
          })
          this.media(mediaQuery, () => {
            this.breakpoint = breakpoint
          })
        })

        // Register media query for full screen. Need to support resize from small to large
        // convert javascript object to media query string
        const query = json2mq({
          minWidth: breakpoints.slice(-1)[0],
        })
        this.media(query, () => {
          this.breakpoint = null
        })
      }
    },
  },
  render() {
    const { settings } = this
    let children = this.$slots.default || []
    if (settings === 'unslick') {
      return <div class="regular slider">{children}</div>
    }
    settings.prevArrow = this.$scopedSlots.prevArrow
    settings.nextArrow = this.$scopedSlots.nextArrow
    settings.customPaging = this.$scopedSlots.customPaging
    children = children.filter(child => !!child.tag)

    let newChildren = []
    let currentWidth = null
    for (
      let i = 0;
      i < children.length;
      i += settings.rows * settings.slidesPerRow
    ) {
      let newSlide = []
      for (
        let j = i;
        j < i + settings.rows * settings.slidesPerRow;
        j += settings.slidesPerRow
      ) {
        let row = []
        for (let k = j; k < j + settings.slidesPerRow; k += 1) {
          if (settings.variableWidth && getStyle(children[k])) {
            currentWidth = getStyle(children[k]).width
          }
          if (k >= children.length) break
          let clonedVNode = cloneVNode(children[k])
          setVNodeData(clonedVNode, 'key', 100 * i + 10 * j + k)
          mergeVNodeData(clonedVNode, 'attrs', { tabIndex: -1 })
          mergeVNodeData(clonedVNode, 'style', {
            width: `${100 / settings.slidesPerRow}%`,
            display: 'inline-block',
          })
          row.push(clonedVNode)
        }
        newSlide.push(<div key={10 * i + j}>{row}</div>)
      }
      if (settings.variableWidth) {
        newChildren.push(
          <div key={i} style={{ width: currentWidth }}>
            {newSlide}
          </div>,
        )
      } else {
        newChildren.push(<div key={i}>{newSlide}</div>)
      }
    }

    if (newChildren.length <= settings.slidesToShow) {
      settings.unslick = true
    }

    return (
      <InnerSlider
        ref="innerSlider"
        {...{ props: settings }}
        key={Object.values(settings).join('')}>
        {newChildren}
      </InnerSlider>
    )
  },
}
</script>

Youez - 2016 - github.com/yon3zu
LinuXploit