myColloge-guide.tsx 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. import { NButton } from 'naive-ui';
  2. import {
  3. defineComponent,
  4. nextTick,
  5. onMounted,
  6. onUnmounted,
  7. reactive,
  8. ref,
  9. watch
  10. } from 'vue';
  11. import styles from './index.module.less';
  12. import { getImage } from './images';
  13. import { eventGlobal, px2vw } from '@/utils/index';
  14. import { getGuidance, setGuidance, setLocalGuidance } from './api';
  15. export default defineComponent({
  16. name: 'myColloge-guide',
  17. emits: ['close'],
  18. setup(props, { emit }) {
  19. const data = reactive({
  20. box: {
  21. height: '0px'
  22. } as any,
  23. show: false,
  24. /**
  25. *
  26. width: px2vw(840),
  27. height: px2vw(295)
  28. */
  29. steps: [
  30. {
  31. ele: '',
  32. img: getImage('myColloge1.png'),
  33. imgStyle: {
  34. top: px2vw(-4),
  35. left: px2vw(630),
  36. width: px2vw(458),
  37. height: px2vw(291)
  38. },
  39. btnsStyle: {
  40. bottom: px2vw(96),
  41. left: px2vw(790)
  42. },
  43. eleRectPadding: {
  44. left: 7,
  45. top: 7,
  46. width: 14,
  47. height: 14
  48. },
  49. type: 'bottom'
  50. }
  51. ],
  52. step: 0
  53. });
  54. const tipShow = ref(false);
  55. const guideInfo = ref({} as any);
  56. const getAllGuidance = async () => {
  57. try {
  58. // const res = await getGuidance({ guideTag: 'teacher-guideInfo' });
  59. // if (res.data) {
  60. // guideInfo.value = JSON.parse(res.data?.guideValue) || null;
  61. // } else {
  62. // guideInfo.value = {};
  63. // }
  64. const res = localStorage.getItem('teacher-guideInfo');
  65. if (res) {
  66. guideInfo.value = JSON.parse(res) || null;
  67. } else {
  68. guideInfo.value = {};
  69. }
  70. if (guideInfo.value && guideInfo.value.myColloge) {
  71. tipShow.value = false;
  72. } else {
  73. tipShow.value = true;
  74. }
  75. } catch (e) {
  76. console.log(e);
  77. }
  78. // const guideInfo = localStorage.getItem('teacher-guideInfo');
  79. };
  80. getAllGuidance();
  81. // const guideInfo = localStorage.getItem('teacher-guideInfo');
  82. // if (guideInfo && JSON.parse(guideInfo).myColloge) {
  83. // tipShow.value = false;
  84. // } else {
  85. // tipShow.value = true;
  86. // }
  87. const getStepELe = () => {
  88. const ele: HTMLElement = document.getElementById(
  89. `myColloge-${data.step}`
  90. )!;
  91. if (ele) {
  92. const eleRect = ele.getBoundingClientRect();
  93. const left = data.steps[data.step].eleRectPadding?.left || 0;
  94. const top = data.steps[data.step].eleRectPadding?.top || 0;
  95. const width = data.steps[data.step].eleRectPadding?.width || 0;
  96. const height = data.steps[data.step].eleRectPadding?.height || 0;
  97. data.box = {
  98. left: eleRect.x - left + 'px',
  99. top: eleRect.y - top + 'px',
  100. width: eleRect.width + width + 'px',
  101. height: eleRect.height + height + 'px'
  102. };
  103. // console.log(`coai-${data.step}`, data.box);
  104. } else {
  105. handleNext();
  106. }
  107. };
  108. const onResetGuide = async (name: string) => {
  109. try {
  110. console.log(name);
  111. if (name !== 'myCollect') return;
  112. console.log(name, 'name');
  113. if (!guideInfo.value) {
  114. guideInfo.value = { myColloge: false };
  115. } else {
  116. guideInfo.value.myColloge = false;
  117. }
  118. try {
  119. setLocalGuidance({
  120. guideTag: 'teacher-guideInfo',
  121. guideValue: JSON.stringify(guideInfo.value)
  122. });
  123. } catch (e) {
  124. console.log(e);
  125. }
  126. data.step = 0;
  127. getStepELe();
  128. tipShow.value = true;
  129. } catch {
  130. //
  131. }
  132. };
  133. onMounted(() => {
  134. getStepELe();
  135. window.addEventListener('resize', resetSize);
  136. eventGlobal.on('natural-resources-guide', (name: string) =>
  137. onResetGuide(name)
  138. );
  139. });
  140. const resetSize = () => {
  141. getStepELe();
  142. };
  143. onUnmounted(() => {
  144. window.removeEventListener('resize', resetSize);
  145. eventGlobal.off('natural-resources-guide', onResetGuide);
  146. });
  147. const handleNext = () => {
  148. if (data.step >= 4) {
  149. endGuide();
  150. return;
  151. }
  152. data.step = data.step + 1;
  153. getStepELe();
  154. };
  155. const endGuide = async () => {
  156. // let guideInfo =
  157. // JSON.parse(localStorage.getItem('teacher-guideInfo') || '{}') || null;
  158. if (!guideInfo.value) {
  159. guideInfo.value = { myColloge: true };
  160. } else {
  161. guideInfo.value.myColloge = true;
  162. }
  163. try {
  164. setLocalGuidance({
  165. guideTag: 'teacher-guideInfo',
  166. guideValue: JSON.stringify(guideInfo.value)
  167. });
  168. } catch (e) {
  169. console.log(e);
  170. }
  171. // localStorage.setItem('teacher-guideInfo', JSON.stringify(guideInfo));
  172. tipShow.value = false;
  173. // localStorage.setItem('endC')
  174. };
  175. return () => (
  176. <>
  177. {tipShow.value ? (
  178. <div
  179. v-model:show={tipShow.value}
  180. class={['n-modal-mask', 'n-modal-mask-guide']}>
  181. <div class={styles.content} onClick={() => handleNext()}>
  182. <div
  183. class={styles.backBtn}
  184. onClick={(e: Event) => {
  185. e.stopPropagation();
  186. endGuide();
  187. }}>
  188. 跳过
  189. </div>
  190. <div
  191. class={styles.box}
  192. style={{ ...data.box }}
  193. id={`modeType-${data.step}`}>
  194. {data.steps.map((item: any, index) => (
  195. <div
  196. onClick={(e: Event) => e.stopPropagation()}
  197. class={styles.item}
  198. style={
  199. item.type == 'bottom'
  200. ? {
  201. display: index === data.step ? '' : 'none',
  202. left: `${item.eleRect?.left}px`,
  203. top: `-${item.imgStyle?.height}`
  204. }
  205. : {
  206. display: index === data.step ? '' : 'none',
  207. left: `${item.eleRect?.left}px`,
  208. top: `${data.box?.height}`
  209. }
  210. }>
  211. <img
  212. class={styles.img}
  213. style={item.imgStyle}
  214. src={item.img}
  215. />
  216. {/* <img
  217. class={styles.iconHead}
  218. style={item.handStyle}
  219. src={getImage('indexDot.png')}
  220. /> */}
  221. <div class={styles.btns} style={item.btnsStyle}>
  222. {data.step + 1 == data.steps.length ? (
  223. <>
  224. <div
  225. class={[styles.endBtn]}
  226. onClick={() => endGuide()}>
  227. 完成
  228. </div>
  229. {/* <div
  230. class={styles.nextBtn}
  231. onClick={() => {
  232. data.step = 0;
  233. getStepELe();
  234. }}>
  235. 再看一遍
  236. </div> */}
  237. </>
  238. ) : (
  239. <div class={styles.btn} onClick={() => handleNext()}>
  240. 下一步 ({data.step + 1}/{data.steps.length})
  241. </div>
  242. )}
  243. </div>
  244. </div>
  245. ))}
  246. </div>
  247. </div>
  248. </div>
  249. ) : null}
  250. </>
  251. );
  252. }
  253. });