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, setLocalGuidance } from './api'; export default defineComponent({ name: 'coai-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('home1.png'), handStyle: { top: '0.91rem' }, imgStyle: { top: px2vw(-400 / 2), left: px2vw(-734 / 2), width: px2vw(734), height: px2vw(295) }, btnsStyle: { bottom: px2vw(240), left: px2vw(-128) }, boxStyle: { border: 'none', width: 0, height: 0, backgroundColor: 'transparent', position: 'fixed', top: `50%`, left: '50%' // visibility: 'hidden' }, eleRectPadding: { left: 0, top: 0, width: 0, height: 0 } }, { ele: '', img: getImage('home2.png'), imgStyle: { top: '100%', left: px2vw(-290), width: px2vw(401), height: px2vw(227) }, btnsStyle: { bottom: '30px', left: px2vw(-130) }, boxStyle: {}, eleRectPadding: { left: 7, top: 7, width: 14, height: 14 } }, { ele: '', img: getImage('home6.png'), imgStyle: { top: '100%', left: px2vw(-310), width: px2vw(477), height: px2vw(227) }, btnsStyle: { bottom: '30px', left: px2vw(-150) }, boxStyle: {}, eleRectPadding: { left: 7, top: 7, width: 14, height: 14 } }, { ele: '', img: getImage('home4.png'), imgStyle: { top: '100%', left: px2vw(-310), width: px2vw(477), height: px2vw(227) }, btnsStyle: { bottom: '30px', left: px2vw(-150) }, boxStyle: {}, eleRectPadding: { left: 7, top: 7, width: 14, height: 14 } }, { ele: '', img: getImage('home3.png'), handStyle: { top: '-1.39rem', left: '0.17rem', transform: 'rotate(180deg)' }, imgStyle: { top: px2vw(-4), width: px2vw(454), height: px2vw(227), left: px2vw(-150) }, btnsStyle: { bottom: '30px', left: px2vw(8) }, boxStyle: { borderRadius: '30px' }, eleRectPadding: { left: 7, top: 9, width: 14, height: 14 } }, { ele: '', img: getImage('home5.png'), handStyle: { top: '-1.39rem', left: '0.17rem', transform: 'rotate(180deg)' }, imgStyle: { top: px2vw(-194), width: px2vw(621), height: px2vw(223), left: px2vw(-624) }, btnsStyle: { top: px2vw(-42), left: px2vw(-460) }, boxStyle: {}, eleRectPadding: { left: 7, top: 7, width: 14, height: 14 } } ], step: 0 }); const tipShow = ref(false); // const res = setGuidance({guideTag:'teacher-guideInfo',guideValue:'{}'}) 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 = {}; // } const res = localStorage.getItem('teacher-guideInfo'); if (res) { guideInfo.value = JSON.parse(res) || null; } else { guideInfo.value = {}; } if (guideInfo.value && guideInfo.value.homeGuide) { tipShow.value = false; } else { tipShow.value = true; } } catch (e) { console.log(e); } // const guideInfo = localStorage.getItem('teacher-guideInfo'); }; getAllGuidance(); const getStepELe = () => { const ele: HTMLElement = document.getElementById( data.step === data.steps.length - 1 ? 'moveNPopover' : `home-${data.step}` )!; // console.log(`coai-${data.step}`, data.steps[data.step].eleRectPadding); 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; console.log(eleRect, height); data.box = { left: eleRect.x - left + 'px', top: eleRect.y - top + 'px', width: eleRect.width + width + 'px', height: eleRect.height + height + 'px' }; } else { handleNext(); } }; const onResetGuide = async (name: string) => { try { if (name !== 'Home') return; if (!guideInfo.value) { guideInfo.value = { homeGuide: false }; } else { guideInfo.value.homeGuide = false; } try { setLocalGuidance({ 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 >= data.steps.length - 1) { 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 = { homeGuide: true }; } else { guideInfo.value.homeGuide = true; } try { setLocalGuidance({ 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 ? (
handleNext()}>
{ e.stopPropagation(); endGuide(); }}> 跳过
{data.steps.map((item: any, index) => (
e.stopPropagation()} class={styles.item} style={ item.type == 'bottom' ? { display: index === data.step ? '' : 'none', left: `${item.eleRect?.left}px`, top: `-${item.imgStyle?.height}` } : { display: index === data.step ? '' : 'none', left: `${item.eleRect?.left}px`, top: `${data.box?.height}` } }> {/* */}
{data.step + 1 == data.steps.length ? ( <>
endGuide()}> 完成
{ data.step = 0; getStepELe(); }}> 再看一遍
) : (
handleNext()}> {data.step !== 0 ? `下一步 ${data.step}/${data.steps.length - 1}` : '开始体验'}
)}
))}
) : null} ); } });