node.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. <template>
  2. <view :id="attrs.id" :class="'_block _'+name+' '+attrs.class" :style="attrs.style">
  3. <block v-for="(n, i) in childs" v-bind:key="i">
  4. <!-- 图片 -->
  5. <!-- 占位图 -->
  6. <image v-if="n.name==='img'&&!n.t&&((opts[1]&&!ctrl[i])||ctrl[i]<0)" class="_img" :style="n.attrs.style" :src="ctrl[i]<0?opts[2]:opts[1]" mode="widthFix" />
  7. <!-- 显示图片 -->
  8. <!-- #ifdef H5 || (APP-PLUS && VUE2) -->
  9. <img v-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+n.attrs.style" :src="n.attrs.src||(ctrl.load?n.attrs['data-src']:'')" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
  10. <!-- #endif -->
  11. <!-- #ifndef H5 || (APP-PLUS && VUE2) -->
  12. <!-- 表格中的图片,使用 rich-text 防止大小不正确 -->
  13. <rich-text v-if="n.name==='img'&&n.t" :style="'display:'+n.t" :nodes="'<img class=\'_img\' style=\''+n.attrs.style+'\' src=\''+n.attrs.src+'\'>'" :data-i="i" @tap.stop="imgTap" />
  14. <!-- #endif -->
  15. <!-- #ifndef H5 || APP-PLUS -->
  16. <image v-else-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+'width:'+(ctrl[i]||1)+'px;height:1px;'+n.attrs.style" :src="n.attrs.src" :mode="!n.h?'widthFix':(!n.w?'heightFix':'')" :lazy-load="opts[0]" :webp="n.webp" :show-menu-by-longpress="opts[3]&&!n.attrs.ignore" :image-menu-prevent="!opts[3]||n.attrs.ignore" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
  17. <!-- #endif -->
  18. <!-- #ifdef APP-PLUS && VUE3 -->
  19. <image v-else-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+'width:'+(ctrl[i]||1)+'px;'+n.attrs.style" :src="n.attrs.src||(ctrl.load?n.attrs['data-src']:'')" :mode="!n.h?'widthFix':(!n.w?'heightFix':'')" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
  20. <!-- #endif -->
  21. <!-- 文本 -->
  22. <!-- #ifdef MP-WEIXIN -->
  23. <text v-else-if="n.text" :user-select="opts[4]=='force'&&isiOS" decode>{{n.text}}</text>
  24. <!-- #endif -->
  25. <!-- #ifndef MP-WEIXIN || MP-BAIDU || MP-ALIPAY || MP-TOUTIAO -->
  26. <text v-else-if="n.text" decode>{{n.text}}</text>
  27. <!-- #endif -->
  28. <text v-else-if="n.name==='br'">\n</text>
  29. <!-- 链接 -->
  30. <view v-else-if="n.name==='a'" :id="n.attrs.id" :class="(n.attrs.href?'_a ':'')+n.attrs.class" hover-class="_hover" :style="'display:inline;'+n.attrs.style" :data-i="i" @tap.stop="linkTap">
  31. <node name="span" :childs="n.children" :opts="opts" style="display:inherit" />
  32. </view>
  33. <!-- 视频 -->
  34. <!-- #ifdef APP-PLUS -->
  35. <view v-else-if="n.html" :id="n.attrs.id" :class="'_video '+n.attrs.class" :style="n.attrs.style" v-html="n.html" @vplay.stop="play" />
  36. <!-- #endif -->
  37. <!-- #ifndef APP-PLUS -->
  38. <su-video v-else-if="n.name==='video'" :id="n.attrs.id" :class="n.attrs.class" style="width: 10%;" :style="n.attrs.style" :autoplay="n.attrs.autoplay" :controls="n.attrs.controls" :loop="n.attrs.loop" :muted="n.attrs.muted" :object-fit="n.attrs['object-fit']" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" />
  39. <!-- <video v-else-if="n.name==='video'" :id="n.attrs.id" :class="n.attrs.class" style="width: 10%;" :style="n.attrs.style" :autoplay="n.attrs.autoplay" :controls="n.attrs.controls" :loop="n.attrs.loop" :muted="n.attrs.muted" :object-fit="n.attrs['object-fit']" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" /> -->
  40. <!-- #endif -->
  41. <!-- #ifdef H5 || APP-PLUS -->
  42. <iframe v-else-if="n.name==='iframe'" :style="n.attrs.style" :allowfullscreen="n.attrs.allowfullscreen" :frameborder="n.attrs.frameborder" :src="n.attrs.src" />
  43. <embed v-else-if="n.name==='embed'" :style="n.attrs.style" :src="n.attrs.src" />
  44. <!-- #endif -->
  45. <!-- #ifndef MP-TOUTIAO || ((H5 || APP-PLUS) && VUE3) -->
  46. <!-- 音频 -->
  47. <audio v-else-if="n.name==='audio'" :id="n.attrs.id" :class="n.attrs.class" :style="n.attrs.style" :author="n.attrs.author" :controls="n.attrs.controls" :loop="n.attrs.loop" :name="n.attrs.name" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" />
  48. <!-- #endif -->
  49. <view v-else-if="(n.name==='table'&&n.c)||n.name==='li'" :id="n.attrs.id" :class="'_'+n.name+' '+n.attrs.class" :style="n.attrs.style">
  50. <node v-if="n.name==='li'" :childs="n.children" :opts="opts" />
  51. <view v-else v-for="(tbody, x) in n.children" v-bind:key="x" :class="'_'+tbody.name+' '+tbody.attrs.class" :style="tbody.attrs.style">
  52. <node v-if="tbody.name==='td'||tbody.name==='th'" :childs="tbody.children" :opts="opts" />
  53. <block v-else v-for="(tr, y) in tbody.children" v-bind:key="y">
  54. <view v-if="tr.name==='td'||tr.name==='th'" :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style">
  55. <node :childs="tr.children" :opts="opts" />
  56. </view>
  57. <view v-else :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style">
  58. <view v-for="(td, z) in tr.children" v-bind:key="z" :class="'_'+td.name+' '+td.attrs.class" :style="td.attrs.style">
  59. <node :childs="td.children" :opts="opts" />
  60. </view>
  61. </view>
  62. </block>
  63. </view>
  64. </view>
  65. <!-- 富文本 -->
  66. <!-- #ifdef H5 || ((MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE2) -->
  67. <rich-text v-else-if="!n.c&&!handler.isInline(n.name, n.attrs.style)" :id="n.attrs.id" :style="n.f" :user-select="opts[4]" :nodes="[n]" />
  68. <!-- #endif -->
  69. <!-- #ifndef H5 || ((MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE2) -->
  70. <rich-text v-else-if="!n.c" :id="n.attrs.id" :style="n.f+';display:inline'" :preview="false" :selectable="opts[4]" :user-select="opts[4]" :nodes="[n]" />
  71. <!-- #endif -->
  72. <!-- 继续递归 -->
  73. <view v-else-if="n.c===2" :id="n.attrs.id" :class="'_block _'+n.name+' '+n.attrs.class" :style="n.f+';'+n.attrs.style">
  74. <node v-for="(n2, j) in n.children" v-bind:key="j" :style="n2.f" :name="n2.name" :attrs="n2.attrs" :childs="n2.children" :opts="opts" />
  75. </view>
  76. <node v-else :style="n.f" :name="n.name" :attrs="n.attrs" :childs="n.children" :opts="opts" />
  77. </block>
  78. </view>
  79. </template>
  80. <script module="handler" lang="wxs">
  81. // 行内标签列表
  82. var inlineTags = {
  83. abbr: true,
  84. b: true,
  85. big: true,
  86. code: true,
  87. del: true,
  88. em: true,
  89. i: true,
  90. ins: true,
  91. label: true,
  92. q: true,
  93. small: true,
  94. span: true,
  95. strong: true,
  96. sub: true,
  97. sup: true
  98. }
  99. /**
  100. * @description 判断是否为行内标签
  101. */
  102. module.exports = {
  103. isInline: function (tagName, style) {
  104. return inlineTags[tagName] || (style || '').indexOf('display:inline') !== -1
  105. }
  106. }
  107. </script>
  108. <script>
  109. import node from './node'
  110. export default {
  111. name: 'node',
  112. options: {
  113. // #ifdef MP-WEIXIN
  114. virtualHost: true,
  115. // #endif
  116. // #ifdef MP-TOUTIAO
  117. addGlobalClass: false
  118. // #endif
  119. },
  120. data () {
  121. return {
  122. ctrl: {},
  123. // #ifdef MP-WEIXIN
  124. isiOS: uni.getSystemInfoSync().system.includes('iOS')
  125. // #endif
  126. }
  127. },
  128. props: {
  129. name: String,
  130. attrs: {
  131. type: Object,
  132. default () {
  133. return {}
  134. }
  135. },
  136. childs: Array,
  137. opts: Array
  138. },
  139. components: {
  140. // #ifndef (H5 || APP-PLUS) && VUE3
  141. node
  142. // #endif
  143. },
  144. mounted () {
  145. this.$nextTick(() => {
  146. for (this.root = this.$parent; this.root.$options.name !== 'mp-html'; this.root = this.root.$parent);
  147. })
  148. // #ifdef H5 || APP-PLUS
  149. if (this.opts[0]) {
  150. let i
  151. for (i = this.childs.length; i--;) {
  152. if (this.childs[i].name === 'img') break
  153. }
  154. if (i !== -1) {
  155. this.observer = uni.createIntersectionObserver(this).relativeToViewport({
  156. top: 500,
  157. bottom: 500
  158. })
  159. this.observer.observe('._img', res => {
  160. if (res.intersectionRatio) {
  161. this.$set(this.ctrl, 'load', 1)
  162. this.observer.disconnect()
  163. }
  164. })
  165. }
  166. }
  167. // #endif
  168. },
  169. beforeDestroy () {
  170. // #ifdef H5 || APP-PLUS
  171. if (this.observer) {
  172. this.observer.disconnect()
  173. }
  174. // #endif
  175. },
  176. methods:{
  177. // #ifdef MP-WEIXIN
  178. toJSON () { return this },
  179. // #endif
  180. /**
  181. * @description 播放视频事件
  182. * @param {Event} e
  183. */
  184. play (e) {
  185. this.root.$emit('play')
  186. // #ifndef APP-PLUS
  187. if (this.root.pauseVideo) {
  188. let flag = false
  189. const id = e.target.id
  190. for (let i = this.root._videos.length; i--;) {
  191. if (this.root._videos[i].id === id) {
  192. flag = true
  193. } else {
  194. this.root._videos[i].pause() // 自动暂停其他视频
  195. }
  196. }
  197. // 将自己加入列表
  198. if (!flag) {
  199. const ctx = uni.createVideoContext(id
  200. // #ifndef MP-BAIDU
  201. , this
  202. // #endif
  203. )
  204. ctx.id = id
  205. if (this.root.playbackRate) {
  206. ctx.playbackRate(this.root.playbackRate)
  207. }
  208. this.root._videos.push(ctx)
  209. }
  210. }
  211. // #endif
  212. },
  213. /**
  214. * @description 图片点击事件
  215. * @param {Event} e
  216. */
  217. imgTap (e) {
  218. const node = this.childs[e.currentTarget.dataset.i]
  219. const cleanUrl = node.attrs['data-href'].replace(/&amp;/g, '&');
  220. console.log(node.attrs.src);
  221. console.log(cleanUrl)
  222. if(node.attrs.src != node.attrs['data-href']){
  223. uni.navigateTo({
  224. url: cleanUrl,
  225. fail() {
  226. // 如果普通页面跳转失败,尝试switchTab
  227. uni.switchTab({
  228. url: cleanUrl,
  229. fail() {
  230. // 如果是外部链接,可以使用系统浏览器打开
  231. if(cleanUrl.includes('http')) {
  232. // #ifdef H5
  233. location.href = cleanUrl
  234. // #endif
  235. // #ifdef APP-PLUS
  236. plus.runtime.openWeb(cleanUrl)
  237. // #endif
  238. // #ifdef MP
  239. uni.setClipboardData({
  240. data: cleanUrl,
  241. success: () => {
  242. uni.showToast({
  243. title: '链接已复制'
  244. })
  245. }
  246. })
  247. // #endif
  248. }
  249. }
  250. })
  251. }
  252. })
  253. return // 跳转后不执行后续预览逻辑
  254. }
  255. if (node.a) {
  256. this.linkTap(node.a)
  257. return
  258. }
  259. if (node.attrs.ignore) return
  260. // #ifdef H5 || APP-PLUS
  261. node.attrs.src = node.attrs.src || node.attrs['data-src']
  262. // #endif
  263. this.root.$emit('imgtap', node.attrs)
  264. // 自动预览图片
  265. if (this.root.previewImg) {
  266. uni.previewImage({
  267. // #ifdef MP-WEIXIN
  268. showmenu: this.root.showImgMenu,
  269. // #endif
  270. // #ifdef MP-ALIPAY
  271. enablesavephoto: this.root.showImgMenu,
  272. enableShowPhotoDownload: this.root.showImgMenu,
  273. // #endif
  274. current: parseInt(node.attrs.i),
  275. urls: this.root.imgList
  276. })
  277. }
  278. },
  279. /**
  280. * @description 图片长按
  281. */
  282. imgLongTap (e) {
  283. // #ifdef APP-PLUS
  284. const attrs = this.childs[e.currentTarget.dataset.i].attrs
  285. if (this.opts[3] && !attrs.ignore) {
  286. uni.showActionSheet({
  287. itemList: ['保存图片'],
  288. success: () => {
  289. const save = path => {
  290. uni.saveImageToPhotosAlbum({
  291. filePath: path,
  292. success () {
  293. uni.showToast({
  294. title: '保存成功'
  295. })
  296. }
  297. })
  298. }
  299. if (this.root.imgList[attrs.i].startsWith('http')) {
  300. uni.downloadFile({
  301. url: this.root.imgList[attrs.i],
  302. success: res => save(res.tempFilePath)
  303. })
  304. } else {
  305. save(this.root.imgList[attrs.i])
  306. }
  307. }
  308. })
  309. }
  310. // #endif
  311. },
  312. /**
  313. * @description 图片加载完成事件
  314. * @param {Event} e
  315. */
  316. imgLoad (e) {
  317. const i = e.currentTarget.dataset.i
  318. /* #ifndef H5 || (APP-PLUS && VUE2) */
  319. if (!this.childs[i].w) {
  320. // 设置原宽度
  321. this.$set(this.ctrl, i, e.detail.width)
  322. } else /* #endif */ if ((this.opts[1] && !this.ctrl[i]) || this.ctrl[i] === -1) {
  323. // 加载完毕,取消加载中占位图
  324. this.$set(this.ctrl, i, 1)
  325. }
  326. this.checkReady()
  327. },
  328. /**
  329. * @description 检查是否所有图片加载完毕
  330. */
  331. checkReady () {
  332. if (!this.root.lazyLoad) {
  333. this.root._unloadimgs -= 1
  334. if (!this.root._unloadimgs) {
  335. setTimeout(() => {
  336. this.root.getRect().then(rect => {
  337. this.root.$emit('ready', rect)
  338. }).catch(() => {
  339. this.root.$emit('ready', {})
  340. })
  341. }, 350)
  342. }
  343. }
  344. },
  345. /**
  346. * @description 链接点击事件
  347. * @param {Event} e
  348. */
  349. linkTap (e) {
  350. const node = e.currentTarget ? this.childs[e.currentTarget.dataset.i] : {}
  351. const attrs = node.attrs || e
  352. const href = attrs.href
  353. this.root.$emit('linktap', Object.assign({
  354. innerText: this.root.getText(node.children || []) // 链接内的文本内容
  355. }, attrs))
  356. if (href) {
  357. if (href[0] === '#') {
  358. // 跳转锚点
  359. this.root.navigateTo(href.substring(1)).catch(() => { })
  360. } else if (href.split('?')[0].includes('://')) {
  361. // 复制外部链接
  362. if (this.root.copyLink) {
  363. uni.setClipboardData({
  364. data: href,
  365. success: () =>
  366. uni.showToast({
  367. title: '链接已复制'
  368. })
  369. })
  370. }
  371. } else {
  372. // 跳转页面
  373. uni.navigateTo({
  374. url: href,
  375. fail () {
  376. uni.switchTab({
  377. url: href,
  378. fail () { }
  379. })
  380. }
  381. })
  382. }
  383. }
  384. },
  385. /**
  386. * @description 错误事件
  387. * @param {Event} e
  388. */
  389. mediaError (e) {
  390. const i = e.currentTarget.dataset.i
  391. const node = this.childs[i]
  392. // 加载其他源
  393. if (node.name === 'video' || node.name === 'audio') {
  394. let index = (this.ctrl[i] || 0) + 1
  395. if (index > node.src.length) {
  396. index = 0
  397. }
  398. if (index < node.src.length) {
  399. this.$set(this.ctrl, i, index)
  400. return
  401. }
  402. } else if (node.name === 'img') {
  403. // #ifdef H5 && VUE3
  404. if (this.opts[0] && !this.ctrl.load) return
  405. // #endif
  406. // 显示错误占位图
  407. if (this.opts[2]) {
  408. this.$set(this.ctrl, i, -1)
  409. }
  410. this.checkReady()
  411. }
  412. if (this.root) {
  413. this.root.$emit('error', {
  414. source: node.name,
  415. attrs: node.attrs,
  416. // #ifndef H5 && VUE3
  417. errMsg: e.detail.errMsg
  418. // #endif
  419. })
  420. }
  421. }
  422. }
  423. }
  424. </script>
  425. <style>
  426. /* a 标签默认效果 */
  427. ._a {
  428. padding: 1.5px 0 1.5px 0;
  429. color: #366092;
  430. word-break: break-all;
  431. }
  432. /* a 标签点击态效果 */
  433. ._hover {
  434. text-decoration: underline;
  435. opacity: 0.7;
  436. }
  437. /* 图片默认效果 */
  438. ._img {
  439. max-width: 100%;
  440. -webkit-touch-callout: none;
  441. }
  442. /* 内部样式 */
  443. ._block {
  444. display: block;
  445. }
  446. ._b,
  447. ._strong {
  448. font-weight: bold;
  449. }
  450. ._code {
  451. font-family: monospace;
  452. }
  453. ._del {
  454. text-decoration: line-through;
  455. }
  456. ._em,
  457. ._i {
  458. font-style: italic;
  459. }
  460. ._h1 {
  461. font-size: 2em;
  462. }
  463. ._h2 {
  464. font-size: 1.5em;
  465. }
  466. ._h3 {
  467. font-size: 1.17em;
  468. }
  469. ._h5 {
  470. font-size: 0.83em;
  471. }
  472. ._h6 {
  473. font-size: 0.67em;
  474. }
  475. ._h1,
  476. ._h2,
  477. ._h3,
  478. ._h4,
  479. ._h5,
  480. ._h6 {
  481. display: block;
  482. font-weight: bold;
  483. }
  484. ._image {
  485. height: 1px;
  486. }
  487. ._ins {
  488. text-decoration: underline;
  489. }
  490. ._li {
  491. display: list-item;
  492. }
  493. ._ol {
  494. list-style-type: decimal;
  495. }
  496. ._ol,
  497. ._ul {
  498. display: block;
  499. padding-left: 40px;
  500. margin: 1em 0;
  501. }
  502. ._q::before {
  503. content: '"';
  504. }
  505. ._q::after {
  506. content: '"';
  507. }
  508. ._sub {
  509. font-size: smaller;
  510. vertical-align: sub;
  511. }
  512. ._sup {
  513. font-size: smaller;
  514. vertical-align: super;
  515. }
  516. ._thead,
  517. ._tbody,
  518. ._tfoot {
  519. display: table-row-group;
  520. }
  521. ._tr {
  522. display: table-row;
  523. }
  524. ._td,
  525. ._th {
  526. display: table-cell;
  527. vertical-align: middle;
  528. }
  529. ._th {
  530. font-weight: bold;
  531. text-align: center;
  532. }
  533. ._ul {
  534. list-style-type: disc;
  535. }
  536. ._ul ._ul {
  537. margin: 0;
  538. list-style-type: circle;
  539. }
  540. ._ul ._ul ._ul {
  541. list-style-type: square;
  542. }
  543. ._abbr,
  544. ._b,
  545. ._code,
  546. ._del,
  547. ._em,
  548. ._i,
  549. ._ins,
  550. ._label,
  551. ._q,
  552. ._span,
  553. ._strong,
  554. ._sub,
  555. ._sup {
  556. display: inline;
  557. }
  558. /* #ifdef APP-PLUS */
  559. ._video {
  560. width: 300px;
  561. height: 225px;
  562. }
  563. /* #endif */
  564. </style>