bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
minipro_standard/uni_modules/uview-ui/components/u-parse/u-parse.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,366 @@
<template>
  <view id="_root" :class="(selectable?'_select ':'')+'_root'">
    <slot v-if="!nodes[0]" />
    <!-- #ifndef APP-PLUS-NVUE -->
    <node v-else :childs="nodes" :opts="[lazyLoad,loadingImg,errorImg,showImgMenu]" />
    <!-- #endif -->
    <!-- #ifdef APP-PLUS-NVUE -->
    <web-view ref="web" src="/static/app-plus/mp-html/local.html" :style="'margin-top:-2px;height:' + height + 'px'" @onPostMessage="_onMessage" />
    <!-- #endif -->
  </view>
</template>
<script>
   import props from './props.js';
/**
 * mp-html v2.0.4
 * @description å¯Œæ–‡æœ¬ç»„ä»¶
 * @tutorial https://github.com/jin-yufeng/mp-html
 * @property {String}         bgColor      èƒŒæ™¯é¢œè‰²ï¼Œåªé€‚用与APP-PLUS-NVUE
 * @property {String}         content      ç”¨äºŽæ¸²æŸ“的富文本字符串(默认 true ï¼‰
 * @property {Boolean}         copyLink   æ˜¯å¦å…è®¸å¤–部链接被点击时自动复制
 * @property {String}         domain      ä¸»åŸŸåï¼Œç”¨äºŽæ‹¼æŽ¥é“¾æŽ¥
 * @property {String}         errorImg   å›¾ç‰‡å‡ºé”™æ—¶çš„占位图链接
 * @property {Boolean}         lazyLoad   æ˜¯å¦å¼€å¯å›¾ç‰‡æ‡’加载(默认 true ï¼‰
 * @property {string}         loadingImg   å›¾ç‰‡åŠ è½½è¿‡ç¨‹ä¸­çš„å ä½å›¾é“¾æŽ¥
 * @property {Boolean}         pauseVideo   æ˜¯å¦åœ¨æ’­æ”¾ä¸€ä¸ªè§†é¢‘时自动暂停其它视频(默认 true ï¼‰
 * @property {Boolean}         previewImg   æ˜¯å¦å…è®¸å›¾ç‰‡è¢«ç‚¹å‡»æ—¶è‡ªåŠ¨é¢„è§ˆï¼ˆé»˜è®¤ true ï¼‰
 * @property {Boolean}         scrollTable   æ˜¯å¦ç»™æ¯ä¸ªè¡¨æ ¼æ·»åŠ ä¸€ä¸ªæ»šåŠ¨å±‚ä½¿å…¶èƒ½å•ç‹¬æ¨ªå‘æ»šåŠ¨
 * @property {Boolean}         selectable   æ˜¯å¦å¼€å¯é•¿æŒ‰å¤åˆ¶
 * @property {Boolean}         setTitle   æ˜¯å¦å°† title æ ‡ç­¾çš„内容设置到页面标题(默认 true ï¼‰
 * @property {Boolean}         showImgMenu   æ˜¯å¦å…è®¸å›¾ç‰‡è¢«é•¿æŒ‰æ—¶æ˜¾ç¤ºèœå•(默认 true ï¼‰
 * @property {Object}         tagStyle   æ ‡ç­¾çš„默认样式
 * @property {Boolean | Number}   useAnchor   æ˜¯å¦ä½¿ç”¨é”šç‚¹é“¾æŽ¥
 *
 * @event {Function}   load   dom ç»“构加载完毕时触发
 * @event {Function}   ready   æ‰€æœ‰å›¾ç‰‡åŠ è½½å®Œæ¯•æ—¶è§¦å‘
 * @event {Function}   imgTap   å›¾ç‰‡è¢«ç‚¹å‡»æ—¶è§¦å‘
 * @event {Function}   linkTap   é“¾æŽ¥è¢«ç‚¹å‡»æ—¶è§¦å‘
 * @event {Function}   error   åª’体加载出错时触发
 */
