cardMixins.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // https://forum.vuejs.org/t/how-to-use-helper-functions-for-imported-modules-in-vuejs-vue-template/6266/5
  2. export default {
  3. directives: {
  4. lazy: {
  5. bind (figure, binding) {
  6. console.log('directive lazy bind', figure, binding)
  7. // show only the first image
  8. if (binding.value === 0) {
  9. const img = figure.querySelector('img:not(.blank)')
  10. figure.classList.add('loading')
  11. img.addEventListener('load', function (e) {
  12. console.log('img loaded', e)
  13. figure.classList.remove('loading')
  14. figure.classList.add('loaded')
  15. })
  16. img.addEventListener('error', function (e) {
  17. console.error('img ERROR', e)
  18. e.target.classList.remove('loading')
  19. e.target.classList.add('error')
  20. })
  21. img.setAttribute('src', img.getAttribute('data-src'))
  22. // img.removeAttribute('data-src')
  23. // img.classList.remove('lazy')
  24. }
  25. }
  26. },
  27. switcher: {
  28. inserted (el, binding) {
  29. // switch images on mousemove
  30. el.addEventListener('mousemove', function (event) {
  31. const figs = this.querySelectorAll('figure.loaded')
  32. // console.log('mousemove', this, event, figs.length)
  33. // let len = figs.length
  34. // let w = this.clientWidth;
  35. // let g = w / len;
  36. // let delta = Math.floor(event.layerX / g)
  37. const delta = Math.floor(event.layerX / (this.clientWidth / figs.length))
  38. // console.log('delta', delta)
  39. figs.forEach((fig, index) => {
  40. // console.log(index)
  41. if (index === delta) {
  42. // fig.style.display = "block"
  43. fig.classList.remove('hide')
  44. fig.classList.add('show')
  45. } else {
  46. // fig.style.display = "none"
  47. fig.classList.remove('show')
  48. fig.classList.add('hide')
  49. }
  50. })
  51. })
  52. }
  53. }
  54. },
  55. mounted () {
  56. // lazy load images on mouseover
  57. console.log('card mounted', this.$options.name)
  58. // if (this.$options.name ==! 'ModalCard') {
  59. this.activateLazyLoad()
  60. // }
  61. },
  62. updated () {
  63. // lazy load images on mouseover
  64. console.log('card mounted', this.$options.name)
  65. // if (this.$options.name ==! 'ModalCard') {
  66. this.activateLazyLoad()
  67. // }
  68. },
  69. methods: {
  70. // used by ModalCard
  71. activateLazyLoad () {
  72. console.log('card activateLazyLoad', this.$options.name)
  73. this.$el.addEventListener('mouseover', function (event) {
  74. const figures = this.querySelectorAll('.images figure.lazy:not(.loaded):not(.loading)')
  75. // console.log('mousemove', this, imgs)
  76. figures.forEach((figure, index) => {
  77. const img = figure.querySelector('img:not(.blank)')
  78. // console.log('forEach img',img)
  79. img.classList.add('loading')
  80. img.addEventListener('load', function (e) {
  81. // console.log('img loaded', e)
  82. figure.classList.remove('loading')
  83. figure.classList.add('loaded')
  84. })
  85. img.addEventListener('error', function (e) {
  86. console.error('img ERROR', figure, e)
  87. })
  88. const src = img.getAttribute('data-src')
  89. // for debug purpose
  90. console.log(figures.length, index)
  91. // let src = img.getAttribute('data-src')
  92. // if (index > 0 && index < figures.length - 1) {
  93. // src = img.getAttribute('data-src').replace('?', '/bad?')
  94. // }
  95. img.setAttribute('src', src)
  96. // img.removeAttribute('data-src')
  97. // img.classList.remove('lazy')
  98. })
  99. }, { once: true })
  100. }
  101. }
  102. }