index.tsx 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462
  1. import { PropType, Teleport, defineComponent, nextTick, onMounted, onUnmounted, ref } from "vue";
  2. import { Config, DriveStep, PopoverDOM, State, driver } from "driver.js";
  3. import "driver.js/dist/driver.css";
  4. import state, { IPlatform } from "/src/state";
  5. import { getGuidance, setGuidance } from "../guide-page/api";
  6. const endGuide = (guideInfo: any) => {
  7. try {
  8. // setGuidance({ guideTag: "guideInfo", guideValue: JSON.stringify(guideInfo) });
  9. localStorage.setItem("guideInfo", JSON.stringify(guideInfo));
  10. } catch (e) {
  11. console.log(e);
  12. }
  13. };
  14. /**
  15. * 按钮状态
  16. */
  17. type ButtonStatus = {
  18. /** 是否显示播放按钮 */
  19. playBtnStatus?: Boolean;
  20. /** 声部状态 */
  21. subjectStatus?: Boolean;
  22. /** 是否显示模式切换 */
  23. modelTypeStatus?: Boolean;
  24. /** 播放模式 演唱 演奏 */
  25. playType?: Boolean;
  26. /** 返回和标题 */
  27. backTitle?: Boolean;
  28. /** 返回显示的标题类型 文本 TEXT 按钮 IMG */
  29. titleType?: String;
  30. /** 原声 true 范唱 false */
  31. originPlayType?: Boolean;
  32. /** 是否显示原音 */
  33. originBtnStatus?: Boolean;
  34. /** 是否显示切换曲谱列表 */
  35. showSwitchList?: Boolean;
  36. };
  37. /** 练习模式 */
  38. export const PractiseDriver = defineComponent({
  39. name: "PractiseDriver",
  40. props: {
  41. // 按钮状态
  42. statusAll: {
  43. type: Object as PropType<ButtonStatus>,
  44. default: () => {},
  45. },
  46. },
  47. setup(props) {
  48. const driverNextStatus = ref(false);
  49. // 初始化部分引导位置
  50. const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }) => {
  51. options.config.stageRadius = 5;
  52. options.config.stagePadding = 4;
  53. try {
  54. const rect = options.state.activeElement?.getBoundingClientRect();
  55. popover.wrapper.style.marginLeft = -(rect?.width || 0) / 2 + 4 + "px";
  56. } catch {}
  57. };
  58. const driverOptions = (): Config => {
  59. let length = 10;
  60. if (!props.statusAll.playBtnStatus) {
  61. length -= 1;
  62. }
  63. if (!props.statusAll.originBtnStatus) {
  64. length -= 1;
  65. }
  66. // 显示指法
  67. // if (!state.setting.displayFingering) {
  68. // length -= 1;
  69. // }
  70. // 声部
  71. if (!props.statusAll.subjectStatus) {
  72. length -= 1;
  73. }
  74. if (!props.statusAll.playType) {
  75. length -= 1;
  76. }
  77. // pc端不显示标题和模式切换引导
  78. if (state.platform === IPlatform.PC) {
  79. // length -= 2;
  80. } else {
  81. // 判断是否有标题
  82. if (!props.statusAll.backTitle || props.statusAll.titleType === "NONE") {
  83. length -= 1;
  84. }
  85. // 练习模式
  86. if (!props.statusAll.modelTypeStatus) {
  87. length -= 1;
  88. }
  89. }
  90. if (!props.statusAll.showSwitchList) {
  91. length -= 1;
  92. }
  93. console.log(props.statusAll, "statusAll", length, state.setting.displayFingering);
  94. let options: Config = {
  95. showProgress: false,
  96. allowClose: false,
  97. popoverOffset: 3,
  98. disableActiveInteraction: true,
  99. onCloseClick: () => {
  100. onDriverClose();
  101. },
  102. onHighlightStarted: () => {
  103. driverNextStatus.value = true;
  104. },
  105. onHighlighted: () => {
  106. driverNextStatus.value = false;
  107. },
  108. steps: [] as DriveStep[],
  109. };
  110. if (props.statusAll.playBtnStatus) {
  111. options.steps?.push({
  112. element: ".driver-1",
  113. popover: {
  114. title: "",
  115. description: "",
  116. popoverClass: "popoverClass popoverClass1",
  117. align: "end",
  118. side: "top",
  119. nextBtnText: `下一步 (1/${length})`,
  120. showButtons: ["next"],
  121. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  122. options.config.stageRadius = 1000;
  123. options.config.stagePadding = 0;
  124. },
  125. },
  126. });
  127. }
  128. if (props.statusAll.modelTypeStatus) {
  129. options.steps?.push({
  130. element: ".driver-9",
  131. popover: {
  132. title: "",
  133. description: "",
  134. popoverClass: "popoverClass popoverClass9",
  135. align: "end",
  136. side: "bottom",
  137. nextBtnText: `下一步 (2/${length})`,
  138. showButtons: ["next"],
  139. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  140. driverInitialPosition(popover, options);
  141. },
  142. },
  143. });
  144. }
  145. if (props.statusAll.playType) {
  146. options.steps?.push({
  147. element: ".driver-2",
  148. popover: {
  149. title: "",
  150. description: "",
  151. popoverClass: "popoverClass popoverClass2",
  152. align: "start",
  153. side: "top",
  154. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
  155. showButtons: ["next"],
  156. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  157. driverInitialPosition(popover, options);
  158. },
  159. },
  160. });
  161. }
  162. if (props.statusAll.originBtnStatus) {
  163. options.steps?.push({
  164. element: ".driver-3",
  165. popover: {
  166. title: "",
  167. description: "",
  168. popoverClass: props.statusAll.originPlayType ? "popoverClass popoverClass3" : "popoverClass popoverClass11",
  169. align: "end",
  170. side: "bottom",
  171. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
  172. showButtons: ["next"],
  173. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  174. driverInitialPosition(popover, options);
  175. },
  176. },
  177. });
  178. }
  179. options.steps?.push(
  180. {
  181. element: ".driver-4",
  182. popover: {
  183. title: "",
  184. description: "",
  185. popoverClass: "popoverClass popoverClass4",
  186. align: "end",
  187. side: "bottom",
  188. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
  189. showButtons: ["next"],
  190. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  191. driverInitialPosition(popover, options);
  192. },
  193. },
  194. },
  195. {
  196. element: ".driver-5",
  197. popover: {
  198. title: "",
  199. description: "",
  200. popoverClass: "popoverClass popoverClass5",
  201. align: "end",
  202. side: "bottom",
  203. nextBtnText: `下一步 (${options.steps.length + 2}/${length})`,
  204. showButtons: ["next"],
  205. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  206. driverInitialPosition(popover, options);
  207. },
  208. },
  209. }
  210. );
  211. if (props.statusAll.subjectStatus) {
  212. options.steps?.push({
  213. element: ".driver-10",
  214. popover: {
  215. title: "",
  216. description: "",
  217. popoverClass: "popoverClass popoverClass10",
  218. align: "end",
  219. side: "bottom",
  220. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
  221. showButtons: ["next"],
  222. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  223. driverInitialPosition(popover, options);
  224. },
  225. },
  226. });
  227. }
  228. options.steps?.push({
  229. element: ".driver-5-1",
  230. popover: {
  231. title: "",
  232. description: "",
  233. popoverClass: "popoverClass popoverClass5-1",
  234. align: "end",
  235. side: "bottom",
  236. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
  237. showButtons: ["next"],
  238. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  239. driverInitialPosition(popover, options);
  240. },
  241. },
  242. });
  243. if (state.platform === IPlatform.PC) {
  244. options.steps?.push({
  245. element: ".driver-6",
  246. popover: {
  247. title: "",
  248. description: "",
  249. popoverClass: "popoverClass popoverClass6-end popoverClose",
  250. align: "end",
  251. side: "bottom",
  252. prevBtnText: "再看一遍",
  253. doneBtnText: "完成",
  254. showButtons: ["next", "previous"],
  255. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  256. driverInitialPosition(popover, options);
  257. },
  258. onPrevClick: () => {
  259. driverObj.drive(0);
  260. },
  261. onNextClick: () => {
  262. onDriverClose();
  263. },
  264. },
  265. });
  266. } else {
  267. // 判断设置之后是否还有引导
  268. if (!state.setting.displayFingering && !props.statusAll.backTitle && !props.statusAll.modelTypeStatus) {
  269. options.steps?.push({
  270. element: ".driver-6",
  271. popover: {
  272. title: "",
  273. description: "",
  274. popoverClass: "popoverClass popoverClass6 popoverClose",
  275. align: "start",
  276. side: "top",
  277. prevBtnText: "再看一遍",
  278. doneBtnText: "完成",
  279. showButtons: ["next", "previous"],
  280. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  281. driverInitialPosition(popover, options);
  282. },
  283. onPrevClick: () => {
  284. driverObj.drive(0);
  285. },
  286. onNextClick: () => {
  287. onDriverClose();
  288. },
  289. },
  290. });
  291. } else if (state.setting.displayFingering && !props.statusAll.backTitle && !props.statusAll.modelTypeStatus) {
  292. options.steps?.push({
  293. element: ".driver-6",
  294. popover: {
  295. title: "",
  296. description: "",
  297. popoverClass: "popoverClass popoverClass6",
  298. align: "end",
  299. side: "bottom",
  300. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
  301. showButtons: ["next"],
  302. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  303. driverInitialPosition(popover, options);
  304. },
  305. },
  306. });
  307. } else if (props.statusAll.backTitle && !props.statusAll.modelTypeStatus) {
  308. options.steps?.push({
  309. element: ".driver-6",
  310. popover: {
  311. title: "",
  312. description: "",
  313. popoverClass: "popoverClass popoverClass6",
  314. align: "end",
  315. side: "bottom",
  316. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
  317. showButtons: ["next"],
  318. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  319. driverInitialPosition(popover, options);
  320. },
  321. },
  322. });
  323. options.steps?.push({
  324. //props.statusAll.titleType === "TEXT" ? ".driver-8 .van-notice-bar__content" :
  325. element: ".driver-8",
  326. popover: {
  327. title: "",
  328. description: "",
  329. popoverClass: "popoverClass popoverClass8 popoverClose",
  330. align: "start",
  331. side: "bottom",
  332. prevBtnText: "再看一遍",
  333. doneBtnText: "完成",
  334. showButtons: ["next", "previous"],
  335. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  336. driverInitialPosition(popover, options);
  337. const rect = options.state.activeElement?.getBoundingClientRect();
  338. popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 + "px";
  339. },
  340. onPrevClick: () => {
  341. driverObj.drive(0);
  342. },
  343. onNextClick: () => {
  344. onDriverClose();
  345. },
  346. },
  347. });
  348. } else if (!props.statusAll.showSwitchList) {
  349. options.steps?.push({
  350. element: ".driver-6",
  351. popover: {
  352. title: "",
  353. description: "",
  354. popoverClass: "popoverClass popoverClass6-end popoverClose",
  355. align: "end",
  356. side: "bottom",
  357. prevBtnText: "再看一遍",
  358. doneBtnText: "完成",
  359. showButtons: ["next", "previous"],
  360. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  361. driverInitialPosition(popover, options);
  362. // const rect = options.state.activeElement?.getBoundingClientRect();
  363. // popover.wrapper.style.marginLeft = -(rect?.width || 0) / 2 + 4 + "px";
  364. },
  365. onPrevClick: () => {
  366. driverObj.drive(0);
  367. },
  368. onNextClick: () => {
  369. onDriverClose();
  370. },
  371. },
  372. });
  373. } else {
  374. options.steps?.push({
  375. element: ".driver-6",
  376. popover: {
  377. title: "",
  378. description: "",
  379. popoverClass: "popoverClass popoverClass6",
  380. align: "end",
  381. side: "bottom",
  382. nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
  383. showButtons: ["next"],
  384. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  385. driverInitialPosition(popover, options);
  386. },
  387. },
  388. });
  389. if (props.statusAll.backTitle) {
  390. options.steps?.push({
  391. // .van-notice-bar__content
  392. // element: ".driver-8 .van-notice-bar__content",
  393. // props.statusAll.titleType === "TEXT" ? ".driver-8 .van-notice-bar__content" :
  394. element: ".driver-8",
  395. popover: {
  396. title: "",
  397. description: "",
  398. popoverClass: "popoverClass popoverClass8 popoverClose",
  399. align: "start",
  400. side: "bottom",
  401. prevBtnText: "再看一遍",
  402. doneBtnText: "完成",
  403. showButtons: ["next", "previous"],
  404. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  405. driverInitialPosition(popover, options);
  406. const rect = options.state.activeElement?.getBoundingClientRect();
  407. popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 + "px";
  408. },
  409. onPrevClick: () => {
  410. driverObj.drive(0);
  411. },
  412. onNextClick: () => {
  413. onDriverClose();
  414. },
  415. },
  416. });
  417. }
  418. }
  419. }
  420. return options;
  421. };
  422. let driverObj: any;
  423. const handleClickOutside = (event: any) => {
  424. // 如果高亮没有结束则下进行下一步
  425. if (driverNextStatus.value) return;
  426. if (driverObj.isActive() && (event.target.nodeName === "path" || event.target.classList.contains("driver-popover") || event.target.classList.contains("driver-overlay"))) {
  427. if (driverObj.isLastStep()) {
  428. onDriverClose();
  429. } else {
  430. driverObj.moveNext(); // 跳转到下一步
  431. }
  432. }
  433. };
  434. const guideInfo = ref({} as any);
  435. const showCloseBtn = ref(false);
  436. const getAllGuidance = async () => {
  437. try {
  438. // const res = await getGuidance({ guideTag: "guideInfo" });
  439. const res = localStorage.getItem("guideInfo");
  440. if (res) {
  441. guideInfo.value = JSON.parse(res) || null;
  442. } else {
  443. guideInfo.value = {};
  444. }
  445. if (!(guideInfo.value && guideInfo.value.practiseDriver)) {
  446. document.addEventListener("click", handleClickOutside, true);
  447. driverObj = driver(driverOptions());
  448. nextTick(() => {
  449. driverObj.drive();
  450. showCloseBtn.value = true;
  451. state.hasDriverPop = true;
  452. });
  453. }
  454. } catch (e) {
  455. console.log(e);
  456. }
  457. };
  458. getAllGuidance();
  459. // 结束关闭弹窗
  460. const onDriverClose = () => {
  461. if (!guideInfo.value) {
  462. guideInfo.value = { practiseDriver: true };
  463. } else {
  464. guideInfo.value.practiseDriver = true;
  465. }
  466. endGuide(guideInfo.value);
  467. driverObj.destroy();
  468. document.querySelector(".driver-popover-close-btn-custom")?.remove();
  469. document.removeEventListener("click", handleClickOutside, true);
  470. state.hasDriverPop = false;
  471. };
  472. onUnmounted(() => {
  473. document.removeEventListener("click", handleClickOutside, true);
  474. });
  475. return () => (
  476. <Teleport to="body">
  477. {showCloseBtn.value && (
  478. <div
  479. class="driver-popover-close-btn-custom"
  480. onClick={(e: any) => {
  481. onDriverClose();
  482. }}
  483. ></div>
  484. )}
  485. </Teleport>
  486. );
  487. },
  488. });
  489. /** 跟练模式 */
  490. export const FollowDriver = defineComponent({
  491. name: "FollowDriver",
  492. props: {
  493. // 按钮状态
  494. statusAll: {
  495. type: Object as PropType<ButtonStatus>,
  496. default: () => {},
  497. },
  498. },
  499. setup(props) {
  500. const driverNextStatus = ref(false);
  501. // 初始化部分引导位置
  502. const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }) => {
  503. options.config.stageRadius = 5;
  504. options.config.stagePadding = 4;
  505. try {
  506. const rect = options.state.activeElement?.getBoundingClientRect();
  507. popover.wrapper.style.marginLeft = -(rect?.width || 0) / 2 + 4 + "px";
  508. } catch {}
  509. };
  510. // 声部
  511. let length = props.statusAll.subjectStatus ? 5 : 4;
  512. const driverOptions: Config = {
  513. showProgress: false,
  514. allowClose: false,
  515. popoverOffset: 3,
  516. disableActiveInteraction: true,
  517. onCloseClick: () => {
  518. onDriverClose();
  519. },
  520. onHighlightStarted: () => {
  521. driverNextStatus.value = true;
  522. },
  523. onHighlighted: () => {
  524. driverNextStatus.value = false;
  525. },
  526. steps: [
  527. {
  528. element: ".follow-1",
  529. popover: {
  530. title: "",
  531. description: "",
  532. popoverClass: "popoverClass popoverClassF1",
  533. align: "end",
  534. side: "top",
  535. nextBtnText: `下一步 (1/${length})`,
  536. showButtons: ["next"],
  537. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  538. options.config.stageRadius = 1000;
  539. options.config.stagePadding = 0;
  540. },
  541. },
  542. },
  543. {
  544. element: ".driver-5",
  545. popover: {
  546. title: "",
  547. description: "",
  548. popoverClass: "popoverClass popoverClassF2",
  549. align: "end",
  550. side: "bottom",
  551. nextBtnText: `下一步 (2/${length})`,
  552. showButtons: ["next"],
  553. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  554. driverInitialPosition(popover, options);
  555. },
  556. },
  557. },
  558. ],
  559. };
  560. if (props.statusAll.subjectStatus) {
  561. driverOptions.steps?.push({
  562. element: ".driver-10",
  563. popover: {
  564. title: "",
  565. description: "",
  566. popoverClass: "popoverClass popoverClass10",
  567. align: "end",
  568. side: "bottom",
  569. nextBtnText: `下一步 (${driverOptions.steps.length + 1}/${length})`,
  570. showButtons: ["next"],
  571. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  572. driverInitialPosition(popover, options);
  573. },
  574. },
  575. });
  576. }
  577. driverOptions.steps?.push({
  578. element: ".driver-5-1",
  579. popover: {
  580. title: "",
  581. description: "",
  582. popoverClass: "popoverClass popoverClass5-1",
  583. align: "end",
  584. side: "bottom",
  585. nextBtnText: `下一步 (${driverOptions.steps.length + 1}/${length})`,
  586. showButtons: ["next"],
  587. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  588. driverInitialPosition(popover, options);
  589. },
  590. },
  591. });
  592. driverOptions.steps?.push({
  593. element: ".driver-6",
  594. popover: {
  595. title: "",
  596. description: "",
  597. popoverClass: "popoverClass popoverClassF3 popoverClose",
  598. align: "end",
  599. side: "bottom",
  600. prevBtnText: "再看一遍",
  601. doneBtnText: "完成",
  602. showButtons: ["next", "previous"],
  603. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  604. driverInitialPosition(popover, options);
  605. },
  606. onPrevClick: () => {
  607. driverObj.drive(0);
  608. },
  609. onNextClick: () => {
  610. onDriverClose();
  611. },
  612. },
  613. });
  614. let driverObj: any;
  615. const handleClickOutside = (event: any) => {
  616. if (driverNextStatus.value) return;
  617. console.log(driverObj.getActiveIndex(), "driverObj.getActiveIndex()");
  618. if (driverObj.isActive() && (event.target.nodeName === "path" || event.target.classList.contains("driver-popover") || event.target.classList.contains("driver-overlay"))) {
  619. if (driverObj.isLastStep()) {
  620. onDriverClose();
  621. } else {
  622. // driverObj.moveNext(); // 跳转到下一步
  623. const index = driverObj.getActiveIndex();
  624. driverObj.moveTo(index + 1);
  625. }
  626. }
  627. };
  628. const guideInfo = ref({} as any);
  629. const showCloseBtn = ref(false);
  630. const getAllGuidance = async () => {
  631. try {
  632. const res = localStorage.getItem("guideInfo");
  633. if (res) {
  634. guideInfo.value = JSON.parse(res) || null;
  635. } else {
  636. guideInfo.value = {};
  637. }
  638. if (!(guideInfo.value && guideInfo.value.followDriver)) {
  639. document.addEventListener("click", handleClickOutside, true);
  640. nextTick(() => {
  641. driverObj = driver(driverOptions);
  642. driverObj.drive(0);
  643. showCloseBtn.value = true;
  644. state.hasDriverPop = true;
  645. });
  646. }
  647. } catch (e) {
  648. console.log(e);
  649. }
  650. };
  651. getAllGuidance();
  652. // 结束关闭弹窗
  653. const onDriverClose = () => {
  654. if (!guideInfo.value) {
  655. guideInfo.value = { followDriver: true };
  656. } else {
  657. guideInfo.value.followDriver = true;
  658. }
  659. endGuide(guideInfo.value);
  660. driverObj.destroy();
  661. document.querySelector(".driver-popover-close-btn-custom")?.remove();
  662. document.removeEventListener("click", handleClickOutside, true);
  663. state.hasDriverPop = false;
  664. };
  665. onUnmounted(() => {
  666. document.removeEventListener("click", handleClickOutside, true);
  667. });
  668. return () => (
  669. <Teleport to="body">
  670. {showCloseBtn.value && (
  671. <div
  672. class="driver-popover-close-btn-custom"
  673. onClick={(e: any) => {
  674. onDriverClose();
  675. }}
  676. ></div>
  677. )}
  678. </Teleport>
  679. );
  680. },
  681. });
  682. // 评测模式
  683. export const EvaluatingDriver = defineComponent({
  684. name: "EvaluatingDriver",
  685. props: {
  686. // 按钮状态
  687. statusAll: {
  688. type: Object as PropType<ButtonStatus>,
  689. default: () => {},
  690. },
  691. },
  692. setup(props) {
  693. const driverNextStatus = ref(false);
  694. // 初始化部分引导位置
  695. const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }) => {
  696. options.config.stageRadius = 5;
  697. options.config.stagePadding = 4;
  698. try {
  699. const rect = options.state.activeElement?.getBoundingClientRect();
  700. popover.wrapper.style.marginLeft = -(rect?.width || 0) / 2 + 4 + "px";
  701. } catch {}
  702. };
  703. // 声部
  704. let length = props.statusAll.subjectStatus ? 6 : 5;
  705. const driverOptions: Config = {
  706. showProgress: false,
  707. allowClose: false,
  708. popoverOffset: 3,
  709. disableActiveInteraction: true,
  710. onCloseClick: () => {
  711. onDriverClose();
  712. },
  713. onHighlightStarted: () => {
  714. driverNextStatus.value = true;
  715. },
  716. onHighlighted: () => {
  717. driverNextStatus.value = false;
  718. },
  719. steps: [
  720. {
  721. element: ".evaluting-1",
  722. popover: {
  723. title: "",
  724. description: "",
  725. popoverClass: "popoverClass popoverClassE1",
  726. align: "end",
  727. side: "top",
  728. nextBtnText: `下一步 (1/${length})`,
  729. showButtons: ["next"],
  730. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  731. options.config.stageRadius = 1000;
  732. options.config.stagePadding = 0;
  733. },
  734. },
  735. },
  736. {
  737. element: ".driver-4",
  738. popover: {
  739. title: "",
  740. description: "",
  741. popoverClass: "popoverClass popoverClassE2",
  742. align: "end",
  743. side: "bottom",
  744. nextBtnText: `下一步 (2/${length})`,
  745. showButtons: ["next"],
  746. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  747. driverInitialPosition(popover, options);
  748. },
  749. },
  750. },
  751. {
  752. element: ".driver-5",
  753. popover: {
  754. title: "",
  755. description: "",
  756. popoverClass: "popoverClass popoverClassE3",
  757. align: "end",
  758. side: "bottom",
  759. nextBtnText: `下一步 (3/${length})`,
  760. showButtons: ["next"],
  761. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  762. driverInitialPosition(popover, options);
  763. },
  764. },
  765. },
  766. ],
  767. };
  768. if (props.statusAll.subjectStatus) {
  769. driverOptions.steps?.push({
  770. element: ".driver-10",
  771. popover: {
  772. title: "",
  773. description: "",
  774. popoverClass: "popoverClass popoverClass10",
  775. align: "end",
  776. side: "bottom",
  777. nextBtnText: `下一步 (${driverOptions.steps.length + 1}/${length})`,
  778. showButtons: ["next"],
  779. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  780. driverInitialPosition(popover, options);
  781. },
  782. },
  783. });
  784. }
  785. driverOptions.steps?.push({
  786. element: ".driver-5-1",
  787. popover: {
  788. title: "",
  789. description: "",
  790. popoverClass: "popoverClass popoverClass5-1",
  791. align: "end",
  792. side: "bottom",
  793. nextBtnText: `下一步 (${driverOptions.steps.length + 1}/${length})`,
  794. showButtons: ["next"],
  795. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  796. driverInitialPosition(popover, options);
  797. },
  798. },
  799. });
  800. driverOptions.steps?.push({
  801. element: ".driver-6",
  802. popover: {
  803. title: "",
  804. description: "",
  805. popoverClass: "popoverClass popoverClassE4 popoverClose",
  806. align: "end",
  807. side: "bottom",
  808. prevBtnText: "再看一遍",
  809. doneBtnText: "完成",
  810. showButtons: ["next", "previous"],
  811. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  812. driverInitialPosition(popover, options);
  813. },
  814. onPrevClick: () => {
  815. driverObj.drive(0);
  816. },
  817. onNextClick: () => {
  818. onDriverClose();
  819. },
  820. },
  821. });
  822. let driverObj: any;
  823. const handleClickOutside = (event: any) => {
  824. if (driverNextStatus.value) return;
  825. console.log(driverObj.getActiveIndex(), "driverObj.getActiveIndex()");
  826. if (driverObj.isActive() && (event.target.nodeName === "path" || event.target.classList.contains("driver-popover") || event.target.classList.contains("driver-overlay"))) {
  827. if (driverObj.isLastStep()) {
  828. onDriverClose();
  829. } else {
  830. driverObj.moveNext(); // 跳转到下一步
  831. }
  832. }
  833. };
  834. const guideInfo = ref({} as any);
  835. const showCloseBtn = ref(false);
  836. const getAllGuidance = async () => {
  837. try {
  838. const res = localStorage.getItem("guideInfo");
  839. if (res) {
  840. guideInfo.value = JSON.parse(res) || null;
  841. } else {
  842. guideInfo.value = {};
  843. }
  844. console.log(guideInfo.value, "guideInfo.value", showCloseBtn.value);
  845. if (!(guideInfo.value && guideInfo.value.evaluatingDriver)) {
  846. document.addEventListener("click", handleClickOutside, true);
  847. nextTick(() => {
  848. driverObj = driver(driverOptions);
  849. driverObj.drive();
  850. showCloseBtn.value = true;
  851. state.hasDriverPop = true;
  852. console.log(driverOptions, "driverOptions Evaluating", showCloseBtn.value);
  853. });
  854. } else {
  855. driverObj?.destroy();
  856. }
  857. } catch (e) {
  858. console.log(e);
  859. }
  860. };
  861. getAllGuidance();
  862. // 结束关闭弹窗
  863. const onDriverClose = () => {
  864. if (!guideInfo.value) {
  865. guideInfo.value = { evaluatingDriver: true };
  866. } else {
  867. guideInfo.value.evaluatingDriver = true;
  868. }
  869. endGuide(guideInfo.value);
  870. driverObj?.destroy();
  871. document.querySelector(".driver-popover-close-btn-custom")?.remove();
  872. document.removeEventListener("click", handleClickOutside, true);
  873. state.hasDriverPop = false;
  874. };
  875. onUnmounted(() => {
  876. document.removeEventListener("click", handleClickOutside, true);
  877. });
  878. return () => (
  879. <Teleport to="body">
  880. {showCloseBtn.value && (
  881. <div
  882. class="driver-popover-close-btn-custom"
  883. onClick={(e: any) => {
  884. onDriverClose();
  885. }}
  886. ></div>
  887. )}
  888. </Teleport>
  889. );
  890. },
  891. });
  892. // 评测模式 - 结果弹窗
  893. export const EvaluatingResultDriver = defineComponent({
  894. name: "EvaluatingResultDriver",
  895. props: {
  896. // 保存按钮状态
  897. saveBtn: {
  898. type: Boolean,
  899. default: true,
  900. },
  901. },
  902. setup(props) {
  903. let length = 4;
  904. if (!props.saveBtn) {
  905. length -= 1;
  906. }
  907. console.log(props.saveBtn, "props.saveBtn");
  908. const driverNextStatus = ref(false);
  909. // 初始化部分引导位置
  910. const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }, position = 1) => {
  911. options.config.stageRadius = 1000;
  912. options.config.stagePadding = 2;
  913. try {
  914. const rect = options.state.activeElement?.getBoundingClientRect();
  915. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * position + 4 + "px";
  916. } catch {}
  917. };
  918. const driverOptionsFun = () => {
  919. const driverOptions: Config = {
  920. showProgress: false,
  921. allowClose: false,
  922. popoverOffset: 3,
  923. disableActiveInteraction: true,
  924. onCloseClick: () => {
  925. onDriverClose();
  926. },
  927. onHighlightStarted: () => {
  928. driverNextStatus.value = true;
  929. },
  930. onHighlighted: () => {
  931. driverNextStatus.value = false;
  932. },
  933. steps: [
  934. {
  935. element: ".evaluting-result-1",
  936. popover: {
  937. title: "",
  938. description: "",
  939. popoverClass: "popoverClass popoverClassER1",
  940. align: "start",
  941. side: "right",
  942. nextBtnText: `下一步 (1/${length})`,
  943. showButtons: ["next"],
  944. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  945. options.config.stageRadius = 12;
  946. options.config.stagePadding = 10;
  947. },
  948. },
  949. },
  950. {
  951. element: ".evaluting-result-2",
  952. popover: {
  953. title: "",
  954. description: "",
  955. popoverClass: "popoverClass popoverClassER2",
  956. align: "start",
  957. side: "top",
  958. nextBtnText: `下一步 (2/${length})`,
  959. showButtons: ["next"],
  960. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  961. options.config.stageRadius = 1000;
  962. options.config.stagePadding = 2;
  963. try {
  964. const rect = options.state.activeElement?.getBoundingClientRect();
  965. popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
  966. } catch {}
  967. },
  968. },
  969. },
  970. ],
  971. };
  972. if (props.saveBtn) {
  973. driverOptions.steps?.push({
  974. element: ".evaluting-result-3",
  975. popover: {
  976. title: "",
  977. description: "",
  978. popoverClass: "popoverClass popoverClassER3",
  979. align: "end",
  980. side: "top",
  981. nextBtnText: `下一步 (3/${length})`,
  982. showButtons: ["next"],
  983. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  984. driverInitialPosition(popover, options, -1);
  985. },
  986. },
  987. });
  988. }
  989. driverOptions.steps?.push({
  990. element: ".evaluting-result-4",
  991. popover: {
  992. title: "",
  993. description: "",
  994. popoverClass: "popoverClass popoverClassER4 popoverClose",
  995. align: "end",
  996. side: "top",
  997. prevBtnText: "再看一遍",
  998. doneBtnText: "完成",
  999. showButtons: ["next", "previous"],
  1000. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1001. driverInitialPosition(popover, options, -1);
  1002. },
  1003. onPrevClick: () => {
  1004. driverObj.drive();
  1005. },
  1006. onNextClick: () => {
  1007. onDriverClose();
  1008. },
  1009. },
  1010. });
  1011. return driverOptions;
  1012. };
  1013. let driverObj: any;
  1014. const handleClickOutside = (event: any) => {
  1015. if (driverNextStatus.value) return;
  1016. if (driverObj.isActive() && (event.target.nodeName === "path" || event.target.classList.contains("driver-popover") || event.target.classList.contains("driver-overlay"))) {
  1017. if (driverObj.isLastStep()) {
  1018. onDriverClose();
  1019. } else {
  1020. driverObj.moveNext(); // 跳转到下一步
  1021. }
  1022. }
  1023. };
  1024. const guideInfo = ref({} as any);
  1025. const showCloseBtn = ref(false);
  1026. const getAllGuidance = async () => {
  1027. try {
  1028. const res = localStorage.getItem("guideInfo");
  1029. if (res) {
  1030. guideInfo.value = JSON.parse(res) || null;
  1031. } else {
  1032. guideInfo.value = {};
  1033. }
  1034. if (!(guideInfo.value && guideInfo.value.evaluatingResultDriver)) {
  1035. setTimeout(() => {
  1036. document.addEventListener("click", handleClickOutside, true);
  1037. nextTick(() => {
  1038. driverObj = driver(driverOptionsFun());
  1039. driverObj.drive();
  1040. showCloseBtn.value = true;
  1041. state.hasDriverPop = true;
  1042. });
  1043. }, 100);
  1044. }
  1045. } catch (e) {
  1046. console.log(e);
  1047. }
  1048. };
  1049. onMounted(() => {
  1050. getAllGuidance();
  1051. });
  1052. // 结束关闭弹窗
  1053. const onDriverClose = () => {
  1054. if (!guideInfo.value) {
  1055. guideInfo.value = { evaluatingResultDriver: true };
  1056. } else {
  1057. guideInfo.value.evaluatingResultDriver = true;
  1058. }
  1059. endGuide(guideInfo.value);
  1060. driverObj.destroy();
  1061. document.querySelector(".driver-popover-close-btn-custom")?.remove();
  1062. document.removeEventListener("click", handleClickOutside, true);
  1063. state.hasDriverPop = false;
  1064. };
  1065. onUnmounted(() => {
  1066. document.removeEventListener("click", handleClickOutside, true);
  1067. });
  1068. return () => (
  1069. <Teleport to="body">
  1070. {showCloseBtn.value && (
  1071. <div
  1072. class="driver-popover-close-btn-custom"
  1073. onClick={(e: any) => {
  1074. onDriverClose();
  1075. }}
  1076. ></div>
  1077. )}
  1078. </Teleport>
  1079. );
  1080. },
  1081. });
  1082. // 评测报告
  1083. export const EvaluatingReportDriver = defineComponent({
  1084. name: "EvaluatingReportDriver",
  1085. props: {
  1086. /** 视屏地址 */
  1087. videoFilePath: {
  1088. type: String,
  1089. default: "",
  1090. },
  1091. },
  1092. setup(props) {
  1093. const driverNextStatus = ref(false);
  1094. // state.isPercussion 是否为打击乐
  1095. // 初始化部分引导位置
  1096. const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }, position = 1) => {
  1097. options.config.stageRadius = 12;
  1098. options.config.stagePadding = 0;
  1099. try {
  1100. const rect = options.state.activeElement?.getBoundingClientRect();
  1101. popover.wrapper.style.marginLeft = -(rect?.width || 0) / 2 + 16 + "px";
  1102. } catch {}
  1103. };
  1104. // 判断是否为打击乐
  1105. let steps: DriveStep[] = [];
  1106. if (state.isPercussion) {
  1107. if (props.videoFilePath) {
  1108. steps = [
  1109. {
  1110. element: ".evaluting-report-2",
  1111. popover: {
  1112. title: "",
  1113. description: "",
  1114. popoverClass: "popoverClass popoverClassReport2",
  1115. align: "end",
  1116. side: "bottom",
  1117. nextBtnText: "下一步 (1/2)",
  1118. showButtons: ["next"],
  1119. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1120. options.config.stageRadius = 12;
  1121. options.config.stagePadding = 0;
  1122. try {
  1123. const rect = options.state.activeElement?.getBoundingClientRect();
  1124. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1125. } catch {}
  1126. },
  1127. },
  1128. },
  1129. {
  1130. element: ".evaluting-report-4",
  1131. popover: {
  1132. title: "",
  1133. description: "",
  1134. popoverClass: "popoverClass popoverClassReport4 popoverClose",
  1135. align: "end",
  1136. side: "bottom",
  1137. prevBtnText: "再看一遍",
  1138. doneBtnText: "完成",
  1139. showButtons: ["next", "previous"],
  1140. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1141. options.config.stageRadius = 8;
  1142. options.config.stagePadding = 5;
  1143. try {
  1144. const rect = options.state.activeElement?.getBoundingClientRect();
  1145. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1146. } catch {}
  1147. },
  1148. onPrevClick: () => {
  1149. driverObj.drive(0);
  1150. },
  1151. onNextClick: () => {
  1152. onDriverClose();
  1153. },
  1154. },
  1155. },
  1156. ];
  1157. } else {
  1158. steps = [
  1159. {
  1160. element: ".evaluting-report-2",
  1161. popover: {
  1162. title: "",
  1163. description: "",
  1164. popoverClass: "popoverClass popoverClassReport2 popoverClose",
  1165. align: "end",
  1166. side: "bottom",
  1167. doneBtnText: "完成",
  1168. showButtons: ["next"],
  1169. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1170. options.config.stageRadius = 12;
  1171. options.config.stagePadding = 0;
  1172. try {
  1173. const rect = options.state.activeElement?.getBoundingClientRect();
  1174. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1175. } catch {}
  1176. },
  1177. onPrevClick: () => {
  1178. driverObj.drive(0);
  1179. },
  1180. onNextClick: () => {
  1181. onDriverClose();
  1182. },
  1183. },
  1184. },
  1185. ];
  1186. }
  1187. } else {
  1188. const count = props.videoFilePath ? 4 : 3;
  1189. steps = [
  1190. {
  1191. element: ".evaluting-report-1",
  1192. popover: {
  1193. title: "",
  1194. description: "",
  1195. popoverClass: "popoverClass popoverClassReport1",
  1196. align: "end",
  1197. side: "bottom",
  1198. nextBtnText: `下一步 (1/${count})`,
  1199. showButtons: ["next"],
  1200. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1201. driverInitialPosition(popover, options);
  1202. },
  1203. },
  1204. },
  1205. {
  1206. element: ".evaluting-report-2",
  1207. popover: {
  1208. title: "",
  1209. description: "",
  1210. popoverClass: "popoverClass popoverClassReport2",
  1211. align: "end",
  1212. side: "bottom",
  1213. nextBtnText: `下一步 (2/${count})`,
  1214. showButtons: ["next"],
  1215. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1216. options.config.stageRadius = 12;
  1217. options.config.stagePadding = 0;
  1218. try {
  1219. const rect = options.state.activeElement?.getBoundingClientRect();
  1220. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1221. } catch {}
  1222. },
  1223. },
  1224. },
  1225. ];
  1226. if (props.videoFilePath) {
  1227. steps.push(
  1228. {
  1229. element: ".evaluting-report-3",
  1230. popover: {
  1231. title: "",
  1232. description: "",
  1233. popoverClass: "popoverClass popoverClassReport3",
  1234. align: "end",
  1235. side: "bottom",
  1236. nextBtnText: "下一步 (3/4)",
  1237. showButtons: ["next"],
  1238. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1239. // driverInitialPosition(popover, options, -1);
  1240. options.config.stageRadius = 12;
  1241. options.config.stagePadding = 0;
  1242. try {
  1243. const rect = options.state.activeElement?.getBoundingClientRect();
  1244. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1245. } catch {}
  1246. },
  1247. },
  1248. },
  1249. {
  1250. element: ".evaluting-report-4",
  1251. popover: {
  1252. title: "",
  1253. description: "",
  1254. popoverClass: "popoverClass popoverClassReport4 popoverClose",
  1255. align: "end",
  1256. side: "bottom",
  1257. prevBtnText: "再看一遍",
  1258. doneBtnText: "完成",
  1259. showButtons: ["next", "previous"],
  1260. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1261. options.config.stageRadius = 8;
  1262. options.config.stagePadding = 5;
  1263. try {
  1264. const rect = options.state.activeElement?.getBoundingClientRect();
  1265. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 16 + "px";
  1266. } catch {}
  1267. },
  1268. onPrevClick: () => {
  1269. driverObj.drive(0);
  1270. },
  1271. onNextClick: () => {
  1272. onDriverClose();
  1273. },
  1274. },
  1275. }
  1276. );
  1277. } else {
  1278. steps.push({
  1279. element: ".evaluting-report-3",
  1280. popover: {
  1281. title: "",
  1282. description: "",
  1283. popoverClass: "popoverClass popoverClassReport3 popoverClose",
  1284. align: "end",
  1285. side: "bottom",
  1286. prevBtnText: "再看一遍",
  1287. doneBtnText: "完成",
  1288. showButtons: ["next", "previous"],
  1289. onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
  1290. options.config.stageRadius = 8;
  1291. options.config.stagePadding = 5;
  1292. try {
  1293. const rect = options.state.activeElement?.getBoundingClientRect();
  1294. popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 4 + "px";
  1295. } catch {}
  1296. },
  1297. onPrevClick: () => {
  1298. driverObj.drive(0);
  1299. },
  1300. onNextClick: () => {
  1301. onDriverClose();
  1302. },
  1303. },
  1304. });
  1305. }
  1306. }
  1307. const driverOptions: Config = {
  1308. showProgress: false,
  1309. allowClose: false,
  1310. popoverOffset: 3,
  1311. disableActiveInteraction: true,
  1312. onCloseClick: () => {
  1313. onDriverClose();
  1314. },
  1315. onHighlightStarted: () => {
  1316. driverNextStatus.value = true;
  1317. },
  1318. onHighlighted: () => {
  1319. driverNextStatus.value = false;
  1320. },
  1321. steps: steps,
  1322. };
  1323. let driverObj: any;
  1324. const guideInfo = ref({} as any);
  1325. const handleClickOutside = (event: any) => {
  1326. if (driverNextStatus.value) return;
  1327. if (driverObj.isActive() && (event.target.nodeName === "path" || event.target.classList.contains("driver-popover") || event.target.classList.contains("driver-overlay"))) {
  1328. if (driverObj.isLastStep()) {
  1329. onDriverClose();
  1330. } else {
  1331. driverObj.moveNext(); // 跳转到下一步
  1332. }
  1333. }
  1334. };
  1335. const showCloseBtn = ref(false);
  1336. const getAllGuidance = async () => {
  1337. try {
  1338. const res = localStorage.getItem("guideInfo");
  1339. if (res) {
  1340. guideInfo.value = JSON.parse(res) || null;
  1341. } else {
  1342. guideInfo.value = {};
  1343. }
  1344. if (!(guideInfo.value && guideInfo.value.evaluatingReportDriver)) {
  1345. // 监听点击事件以实现点击空白区域跳转到下一步
  1346. document.addEventListener("click", handleClickOutside, true);
  1347. nextTick(() => {
  1348. driverObj = driver(driverOptions);
  1349. driverObj.drive();
  1350. state.hasDriverPop = true;
  1351. showCloseBtn.value = true;
  1352. });
  1353. }
  1354. } catch (e) {
  1355. console.log(e);
  1356. }
  1357. };
  1358. getAllGuidance();
  1359. // 结束关闭弹窗
  1360. const onDriverClose = () => {
  1361. if (!guideInfo.value) {
  1362. guideInfo.value = { evaluatingReportDriver: true };
  1363. } else {
  1364. guideInfo.value.evaluatingReportDriver = true;
  1365. }
  1366. endGuide(guideInfo.value);
  1367. driverObj.destroy();
  1368. document.querySelector(".driver-popover-close-btn-custom")?.remove();
  1369. document.removeEventListener("click", handleClickOutside, true);
  1370. state.hasDriverPop = false;
  1371. };
  1372. onUnmounted(() => {
  1373. document.removeEventListener("click", handleClickOutside, true);
  1374. });
  1375. return () => (
  1376. <Teleport to="body">
  1377. {showCloseBtn.value && (
  1378. <div
  1379. class="driver-popover-close-btn-custom"
  1380. onClick={(e: any) => {
  1381. onDriverClose();
  1382. }}
  1383. ></div>
  1384. )}
  1385. </Teleport>
  1386. );
  1387. },
  1388. });