child-node.tsx 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import { defineComponent } from "vue";
  2. import styles from './index.module.less'
  3. import { Cell, Collapse, CollapseItem } from "vant";
  4. import iconVideo from './image/icon-video.png'
  5. import iconSong from './image/icon-song.png'
  6. import iconImage from './image/icon-image.png'
  7. import { handleShowVip } from "@/state";
  8. import { browser } from "@/helpers/utils";
  9. import { useRouter } from "vue-router";
  10. // 获取对应图片
  11. export const getImage = (item: any) => {
  12. if (item.typeCode === 'VIDEO') {
  13. return iconVideo;
  14. } else if (['IMAGE', 'IMG'].includes(item.typeCode)) {
  15. return iconImage;
  16. } else if (item.typeCode === 'SONG') {
  17. return iconSong;
  18. } else {
  19. return iconVideo;
  20. }
  21. };
  22. const ChildNode = defineComponent({
  23. name: 'child-node',
  24. props: {
  25. id: {
  26. type: String,
  27. default: ''
  28. },
  29. search: {
  30. type: String,
  31. default: ''
  32. },
  33. isLock: {
  34. type: Boolean,
  35. default: false,
  36. },
  37. list: {
  38. type: Array,
  39. default: () => []
  40. },
  41. collapse: {
  42. type: String,
  43. default: ''
  44. }
  45. },
  46. emits: ['update:collapse'],
  47. setup(props, { emit }) {
  48. const router = useRouter()
  49. const toDetail = (item: any) => {
  50. //
  51. if(props.isLock) {
  52. handleShowVip(props.id, "LESSON")
  53. return
  54. }
  55. if (browser().isApp) {
  56. postMessage({
  57. api: 'openWebView',
  58. content: {
  59. url: `${location.origin}${location.pathname}#/coursewarePlay?lessonId=${props.id}&source=search&kId=${item.id}&search=${props.search}`,
  60. orientation: 0,
  61. isHideTitle: true,
  62. statusBarTextColor: false,
  63. isOpenLight: true,
  64. showLoadingAnim: true
  65. }
  66. });
  67. } else {
  68. router.push({
  69. path: '/coursewarePlay',
  70. query: {
  71. lessonId: props.id,
  72. kId: item.id,
  73. search: props.search,
  74. source: 'search'
  75. }
  76. });
  77. }
  78. }
  79. const formatName = (name: string) => {
  80. if(!name || !props.search) return name
  81. const search: any = props.search
  82. return name.replace(search, `<span style="color: #01C1B5;">${search}</span>`)
  83. }
  84. return () => (
  85. <Collapse
  86. modelValue={props.collapse}
  87. onUpdate:modelValue={(val: any) => {
  88. emit('update:collapse', val);
  89. }}
  90. border={false}
  91. accordion>
  92. {props.list?.map((point: any) => (
  93. <CollapseItem
  94. clickable={false}
  95. center
  96. border={false}
  97. class={styles.collapseChild}
  98. name={point.id}>
  99. {{
  100. title: () => (
  101. <div
  102. class={[
  103. styles.itemTitle,
  104. Array.isArray(point?.materialList) && point?.materialList.length > 0 ? styles.materialTitle : ''
  105. ]}>
  106. {point.name}
  107. </div>
  108. ),
  109. default: () => (
  110. <>
  111. {Array.isArray(point?.materialList) &&
  112. point.materialList.map((n: any) => (
  113. <Cell center isLink clickable={false} onClick={() => toDetail(n)}>
  114. {{
  115. title: () => <div class={styles.materialSection}>
  116. <img src={getImage(n)} class={styles.iconMaterial} />
  117. <div v-html={formatName(n.name)}></div>
  118. </div>
  119. }}
  120. </Cell>
  121. ))}
  122. {Array.isArray(point?.children) && (
  123. <ChildNode
  124. isLock={props.isLock}
  125. search={props.search}
  126. id={props.id}
  127. list={point.children}
  128. collapse={point.collapse}
  129. onUpdate:collapse={val => {
  130. point.collapse = val;
  131. }}
  132. />
  133. )}
  134. </>
  135. ),
  136. 'right-icon': () => (
  137. <i class={[styles.arrow, props.collapse === point.id ? styles.arrowActive : '']}></i>
  138. )
  139. }}
  140. </CollapseItem>
  141. ))}
  142. </Collapse>
  143. );
  144. }
  145. });
  146. export default ChildNode;