const plugins=[]
const parser = require('./parser')
// #ifndef APP-PLUS-NVUE
import node from './node/node'
// #endif
// #ifdef APP-PLUS-NVUE
const dom = weex.requireModule('dom')
// #endif
export default {
  name: 'mp-html',
  data() {
    return {
      nodes: [],
      // #ifdef APP-PLUS-NVUE
      height: 0
      // #endif
    }
  },
  mixins:[props],
  // #ifndef APP-PLUS-NVUE
  components: {
    node
  },
  // #endif
  watch: {
    content(content) {
      this.setContent(content)
    }
  },
  created() {
    this.plugins = []
    for (let i = plugins.length; i--;)
      this.plugins.push(new plugins[i](this))
  },
  mounted() {
    if (this.content && !this.nodes.length)
      this.setContent(this.content)
  },
  beforeDestroy() {
    this._hook('onDetached')
    clearInterval(this._timer)
  },
  methods: {
    /**
     * @description å°†é”šç‚¹è·³è½¬çš„范围限定在一个 scroll-view å†…
     * @param {Object} page scroll-view æ‰€åœ¨é¡µé¢çš„示例
     * @param {String} selector scroll-view çš„选择器
     * @param {String} scrollTop scroll-view scroll-top å±žæ€§ç»‘定的变量名
     */
    in(page, selector, scrollTop) {
      // #ifndef APP-PLUS-NVUE
      if (page && selector && scrollTop)
        this._in = {
          page,
          selector,
          scrollTop
        }
      // #endif
    },
    /**
     * @description é”šç‚¹è·³è½¬
     * @param {String} id è¦è·³è½¬çš„锚点 id
     * @param {Number} offset è·³è½¬ä½ç½®çš„偏移量
     * @returns {Promise}
     */
    navigateTo(id, offset) {
      return new Promise((resolve, reject) => {
        if (!this.useAnchor)
          return reject('Anchor is disabled')
        offset = offset || parseInt(this.useAnchor) || 0
        // #ifdef APP-PLUS-NVUE
        if (!id) {
          dom.scrollToElement(this.$refs.web, {
            offset
          })
          resolve()
        } else {
          this._navigateTo = {
            resolve,
            reject,
            offset
          }
          this.$refs.web.evalJs('uni.postMessage({data:{action:"getOffset",offset:(document.getElementById(' + id + ')||{}).offsetTop}})')
        }
        // #endif
        // #ifndef APP-PLUS-NVUE
        let deep = ' '
        // #ifdef MP-WEIXIN || MP-QQ || MP-TOUTIAO
        deep = '>>>'
        // #endif
        const selector = uni.createSelectorQuery()
          // #ifndef MP-ALIPAY
          .in(this._in ? this._in.page : this)
          // #endif
          .select((this._in ? this._in.selector : '._root') + (id ? `${deep}#${id}` : '')).boundingClientRect()
        if (this._in)
          selector.select(this._in.selector).scrollOffset()
            .select(this._in.selector).boundingClientRect() // èŽ·å– scroll-view çš„位置和滚动距离
        else
          selector.selectViewport().scrollOffset() // èŽ·å–çª—å£çš„æ»šåŠ¨è·ç¦»
        selector.exec(res => {
          if (!res[0])
            return reject('Label not found')
          const scrollTop = res[1].scrollTop + res[0].top - (res[2] ? res[2].top : 0) + offset
          if (this._in)
            // scroll-view è·³è½¬
            this._in.page[this._in.scrollTop] = scrollTop
          else
            // é¡µé¢è·³è½¬
            uni.pageScrollTo({
              scrollTop,
              duration: 300
            })
          resolve()
        })
        // #endif
      })
    },
    /**
     * @description èŽ·å–æ–‡æœ¬å†…å®¹
     * @return {String}
     */
    getText() {
      let text = '';
      (function traversal(nodes) {
        for (let i = 0; i < nodes.length; i++) {
          const node = nodes[i]
          if (node.type == 'text')
            text += node.text.replace(/&amp;/g, '&')
          else if (node.name == 'br')
            text += '\n'
          else {
            // å—级标签前后加换行
            const isBlock = node.name == 'p' || node.name == 'div' || node.name == 'tr' || node.name == 'li' || (node.name[0] == 'h' && node.name[1] > '0' && node.name[1] < '7')
            if (isBlock && text && text[text.length - 1] != '\n')
              text += '\n'
            // é€’归获取子节点的文本
            if (node.children)
              traversal(node.children)
            if (isBlock && text[text.length - 1] != '\n')
              text += '\n'
            else if (node.name == 'td' || node.name == 'th')
              text += '\t'
          }
        }
      })(this.nodes)
      return text
    },
    /**
     * @description èŽ·å–å†…å®¹å¤§å°å’Œä½ç½®
     * @return {Promise}
     */
    getRect() {
      return new Promise((resolve, reject) => {
        uni.createSelectorQuery()
          // #ifndef MP-ALIPAY
          .in(this)
          // #endif
          .select('#_root').boundingClientRect().exec(res => res[0] ? resolve(res[0]) : reject('Root label not found'))
      })
    },
    /**
     * @description è®¾ç½®å†…容
     * @param {String} content html å†…容
     * @param {Boolean} append æ˜¯å¦åœ¨å°¾éƒ¨è¿½åŠ 
     */
    setContent(content, append) {
      if (!append || !this.imgList)
        this.imgList = []
      const nodes = new parser(this).parse(content)
      // #ifdef APP-PLUS-NVUE
      if (this._ready)
        this._set(nodes, append)
      // #endif
      this.$set(this, 'nodes', append ? (this.nodes || []).concat(nodes) : nodes)
      // #ifndef APP-PLUS-NVUE
      this._videos = []
      this.$nextTick(() => {
        this._hook('onLoad')
        this.$emit('load')
      })
      // ç­‰å¾…图片加载完毕
      let height
      clearInterval(this._timer)
      this._timer = setInterval(() => {
        this.getRect().then(rect => {
          // 350ms æ€»é«˜åº¦æ— å˜åŒ–就触发 ready äº‹ä»¶
          if (rect.height == height) {
            this.$emit('ready', rect)
            clearInterval(this._timer)
          }
          height = rect.height
        }).catch(() => { })
      }, 350)
      // #endif
    },
    /**
     * @description è°ƒç”¨æ’件钩子函数
     */
    _hook(name) {
      for (let i = plugins.length; i--;)
        if (this.plugins[i][name])
          this.plugins[i][name]()
    },
    // #ifdef APP-PLUS-NVUE
    /**
     * @description è®¾ç½®å†…容
     */
    _set(nodes, append) {
      this.$refs.web.evalJs('setContent(' + JSON.stringify(nodes) + ',' + JSON.stringify([this.bgColor, this.errorImg, this.loadingImg, this.pauseVideo, this.scrollTable, this.selectable]) + ',' + append + ')')
    },
    /**
     * @description æŽ¥æ”¶åˆ° web-view æ¶ˆæ¯
     */
    _onMessage(e) {
      const message = e.detail.data[0]
      switch (message.action) {
        // web-view åˆå§‹åŒ–完毕
        case 'onJSBridgeReady':
          this._ready = true
          if (this.nodes)
            this._set(this.nodes)
          break
        // å†…容 dom åŠ è½½å®Œæ¯•
        case 'onLoad':
          this.height = message.height
          this._hook('onLoad')
          this.$emit('load')
          break
        // æ‰€æœ‰å›¾ç‰‡åŠ è½½å®Œæ¯•
        case 'onReady':
          this.getRect().then(res => {
            this.$emit('ready', res)
          }).catch(() => { })
          break
        // æ€»é«˜åº¦å‘生变化
        case 'onHeightChange':
          this.height = message.height
          break
        // å›¾ç‰‡ç‚¹å‡»
        case 'onImgTap':
          this.$emit('imgTap', message.attrs)
          if (this.previewImg)
            uni.previewImage({
              current: parseInt(message.attrs.i),
              urls: this.imgList
            })
          break
        // é“¾æŽ¥ç‚¹å‡»
        case 'onLinkTap':
          const href = message.attrs.href
          this.$emit('linkTap', message.attrs)
          if (href) {
            // é”šç‚¹è·³è½¬
            if (href[0] == '#') {
              if (this.useAnchor)
                dom.scrollToElement(this.$refs.web, {
                  offset: message.offset
                })
            }
            // æ‰“开外链
            else if (href.includes('://')) {
              if (this.copyLink)
                plus.runtime.openWeb(href)
            }
            else
              uni.navigateTo({
                url: href,
                fail() {
                  wx.switchTab({
                    url: href
                  })
                }
              })
          }
          break
        // èŽ·å–åˆ°é”šç‚¹çš„åç§»é‡
        case 'getOffset':
          if (typeof message.offset == 'number') {
            dom.scrollToElement(this.$refs.web, {
              offset: message.offset + this._navigateTo.offset
            })
            this._navigateTo.resolve()
          } else
            this._navigateTo.reject('Label not found')
          break
        // ç‚¹å‡»
        case 'onClick':
          this.$emit('tap')
          break
        // å‡ºé”™
        case 'onError':
          this.$emit('error', {
            source: message.source,
            attrs: message.attrs
          })
      }
    }
    // #endif
  }
}
</script>
<style>
/* #ifndef APP-PLUS-NVUE */
/* æ ¹èŠ‚ç‚¹æ ·å¼ */
._root {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/* é•¿æŒ‰å¤åˆ¶ */
._select {
  user-select: text;
}
/* #endif */
</style>