Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/vue-lazyload/src/ drwxr-xr-x |
Viewing file: Select action/file-type: import { inBrowser, loadImageAsync, noop } from './util' import Lazy from './lazy' const LazyImage = (lazyManager) => { return { props: { src: [String, Object], tag: { type: String, default: 'img' } }, render (h) { return h(this.tag, { attrs: { src: this.renderSrc } }, this.$slots.default) }, data () { return { el: null, options: { src: '', error: '', loading: '', attempt: lazyManager.options.attempt }, state: { loaded: false, error: false, attempt: 0 }, rect: {}, renderSrc: '' } }, watch: { src () { this.init() lazyManager.addLazyBox(this) lazyManager.lazyLoadHandler() } }, created () { this.init() this.renderSrc = this.options.loading }, mounted () { this.el = this.$el lazyManager.addLazyBox(this) lazyManager.lazyLoadHandler() }, beforeDestroy () { lazyManager.removeComponent(this) }, methods: { init () { const { src, loading, error } = lazyManager._valueFormatter(this.src) this.state.loaded = false this.options.src = src this.options.error = error this.options.loading = loading this.renderSrc = this.options.loading }, getRect () { this.rect = this.$el.getBoundingClientRect() }, checkInView () { this.getRect() return inBrowser && (this.rect.top < window.innerHeight * lazyManager.options.preLoad && this.rect.bottom > 0) && (this.rect.left < window.innerWidth * lazyManager.options.preLoad && this.rect.right > 0) }, load (onFinish = noop) { if ((this.state.attempt > this.options.attempt - 1) && this.state.error) { if (!lazyManager.options.silent) console.log(`VueLazyload log: ${this.options.src} tried too more than ${this.options.attempt} times`) onFinish() return } const src = this.options.src loadImageAsync({ src }, ({ src }) => { this.renderSrc = src this.state.loaded = true }, e => { this.state.attempt++ this.renderSrc = this.options.error this.state.error = true }) } } } } LazyImage.install = (Vue, options = {}) => { const LazyClass = Lazy(Vue) const lazy = new LazyClass(options) Vue.component('lazy-image', LazyImage(lazy)) } export default LazyImage |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]-- |