import { NButton } from 'naive-ui'; import { defineComponent, nextTick, onMounted, onUnmounted, reactive, ref, watch } from 'vue'; import styles from './index.module.less'; import { getImage } from './images'; import { eventGlobal, px2vw, px2vwH } from '@/utils/index'; import { getGuidance, setGuidance } from './api'; export default defineComponent({ name: 'train-guide', emits: ['close'], setup(props, { emit }) { const data = reactive({ box: { height: '0px' } as any, show: false, /** * width: px2vw(840), height: px2vw(295) */ steps: [ { ele: '', eleRect: {} as DOMRect, img: getImage('train3.png'), handStyle: { top: '-0.91rem' }, imgStyle: { top: px2vw(-360), left: px2vw(-170), width: px2vw(591), height: px2vw(302) }, btnsStyle: { top: px2vw(-205), left: px2vw(-10) }, eleRectPadding: { left: 7, top: 7, width: 14, height: 14 } } ], step: 0 }); const tipShow = ref(false); const guideInfo = ref({} as any); const getAllGuidance = async () => { try { const res = await getGuidance({ guideTag: 'teacher-guideInfo' }); if (res.data) { guideInfo.value = JSON.parse(res.data?.guideValue) || null; } else { guideInfo.value = {}; } if (guideInfo.value && guideInfo.value.trainGuide) { tipShow.value = false; } else { tipShow.value = true; } } catch (e) { console.log(e); } // const guideInfo = localStorage.getItem('teacher-guideInfo'); }; getAllGuidance(); // const guideInfo = localStorage.getItem('teacher-guideInfo'); // if (guideInfo && JSON.parse(guideInfo).trainGuide) { // tipShow.value = false; // } else { // tipShow.value = true; // } const getStepELe = () => { const ele: HTMLElement = document.getElementById(`train-${data.step}`)!; if (ele) { const eleRect = ele.getBoundingClientRect(); const left = data.steps[data.step].eleRectPadding?.left || 0; const top = data.steps[data.step].eleRectPadding?.top || 0; const width = data.steps[data.step].eleRectPadding?.width || 0; const height = data.steps[data.step].eleRectPadding?.height || 0; data.box = { left: eleRect.x - left + 'px', top: eleRect.y - top + 'px', width: eleRect.width + width + 'px', height: eleRect.height + height + 'px' }; // console.log(`coai-${data.step}`, data.box); } else { handleNext(); } }; const onResetGuide = async (name: string) => { try { if (name !== 'train') return; if (!guideInfo.value) { guideInfo.value = { trainGuide: false }; } else { guideInfo.value.trainGuide = false; } try { await setGuidance({ guideTag: 'teacher-guideInfo', guideValue: JSON.stringify(guideInfo.value) }); } catch (e) { console.log(e); } data.step = 0; getStepELe(); tipShow.value = true; } catch { // } }; onMounted(() => { getStepELe(); window.addEventListener('resize', resetSize); eventGlobal.on('teacher-guideInfo', onResetGuide); }); const resetSize = () => { getStepELe(); }; onUnmounted(() => { window.removeEventListener('resize', resetSize); eventGlobal.off('teacher-guideInfo', onResetGuide); }); const handleNext = () => { if (data.step >= 4) { endGuide(); return; } data.step = data.step + 1; getStepELe(); }; const endGuide = async () => { // let guideInfo = // JSON.parse(localStorage.getItem('teacher-guideInfo') || '{}') || null; if (!guideInfo.value) { guideInfo.value = { trainGuide: true }; } else { guideInfo.value.trainGuide = true; } try { const res = await setGuidance({ guideTag: 'teacher-guideInfo', guideValue: JSON.stringify(guideInfo.value) }); } catch (e) { console.log(e); } // localStorage.setItem('teacher-guideInfo', JSON.stringify(guideInfo)); tipShow.value = false; // localStorage.setItem('endC') }; return () => ( <> {tipShow.value ? (