No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

step.js 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. layui.define(['jquery', 'carousel', 'laytpl'],exports => {
  2. let $ = layui.jquery
  3. let carousel = layui.carousel
  4. let laytpl = layui.laytpl
  5. let processTpl = `
  6. <div id="StepWrapper">
  7. <div class="s-step">
  8. {{# layui.each(d.nodes, (index, item) => {}}
  9. <div class="
  10. s-circle
  11. {{# if(index === 0) {}}
  12. active
  13. {{# } }}
  14. ">
  15. <div class="s-num">{{ index + 1 }}</div>
  16. <div class="tip">{{ item.tip }}</div>
  17. </div>
  18. {{# if(index !== d.nodes.length -1 ) { }}
  19. <div class="s-line"></div>
  20. {{# } }}
  21. {{# });}}
  22. </div>
  23. </div>
  24. `
  25. let contentTpl = `
  26. <div id="StepWrapper_content">
  27. <div class="layui-carousel" id="Content_Main">
  28. <div id="Carousel_item" carousel-item></div>
  29. </div>
  30. </div>
  31. `
  32. let renderProcess = (dom, nodes) => {
  33. nodes = nodes || []
  34. laytpl(processTpl).render({ nodes }, html => {
  35. $(dom).append(html)
  36. })
  37. }
  38. let renderContent = (dom, contents) => {
  39. laytpl(contentTpl).render({}, html => {
  40. $(dom).append(html)
  41. })
  42. contents = contents || []
  43. contents.forEach(item => {
  44. let tpl = `<div class="item">
  45. ${item._tpl}
  46. </div>`
  47. laytpl(tpl).render(item.ctx, html => {
  48. $('#Carousel_item').append(html)
  49. })
  50. })
  51. }
  52. let getCurrent = () => {
  53. let circles = $('.s-circle')
  54. let reservIndex = 0
  55. circles.each((index, item) => {
  56. if($(item).hasClass('active')) {
  57. reservIndex = index
  58. }
  59. })
  60. return reservIndex
  61. }
  62. let updateState = (dir) => {
  63. let circles = $('.s-circle')
  64. let reservIndex = getCurrent()
  65. $(circles[reservIndex]).removeClass('active')
  66. if(dir === 'prev'){
  67. $(circles[reservIndex - 1 < 0 ? 2 : reservIndex - 1]).addClass('active')
  68. $('.layui-carousel-arrow[lay-type=sub]').trigger('click')
  69. } else {
  70. $(circles[(reservIndex + 1) % circles.length]).addClass('active')
  71. $('.layui-carousel-arrow[lay-type=add]').trigger('click')
  72. }
  73. }
  74. let lock = false;
  75. let updateWidthLock = (dir) => {
  76. if(lock) {
  77. return
  78. }
  79. lock = true
  80. updateState(dir)
  81. setTimeout(() => lock = false, 300);
  82. }
  83. let freshHeight = () => {
  84. setTimeout(() => {
  85. let currentItem = $('.item.layui-this')
  86. let firstChild = currentItem.children(':first')[0]
  87. $(currentItem).height(firstChild.scrollHeight)
  88. $('#Carousel_item').height(firstChild.scrollHeight)
  89. $('#StepWrapper_content').height(firstChild.scrollHeight)
  90. }, 300)
  91. }
  92. let prev = () => {
  93. updateWidthLock('prev')
  94. freshHeight()
  95. }
  96. let next = () => {
  97. updateWidthLock('next')
  98. freshHeight()
  99. }
  100. let run = (options) => {
  101. renderProcess(options.elem, options.nodes)
  102. renderContent(options.elem, options.contents)
  103. setTimeout(()=>{
  104. carousel.render({
  105. elem: '#Content_Main',
  106. width: '100%',
  107. // height: options.contentHeight || '20rem',
  108. indicator: 'none',
  109. autoplay: false
  110. })
  111. $('.layui-carousel-arrow').css({
  112. display: 'none'
  113. })
  114. let stepWidth = options.stepWidth || '16rem'
  115. let contentWidth = options.contentWidth || '100%'
  116. let stepCount = options.nodes || []
  117. $('.s-step').width(stepWidth)
  118. $('#StepWrapper_content').width(contentWidth)
  119. $('.s-step > .s-line').css({
  120. width: `calc((100% - 1.5rem * ${stepCount.length}) / ${stepCount.length - 1})`
  121. })
  122. let tips = $('.s-circle > .tip')
  123. let length = $($('.s-circle')[0]).width() + $($('.s-line')[0]).width()
  124. tips.each((index, item) => {
  125. $(item).width(length / 2)
  126. })
  127. let stepWrapperLength = $('.s-step').width() + length / 2
  128. $('#StepWrapper').width(stepWrapperLength)
  129. // $('.prev').each((index, item) => {
  130. // $(item).on('click', e => {
  131. // updateWidthLock('prev')
  132. // })
  133. // })
  134. // $('.next').each((index, item) => {
  135. // $(item).on('click', e => {
  136. // updateWidthLock('next')
  137. // })
  138. // })
  139. })
  140. }
  141. exports('step', {
  142. run,
  143. prev,
  144. next,
  145. getCurrent,
  146. freshHeight
  147. })
  148. })