parser.js 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  1. /**
  2. * @fileoverview html 解析器
  3. */
  4. // 配置
  5. const config = {
  6. // 信任的标签(保持标签名不变)
  7. trustTags: makeMap('a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video'),
  8. // 块级标签(转为 div,其他的非信任标签转为 span)
  9. blockTags: makeMap('address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section'),
  10. // #ifdef (MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE3
  11. // 行内标签
  12. inlineTags: makeMap('abbr,b,big,code,del,em,i,ins,label,q,small,span,strong,sub,sup'),
  13. // #endif
  14. // 要移除的标签
  15. ignoreTags: makeMap('area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr'),
  16. // 自闭合的标签
  17. voidTags: makeMap('area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr'),
  18. // html 实体
  19. entities: {
  20. lt: '<',
  21. gt: '>',
  22. quot: '"',
  23. apos: "'",
  24. ensp: '\u2002',
  25. emsp: '\u2003',
  26. nbsp: '\xA0',
  27. semi: ';',
  28. ndash: '–',
  29. mdash: '—',
  30. middot: '·',
  31. lsquo: '‘',
  32. rsquo: '’',
  33. ldquo: '“',
  34. rdquo: '”',
  35. bull: '•',
  36. hellip: '…',
  37. larr: '←',
  38. uarr: '↑',
  39. rarr: '→',
  40. darr: '↓'
  41. },
  42. // 默认的标签样式
  43. tagStyle: {
  44. // #ifndef APP-PLUS-NVUE
  45. address: 'font-style:italic',
  46. big: 'display:inline;font-size:1.2em',
  47. caption: 'display:table-caption;text-align:center',
  48. center: 'text-align:center',
  49. cite: 'font-style:italic',
  50. dd: 'margin-left:40px',
  51. mark: 'background-color:yellow',
  52. pre: 'font-family:monospace;white-space:pre',
  53. s: 'text-decoration:line-through',
  54. small: 'display:inline;font-size:0.8em',
  55. strike: 'text-decoration:line-through',
  56. u: 'text-decoration:underline'
  57. // #endif
  58. },
  59. // svg 大小写对照表
  60. svgDict: {
  61. animatetransform: 'animateTransform',
  62. lineargradient: 'linearGradient',
  63. viewbox: 'viewBox',
  64. attributename: 'attributeName',
  65. repeatcount: 'repeatCount',
  66. repeatdur: 'repeatDur'
  67. }
  68. }
  69. const tagSelector={}
  70. const {
  71. windowWidth,
  72. // #ifdef MP-WEIXIN
  73. system
  74. // #endif
  75. } = uni.getSystemInfoSync()
  76. const blankChar = makeMap(' ,\r,\n,\t,\f')
  77. let idIndex = 0
  78. // #ifdef H5 || APP-PLUS
  79. config.ignoreTags.iframe = undefined
  80. config.trustTags.iframe = true
  81. config.ignoreTags.embed = undefined
  82. config.trustTags.embed = true
  83. // #endif
  84. // #ifdef APP-PLUS-NVUE
  85. config.ignoreTags.source = undefined
  86. config.ignoreTags.style = undefined
  87. // #endif
  88. /**
  89. * @description 创建 map
  90. * @param {String} str 逗号分隔
  91. */
  92. function makeMap (str) {
  93. const map = Object.create(null)
  94. const list = str.split(',')
  95. for (let i = list.length; i--;) {
  96. map[list[i]] = true
  97. }
  98. return map
  99. }
  100. /**
  101. * @description 解码 html 实体
  102. * @param {String} str 要解码的字符串
  103. * @param {Boolean} amp 要不要解码 &amp;
  104. * @returns {String} 解码后的字符串
  105. */
  106. function decodeEntity (str, amp) {
  107. let i = str.indexOf('&')
  108. while (i !== -1) {
  109. const j = str.indexOf(';', i + 3)
  110. let code
  111. if (j === -1) break
  112. if (str[i + 1] === '#') {
  113. // &#123; 形式的实体
  114. code = parseInt((str[i + 2] === 'x' ? '0' : '') + str.substring(i + 2, j))
  115. if (!isNaN(code)) {
  116. str = str.substr(0, i) + String.fromCharCode(code) + str.substr(j + 1)
  117. }
  118. } else {
  119. // &nbsp; 形式的实体
  120. code = str.substring(i + 1, j)
  121. if (config.entities[code] || (code === 'amp' && amp)) {
  122. str = str.substr(0, i) + (config.entities[code] || '&') + str.substr(j + 1)
  123. }
  124. }
  125. i = str.indexOf('&', i + 1)
  126. }
  127. return str
  128. }
  129. /**
  130. * @description 合并多个块级标签,加快长内容渲染
  131. * @param {Array} nodes 要合并的标签数组
  132. */
  133. function mergeNodes (nodes) {
  134. let i = nodes.length - 1
  135. for (let j = i; j >= -1; j--) {
  136. if (j === -1 || nodes[j].c || !nodes[j].name || (nodes[j].name !== 'div' && nodes[j].name !== 'p' && nodes[j].name[0] !== 'h') || (nodes[j].attrs.style || '').includes('inline')) {
  137. if (i - j >= 5) {
  138. nodes.splice(j + 1, i - j, {
  139. name: 'div',
  140. attrs: {},
  141. children: nodes.slice(j + 1, i + 1)
  142. })
  143. }
  144. i = j - 1
  145. }
  146. }
  147. }
  148. /**
  149. * @description html 解析器
  150. * @param {Object} vm 组件实例
  151. */
  152. function Parser (vm) {
  153. this.options = vm || {}
  154. this.tagStyle = Object.assign({}, config.tagStyle, this.options.tagStyle)
  155. this.imgList = vm.imgList || []
  156. this.imgList._unloadimgs = 0
  157. this.plugins = vm.plugins || []
  158. this.attrs = Object.create(null)
  159. this.stack = []
  160. this.nodes = []
  161. this.pre = (this.options.containerStyle || '').includes('white-space') && this.options.containerStyle.includes('pre') ? 2 : 0
  162. }
  163. /**
  164. * @description 执行解析
  165. * @param {String} content 要解析的文本
  166. */
  167. Parser.prototype.parse = function (content) {
  168. // 插件处理
  169. for (let i = this.plugins.length; i--;) {
  170. if (this.plugins[i].onUpdate) {
  171. content = this.plugins[i].onUpdate(content, config) || content
  172. }
  173. }
  174. new Lexer(this).parse(content)
  175. // 出栈未闭合的标签
  176. while (this.stack.length) {
  177. this.popNode()
  178. }
  179. if (this.nodes.length > 50) {
  180. mergeNodes(this.nodes)
  181. }
  182. return this.nodes
  183. }
  184. /**
  185. * @description 将标签暴露出来(不被 rich-text 包含)
  186. */
  187. Parser.prototype.expose = function () {
  188. // #ifndef APP-PLUS-NVUE
  189. for (let i = this.stack.length; i--;) {
  190. const item = this.stack[i]
  191. if (item.c || item.name === 'a' || item.name === 'video' || item.name === 'audio') return
  192. item.c = 1
  193. }
  194. // #endif
  195. }
  196. /**
  197. * @description 处理插件
  198. * @param {Object} node 要处理的标签
  199. * @returns {Boolean} 是否要移除此标签
  200. */
  201. Parser.prototype.hook = function (node) {
  202. for (let i = this.plugins.length; i--;) {
  203. if (this.plugins[i].onParse && this.plugins[i].onParse(node, this) === false) {
  204. return false
  205. }
  206. }
  207. return true
  208. }
  209. /**
  210. * @description 将链接拼接上主域名
  211. * @param {String} url 需要拼接的链接
  212. * @returns {String} 拼接后的链接
  213. */
  214. Parser.prototype.getUrl = function (url) {
  215. const domain = this.options.domain
  216. if (url[0] === '/') {
  217. if (url[1] === '/') {
  218. // // 开头的补充协议名
  219. url = (domain ? domain.split('://')[0] : 'http') + ':' + url
  220. } else if (domain) {
  221. // 否则补充整个域名
  222. url = domain + url
  223. } /* #ifdef APP-PLUS */ else {
  224. url = plus.io.convertLocalFileSystemURL(url)
  225. } /* #endif */
  226. } else if (!url.includes('data:') && !url.includes('://')) {
  227. if (domain) {
  228. url = domain + '/' + url
  229. } /* #ifdef APP-PLUS */ else {
  230. url = plus.io.convertLocalFileSystemURL(url)
  231. } /* #endif */
  232. }
  233. return url
  234. }
  235. /**
  236. * @description 解析样式表
  237. * @param {Object} node 标签
  238. * @returns {Object}
  239. */
  240. Parser.prototype.parseStyle = function (node) {
  241. const attrs = node.attrs
  242. const list = (this.tagStyle[node.name] || '').split(';').concat((attrs.style || '').split(';'))
  243. const styleObj = {}
  244. let tmp = ''
  245. if (attrs.id && !this.xml) {
  246. // 暴露锚点
  247. if (this.options.useAnchor) {
  248. this.expose()
  249. } else if (node.name !== 'img' && node.name !== 'a' && node.name !== 'video' && node.name !== 'audio') {
  250. attrs.id = undefined
  251. }
  252. }
  253. // 转换 width 和 height 属性
  254. if (attrs.width) {
  255. styleObj.width = parseFloat(attrs.width) + (attrs.width.includes('%') ? '%' : 'px')
  256. attrs.width = undefined
  257. }
  258. if (attrs.height) {
  259. styleObj.height = parseFloat(attrs.height) + (attrs.height.includes('%') ? '%' : 'px')
  260. attrs.height = undefined
  261. }
  262. for (let i = 0, len = list.length; i < len; i++) {
  263. const info = list[i].split(':')
  264. if (info.length < 2) continue
  265. const key = info.shift().trim().toLowerCase()
  266. let value = info.join(':').trim()
  267. if ((value[0] === '-' && value.lastIndexOf('-') > 0) || value.includes('safe')) {
  268. // 兼容性的 css 不压缩
  269. tmp += `;${key}:${value}`
  270. } else if (!styleObj[key] || value.includes('import') || !styleObj[key].includes('import')) {
  271. // 重复的样式进行覆盖
  272. if (value.includes('url')) {
  273. // 填充链接
  274. let j = value.indexOf('(') + 1
  275. if (j) {
  276. while (value[j] === '"' || value[j] === "'" || blankChar[value[j]]) {
  277. j++
  278. }
  279. value = value.substr(0, j) + this.getUrl(value.substr(j))
  280. }
  281. } else if (value.includes('rpx')) {
  282. // 转换 rpx(rich-text 内部不支持 rpx)
  283. value = value.replace(/[0-9.]+\s*rpx/g, $ => parseFloat($) * windowWidth / 750 + 'px')
  284. }
  285. styleObj[key] = value
  286. }
  287. }
  288. node.attrs.style = tmp
  289. return styleObj
  290. }
  291. /**
  292. * @description 解析到标签名
  293. * @param {String} name 标签名
  294. * @private
  295. */
  296. Parser.prototype.onTagName = function (name) {
  297. this.tagName = this.xml ? name : name.toLowerCase()
  298. if (this.tagName === 'svg') {
  299. this.xml = (this.xml || 0) + 1 // svg 标签内大小写敏感
  300. config.ignoreTags.style = undefined // svg 标签内 style 可用
  301. }
  302. }
  303. /**
  304. * @description 解析到属性名
  305. * @param {String} name 属性名
  306. * @private
  307. */
  308. Parser.prototype.onAttrName = function (name) {
  309. name = this.xml ? name : name.toLowerCase()
  310. if (name.substr(0, 5) === 'data-') {
  311. if (name === 'data-src' && !this.attrs.src) {
  312. // data-src 自动转为 src
  313. this.attrName = 'src'
  314. } else if (this.tagName === 'img' || this.tagName === 'a') {
  315. // a 和 img 标签保留 data- 的属性,可以在 imgtap 和 linktap 事件中使用
  316. this.attrName = name
  317. } else {
  318. // 剩余的移除以减小大小
  319. this.attrName = undefined
  320. }
  321. } else {
  322. this.attrName = name
  323. this.attrs[name] = 'T' // boolean 型属性缺省设置
  324. }
  325. }
  326. /**
  327. * @description 解析到属性值
  328. * @param {String} val 属性值
  329. * @private
  330. */
  331. Parser.prototype.onAttrVal = function (val) {
  332. const name = this.attrName || ''
  333. if (name === 'style' || name === 'href') {
  334. // 部分属性进行实体解码
  335. this.attrs[name] = decodeEntity(val, true)
  336. } else if (name.includes('src')) {
  337. // 拼接主域名
  338. this.attrs[name] = this.getUrl(decodeEntity(val, true))
  339. } else if (name) {
  340. this.attrs[name] = val
  341. }
  342. }
  343. /**
  344. * @description 解析到标签开始
  345. * @param {Boolean} selfClose 是否有自闭合标识 />
  346. * @private
  347. */
  348. Parser.prototype.onOpenTag = function (selfClose) {
  349. // 拼装 node
  350. const node = Object.create(null)
  351. node.name = this.tagName
  352. node.attrs = this.attrs
  353. // 避免因为自动 diff 使得 type 被设置为 null 导致部分内容不显示
  354. if (this.options.nodes.length) {
  355. node.type = 'node'
  356. }
  357. this.attrs = Object.create(null)
  358. const attrs = node.attrs
  359. const parent = this.stack[this.stack.length - 1]
  360. const siblings = parent ? parent.children : this.nodes
  361. const close = this.xml ? selfClose : config.voidTags[node.name]
  362. // 替换标签名选择器
  363. if (tagSelector[node.name]) {
  364. attrs.class = tagSelector[node.name] + (attrs.class ? ' ' + attrs.class : '')
  365. }
  366. // 转换 embed 标签
  367. if (node.name === 'embed') {
  368. // #ifndef H5 || APP-PLUS
  369. const src = attrs.src || ''
  370. // 按照后缀名和 type 将 embed 转为 video 或 audio
  371. if (src.includes('.mp4') || src.includes('.3gp') || src.includes('.m3u8') || (attrs.type || '').includes('video')) {
  372. node.name = 'video'
  373. } else if (src.includes('.mp3') || src.includes('.wav') || src.includes('.aac') || src.includes('.m4a') || (attrs.type || '').includes('audio')) {
  374. node.name = 'audio'
  375. }
  376. if (attrs.autostart) {
  377. attrs.autoplay = 'T'
  378. }
  379. attrs.controls = 'T'
  380. // #endif
  381. // #ifdef H5 || APP-PLUS
  382. this.expose()
  383. // #endif
  384. }
  385. // #ifndef APP-PLUS-NVUE
  386. // 处理音视频
  387. if (node.name === 'video' || node.name === 'audio') {
  388. // 设置 id 以便获取 context
  389. if (node.name === 'video' && !attrs.id) {
  390. attrs.id = 'v' + idIndex++
  391. }
  392. // 没有设置 controls 也没有设置 autoplay 的自动设置 controls
  393. if (!attrs.controls && !attrs.autoplay) {
  394. attrs.controls = 'T'
  395. }
  396. // 用数组存储所有可用的 source
  397. node.src = []
  398. if (attrs.src) {
  399. node.src.push(attrs.src)
  400. attrs.src = undefined
  401. }
  402. this.expose()
  403. }
  404. // #endif
  405. // 处理自闭合标签
  406. if (close) {
  407. if (!this.hook(node) || config.ignoreTags[node.name]) {
  408. // 通过 base 标签设置主域名
  409. if (node.name === 'base' && !this.options.domain) {
  410. this.options.domain = attrs.href
  411. } /* #ifndef APP-PLUS-NVUE */ else if (node.name === 'source' && parent && (parent.name === 'video' || parent.name === 'audio') && attrs.src) {
  412. // 设置 source 标签(仅父节点为 video 或 audio 时有效)
  413. parent.src.push(attrs.src)
  414. } /* #endif */
  415. return
  416. }
  417. // 解析 style
  418. const styleObj = this.parseStyle(node)
  419. // 处理图片
  420. if (node.name === 'img') {
  421. if (attrs.src) {
  422. // 标记 webp
  423. if (attrs.src.includes('webp')) {
  424. node.webp = 'T'
  425. }
  426. // data url 图片如果没有设置 original-src 默认为不可预览的小图片
  427. if (attrs.src.includes('data:') && !attrs['original-src']) {
  428. attrs.ignore = 'T'
  429. }
  430. if (!attrs.ignore || node.webp || attrs.src.includes('cloud://')) {
  431. for (let i = this.stack.length; i--;) {
  432. const item = this.stack[i]
  433. if (item.name === 'a') {
  434. node.a = item.attrs
  435. }
  436. if (item.name === 'table' && !node.webp && !attrs.src.includes('cloud://')) {
  437. if (!styleObj.display || styleObj.display.includes('inline')) {
  438. node.t = 'inline-block'
  439. } else {
  440. node.t = styleObj.display
  441. }
  442. styleObj.display = undefined
  443. }
  444. // #ifndef H5 || APP-PLUS
  445. const style = item.attrs.style || ''
  446. if (style.includes('flex:') && !style.includes('flex:0') && !style.includes('flex: 0') && (!styleObj.width || parseInt(styleObj.width) > 100)) {
  447. styleObj.width = '100% !important'
  448. styleObj.height = ''
  449. for (let j = i + 1; j < this.stack.length; j++) {
  450. this.stack[j].attrs.style = (this.stack[j].attrs.style || '').replace('inline-', '')
  451. }
  452. } else if (style.includes('flex') && styleObj.width === '100%') {
  453. for (let j = i + 1; j < this.stack.length; j++) {
  454. const style = this.stack[j].attrs.style || ''
  455. if (!style.includes(';width') && !style.includes(' width') && style.indexOf('width') !== 0) {
  456. styleObj.width = ''
  457. break
  458. }
  459. }
  460. } else if (style.includes('inline-block')) {
  461. if (styleObj.width && styleObj.width[styleObj.width.length - 1] === '%') {
  462. item.attrs.style += ';max-width:' + styleObj.width
  463. styleObj.width = ''
  464. } else {
  465. item.attrs.style += ';max-width:100%'
  466. }
  467. }
  468. // #endif
  469. item.c = 1
  470. }
  471. attrs.i = this.imgList.length.toString()
  472. let src = attrs['original-src'] || attrs.src
  473. // #ifndef H5 || MP-ALIPAY || APP-PLUS || MP-360
  474. if (this.imgList.includes(src)) {
  475. // 如果有重复的链接则对域名进行随机大小写变换避免预览时错位
  476. let i = src.indexOf('://')
  477. if (i !== -1) {
  478. i += 3
  479. let newSrc = src.substr(0, i)
  480. for (; i < src.length; i++) {
  481. if (src[i] === '/') break
  482. newSrc += Math.random() > 0.5 ? src[i].toUpperCase() : src[i]
  483. }
  484. newSrc += src.substr(i)
  485. src = newSrc
  486. }
  487. }
  488. // #endif
  489. this.imgList.push(src)
  490. if (!node.t) {
  491. this.imgList._unloadimgs += 1
  492. }
  493. // #ifdef H5 || APP-PLUS
  494. if (this.options.lazyLoad) {
  495. attrs['data-src'] = attrs.src
  496. attrs.src = undefined
  497. }
  498. // #endif
  499. }
  500. }
  501. if (styleObj.display === 'inline') {
  502. styleObj.display = ''
  503. }
  504. // #ifndef APP-PLUS-NVUE
  505. if (attrs.ignore) {
  506. styleObj['max-width'] = styleObj['max-width'] || '100%'
  507. attrs.style += ';-webkit-touch-callout:none'
  508. }
  509. // #endif
  510. // 设置的宽度超出屏幕,为避免变形,高度转为自动
  511. if (parseInt(styleObj.width) > windowWidth) {
  512. styleObj.height = undefined
  513. }
  514. // 记录是否设置了宽高
  515. if (!isNaN(parseInt(styleObj.width))) {
  516. node.w = 'T'
  517. }
  518. if (!isNaN(parseInt(styleObj.height)) && (!styleObj.height.includes('%') || (parent && (parent.attrs.style || '').includes('height')))) {
  519. node.h = 'T'
  520. }
  521. } else if (node.name === 'svg') {
  522. siblings.push(node)
  523. this.stack.push(node)
  524. this.popNode()
  525. return
  526. }
  527. for (const key in styleObj) {
  528. if (styleObj[key]) {
  529. attrs.style += `;${key}:${styleObj[key].replace(' !important', '')}`
  530. }
  531. }
  532. attrs.style = attrs.style.substr(1) || undefined
  533. // #ifdef (MP-WEIXIN || MP-QQ) && VUE3
  534. if (!attrs.style) {
  535. delete attrs.style
  536. }
  537. // #endif
  538. } else {
  539. if ((node.name === 'pre' || ((attrs.style || '').includes('white-space') && attrs.style.includes('pre'))) && this.pre !== 2) {
  540. this.pre = node.pre = 1
  541. }
  542. node.children = []
  543. this.stack.push(node)
  544. }
  545. // 加入节点树
  546. siblings.push(node)
  547. }
  548. /**
  549. * @description 解析到标签结束
  550. * @param {String} name 标签名
  551. * @private
  552. */
  553. Parser.prototype.onCloseTag = function (name) {
  554. // 依次出栈到匹配为止
  555. name = this.xml ? name : name.toLowerCase()
  556. let i
  557. for (i = this.stack.length; i--;) {
  558. if (this.stack[i].name === name) break
  559. }
  560. if (i !== -1) {
  561. while (this.stack.length > i) {
  562. this.popNode()
  563. }
  564. } else if (name === 'p' || name === 'br') {
  565. const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
  566. siblings.push({
  567. name,
  568. attrs: {
  569. class: tagSelector[name] || '',
  570. style: this.tagStyle[name] || ''
  571. }
  572. })
  573. }
  574. }
  575. /**
  576. * @description 处理标签出栈
  577. * @private
  578. */
  579. Parser.prototype.popNode = function () {
  580. const node = this.stack.pop()
  581. let attrs = node.attrs
  582. const children = node.children
  583. const parent = this.stack[this.stack.length - 1]
  584. const siblings = parent ? parent.children : this.nodes
  585. if (!this.hook(node) || config.ignoreTags[node.name]) {
  586. // 获取标题
  587. if (node.name === 'title' && children.length && children[0].type === 'text' && this.options.setTitle) {
  588. uni.setNavigationBarTitle({
  589. title: children[0].text
  590. })
  591. }
  592. siblings.pop()
  593. return
  594. }
  595. if (node.pre && this.pre !== 2) {
  596. // 是否合并空白符标识
  597. this.pre = node.pre = undefined
  598. for (let i = this.stack.length; i--;) {
  599. if (this.stack[i].pre) {
  600. this.pre = 1
  601. }
  602. }
  603. }
  604. const styleObj = {}
  605. // 转换 svg
  606. if (node.name === 'svg') {
  607. if (this.xml > 1) {
  608. // 多层 svg 嵌套
  609. this.xml--
  610. return
  611. }
  612. // #ifdef APP-PLUS-NVUE
  613. (function traversal (node) {
  614. if (node.name) {
  615. // 调整 svg 的大小写
  616. node.name = config.svgDict[node.name] || node.name
  617. for (const item in node.attrs) {
  618. if (config.svgDict[item]) {
  619. node.attrs[config.svgDict[item]] = node.attrs[item]
  620. node.attrs[item] = undefined
  621. }
  622. }
  623. for (let i = 0; i < (node.children || []).length; i++) {
  624. traversal(node.children[i])
  625. }
  626. }
  627. })(node)
  628. // #endif
  629. // #ifndef APP-PLUS-NVUE
  630. let src = ''
  631. const style = attrs.style
  632. attrs.style = ''
  633. attrs.xmlns = 'http://www.w3.org/2000/svg';
  634. (function traversal (node) {
  635. if (node.type === 'text') {
  636. src += node.text
  637. return
  638. }
  639. const name = config.svgDict[node.name] || node.name
  640. src += '<' + name
  641. for (const item in node.attrs) {
  642. const val = node.attrs[item]
  643. if (val) {
  644. src += ` ${config.svgDict[item] || item}="${val}"`
  645. }
  646. }
  647. if (!node.children) {
  648. src += '/>'
  649. } else {
  650. src += '>'
  651. for (let i = 0; i < node.children.length; i++) {
  652. traversal(node.children[i])
  653. }
  654. src += '</' + name + '>'
  655. }
  656. })(node)
  657. node.name = 'img'
  658. node.attrs = {
  659. src: 'data:image/svg+xml;utf8,' + src.replace(/#/g, '%23'),
  660. style,
  661. ignore: 'T'
  662. }
  663. node.children = undefined
  664. // #endif
  665. this.xml = false
  666. config.ignoreTags.style = true
  667. return
  668. }
  669. // #ifndef APP-PLUS-NVUE
  670. // 转换 align 属性
  671. if (attrs.align) {
  672. if (node.name === 'table') {
  673. if (attrs.align === 'center') {
  674. styleObj['margin-inline-start'] = styleObj['margin-inline-end'] = 'auto'
  675. } else {
  676. styleObj.float = attrs.align
  677. }
  678. } else {
  679. styleObj['text-align'] = attrs.align
  680. }
  681. attrs.align = undefined
  682. }
  683. // 转换 dir 属性
  684. if (attrs.dir) {
  685. styleObj.direction = attrs.dir
  686. attrs.dir = undefined
  687. }
  688. // 转换 font 标签的属性
  689. if (node.name === 'font') {
  690. if (attrs.color) {
  691. styleObj.color = attrs.color
  692. attrs.color = undefined
  693. }
  694. if (attrs.face) {
  695. styleObj['font-family'] = attrs.face
  696. attrs.face = undefined
  697. }
  698. if (attrs.size) {
  699. let size = parseInt(attrs.size)
  700. if (!isNaN(size)) {
  701. if (size < 1) {
  702. size = 1
  703. } else if (size > 7) {
  704. size = 7
  705. }
  706. styleObj['font-size'] = ['x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', 'xxx-large'][size - 1]
  707. }
  708. attrs.size = undefined
  709. }
  710. }
  711. // #endif
  712. // 一些编辑器的自带 class
  713. if ((attrs.class || '').includes('align-center')) {
  714. styleObj['text-align'] = 'center'
  715. }
  716. Object.assign(styleObj, this.parseStyle(node))
  717. if (node.name !== 'table' && parseInt(styleObj.width) > windowWidth) {
  718. styleObj['max-width'] = '100%'
  719. styleObj['box-sizing'] = 'border-box'
  720. }
  721. // #ifndef APP-PLUS-NVUE
  722. if (config.blockTags[node.name]) {
  723. node.name = 'div'
  724. } else if (!config.trustTags[node.name] && !this.xml) {
  725. // 未知标签转为 span,避免无法显示
  726. node.name = 'span'
  727. }
  728. if (node.name === 'a' || node.name === 'ad'
  729. // #ifdef H5 || APP-PLUS
  730. || node.name === 'iframe' // eslint-disable-line
  731. // #endif
  732. ) {
  733. this.expose()
  734. } else if (node.name === 'video') {
  735. if ((styleObj.height || '').includes('auto')) {
  736. styleObj.height = undefined
  737. }
  738. /* #ifdef APP-PLUS */
  739. let str = '<video style="width:100%;height:100%"'
  740. for (const item in attrs) {
  741. if (attrs[item]) {
  742. str += ' ' + item + '="' + attrs[item] + '"'
  743. }
  744. }
  745. if (this.options.pauseVideo) {
  746. str += ' onplay="this.dispatchEvent(new CustomEvent(\'vplay\',{bubbles:!0}));for(var e=document.getElementsByTagName(\'video\'),t=0;t<e.length;t++)e[t]!=this&&e[t].pause()"'
  747. }
  748. str += '>'
  749. for (let i = 0; i < node.src.length; i++) {
  750. str += '<source src="' + node.src[i] + '">'
  751. }
  752. str += '</video>'
  753. node.html = str
  754. /* #endif */
  755. } else if ((node.name === 'ul' || node.name === 'ol') && node.c) {
  756. // 列表处理
  757. const types = {
  758. a: 'lower-alpha',
  759. A: 'upper-alpha',
  760. i: 'lower-roman',
  761. I: 'upper-roman'
  762. }
  763. if (types[attrs.type]) {
  764. attrs.style += ';list-style-type:' + types[attrs.type]
  765. attrs.type = undefined
  766. }
  767. for (let i = children.length; i--;) {
  768. if (children[i].name === 'li') {
  769. children[i].c = 1
  770. }
  771. }
  772. } else if (node.name === 'table') {
  773. // 表格处理
  774. // cellpadding、cellspacing、border 这几个常用表格属性需要通过转换实现
  775. let padding = parseFloat(attrs.cellpadding)
  776. let spacing = parseFloat(attrs.cellspacing)
  777. const border = parseFloat(attrs.border)
  778. const bordercolor = styleObj['border-color']
  779. const borderstyle = styleObj['border-style']
  780. if (node.c) {
  781. // padding 和 spacing 默认 2
  782. if (isNaN(padding)) {
  783. padding = 2
  784. }
  785. if (isNaN(spacing)) {
  786. spacing = 2
  787. }
  788. }
  789. if (border) {
  790. attrs.style += `;border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'}`
  791. }
  792. if (node.flag && node.c) {
  793. // 有 colspan 或 rowspan 且含有链接的表格通过 grid 布局实现
  794. styleObj.display = 'grid'
  795. if (spacing) {
  796. styleObj['grid-gap'] = spacing + 'px'
  797. styleObj.padding = spacing + 'px'
  798. } else if (border) {
  799. // 无间隔的情况下避免边框重叠
  800. attrs.style += ';border-left:0;border-top:0'
  801. }
  802. const width = [] // 表格的列宽
  803. const trList = [] // tr 列表
  804. const cells = [] // 保存新的单元格
  805. const map = {}; // 被合并单元格占用的格子
  806. (function traversal (nodes) {
  807. for (let i = 0; i < nodes.length; i++) {
  808. if (nodes[i].name === 'tr') {
  809. trList.push(nodes[i])
  810. } else {
  811. traversal(nodes[i].children || [])
  812. }
  813. }
  814. })(children)
  815. for (let row = 1; row <= trList.length; row++) {
  816. let col = 1
  817. for (let j = 0; j < trList[row - 1].children.length; j++) {
  818. const td = trList[row - 1].children[j]
  819. if (td.name === 'td' || td.name === 'th') {
  820. // 这个格子被上面的单元格占用,则列号++
  821. while (map[row + '.' + col]) {
  822. col++
  823. }
  824. let style = td.attrs.style || ''
  825. let start = style.indexOf('width') ? style.indexOf(';width') : 0
  826. // 提取出 td 的宽度
  827. if (start !== -1) {
  828. let end = style.indexOf(';', start + 6)
  829. if (end === -1) {
  830. end = style.length
  831. }
  832. if (!td.attrs.colspan) {
  833. width[col] = style.substring(start ? start + 7 : 6, end)
  834. }
  835. style = style.substr(0, start) + style.substr(end)
  836. }
  837. // 设置竖直对齐
  838. style += ';display:flex'
  839. start = style.indexOf('vertical-align')
  840. if (start !== -1) {
  841. const val = style.substr(start + 15, 10)
  842. if (val.includes('middle')) {
  843. style += ';align-items:center'
  844. } else if (val.includes('bottom')) {
  845. style += ';align-items:flex-end'
  846. }
  847. } else {
  848. style += ';align-items:center'
  849. }
  850. // 设置水平对齐
  851. start = style.indexOf('text-align')
  852. if (start !== -1) {
  853. const val = style.substr(start + 11, 10)
  854. if (val.includes('center')) {
  855. style += ';justify-content: center'
  856. } else if (val.includes('right')) {
  857. style += ';justify-content: right'
  858. }
  859. }
  860. style = (border ? `;border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'}` + (spacing ? '' : ';border-right:0;border-bottom:0') : '') + (padding ? `;padding:${padding}px` : '') + ';' + style
  861. // 处理列合并
  862. if (td.attrs.colspan) {
  863. style += `;grid-column-start:${col};grid-column-end:${col + parseInt(td.attrs.colspan)}`
  864. if (!td.attrs.rowspan) {
  865. style += `;grid-row-start:${row};grid-row-end:${row + 1}`
  866. }
  867. col += parseInt(td.attrs.colspan) - 1
  868. }
  869. // 处理行合并
  870. if (td.attrs.rowspan) {
  871. style += `;grid-row-start:${row};grid-row-end:${row + parseInt(td.attrs.rowspan)}`
  872. if (!td.attrs.colspan) {
  873. style += `;grid-column-start:${col};grid-column-end:${col + 1}`
  874. }
  875. // 记录下方单元格被占用
  876. for (let rowspan = 1; rowspan < td.attrs.rowspan; rowspan++) {
  877. for (let colspan = 0; colspan < (td.attrs.colspan || 1); colspan++) {
  878. map[(row + rowspan) + '.' + (col - colspan)] = 1
  879. }
  880. }
  881. }
  882. if (style) {
  883. td.attrs.style = style
  884. }
  885. cells.push(td)
  886. col++
  887. }
  888. }
  889. if (row === 1) {
  890. let temp = ''
  891. for (let i = 1; i < col; i++) {
  892. temp += (width[i] ? width[i] : 'auto') + ' '
  893. }
  894. styleObj['grid-template-columns'] = temp
  895. }
  896. }
  897. node.children = cells
  898. } else {
  899. // 没有使用合并单元格的表格通过 table 布局实现
  900. if (node.c) {
  901. styleObj.display = 'table'
  902. }
  903. if (!isNaN(spacing)) {
  904. styleObj['border-spacing'] = spacing + 'px'
  905. }
  906. if (border || padding) {
  907. // 遍历
  908. (function traversal (nodes) {
  909. for (let i = 0; i < nodes.length; i++) {
  910. const td = nodes[i]
  911. if (td.name === 'th' || td.name === 'td') {
  912. if (border) {
  913. td.attrs.style = `border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'};${td.attrs.style || ''}`
  914. }
  915. if (padding) {
  916. td.attrs.style = `padding:${padding}px;${td.attrs.style || ''}`
  917. }
  918. } else if (td.children) {
  919. traversal(td.children)
  920. }
  921. }
  922. })(children)
  923. }
  924. }
  925. // 给表格添加一个单独的横向滚动层
  926. if (this.options.scrollTable && !(attrs.style || '').includes('inline')) {
  927. const table = Object.assign({}, node)
  928. node.name = 'div'
  929. node.attrs = {
  930. style: 'overflow:auto'
  931. }
  932. node.children = [table]
  933. attrs = table.attrs
  934. }
  935. } else if ((node.name === 'td' || node.name === 'th') && (attrs.colspan || attrs.rowspan)) {
  936. for (let i = this.stack.length; i--;) {
  937. if (this.stack[i].name === 'table') {
  938. this.stack[i].flag = 1 // 指示含有合并单元格
  939. break
  940. }
  941. }
  942. } else if (node.name === 'ruby') {
  943. // 转换 ruby
  944. node.name = 'span'
  945. for (let i = 0; i < children.length - 1; i++) {
  946. if (children[i].type === 'text' && children[i + 1].name === 'rt') {
  947. children[i] = {
  948. name: 'div',
  949. attrs: {
  950. style: 'display:inline-block;text-align:center'
  951. },
  952. children: [{
  953. name: 'div',
  954. attrs: {
  955. style: 'font-size:50%;' + (children[i + 1].attrs.style || '')
  956. },
  957. children: children[i + 1].children
  958. }, children[i]]
  959. }
  960. children.splice(i + 1, 1)
  961. }
  962. }
  963. } else if (node.c) {
  964. (function traversal (node) {
  965. node.c = 2
  966. for (let i = node.children.length; i--;) {
  967. const child = node.children[i]
  968. // #ifdef (MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE3
  969. if (child.name && (config.inlineTags[child.name] || ((child.attrs.style || '').includes('inline') && child.children)) && !child.c) {
  970. traversal(child)
  971. }
  972. // #endif
  973. if (!child.c || child.name === 'table') {
  974. node.c = 1
  975. }
  976. }
  977. })(node)
  978. }
  979. if ((styleObj.display || '').includes('flex') && !node.c) {
  980. for (let i = children.length; i--;) {
  981. const item = children[i]
  982. if (item.f) {
  983. item.attrs.style = (item.attrs.style || '') + item.f
  984. item.f = undefined
  985. }
  986. }
  987. }
  988. // flex 布局时部分样式需要提取到 rich-text 外层
  989. const flex = parent && ((parent.attrs.style || '').includes('flex') || (parent.attrs.style || '').includes('grid'))
  990. // #ifdef MP-WEIXIN
  991. // 检查基础库版本 virtualHost 是否可用
  992. && !(node.c && wx.getNFCAdapter) // eslint-disable-line
  993. // #endif
  994. // #ifndef MP-WEIXIN || MP-QQ || MP-BAIDU || MP-TOUTIAO
  995. && !node.c // eslint-disable-line
  996. // #endif
  997. if (flex) {
  998. node.f = ';max-width:100%'
  999. }
  1000. if (children.length >= 50 && node.c && !(styleObj.display || '').includes('flex')) {
  1001. mergeNodes(children)
  1002. }
  1003. // #endif
  1004. for (const key in styleObj) {
  1005. if (styleObj[key]) {
  1006. const val = `;${key}:${styleObj[key].replace(' !important', '')}`
  1007. /* #ifndef APP-PLUS-NVUE */
  1008. if (flex && ((key.includes('flex') && key !== 'flex-direction') || key === 'align-self' || key.includes('grid') || styleObj[key][0] === '-' || (key.includes('width') && val.includes('%')))) {
  1009. node.f += val
  1010. if (key === 'width') {
  1011. attrs.style += ';width:100%'
  1012. }
  1013. } else /* #endif */ {
  1014. attrs.style += val
  1015. }
  1016. }
  1017. }
  1018. attrs.style = attrs.style.substr(1) || undefined
  1019. // #ifdef (MP-WEIXIN || MP-QQ) && VUE3
  1020. for (const key in attrs) {
  1021. if (!attrs[key]) {
  1022. delete attrs[key]
  1023. }
  1024. }
  1025. // #endif
  1026. }
  1027. /**
  1028. * @description 解析到文本
  1029. * @param {String} text 文本内容
  1030. */
  1031. Parser.prototype.onText = function (text) {
  1032. if (!this.pre) {
  1033. // 合并空白符
  1034. let trim = ''
  1035. let flag
  1036. for (let i = 0, len = text.length; i < len; i++) {
  1037. if (!blankChar[text[i]]) {
  1038. trim += text[i]
  1039. } else {
  1040. if (trim[trim.length - 1] !== ' ') {
  1041. trim += ' '
  1042. }
  1043. if (text[i] === '\n' && !flag) {
  1044. flag = true
  1045. }
  1046. }
  1047. }
  1048. // 去除含有换行符的空串
  1049. if (trim === ' ') {
  1050. if (flag) return
  1051. // #ifdef VUE3
  1052. else {
  1053. const parent = this.stack[this.stack.length - 1]
  1054. if (parent && parent.name[0] === 't') return
  1055. }
  1056. // #endif
  1057. }
  1058. text = trim
  1059. }
  1060. const node = Object.create(null)
  1061. node.type = 'text'
  1062. // #ifdef (MP-BAIDU || MP-ALIPAY || MP-TOUTIAO) && VUE3
  1063. node.attrs = {}
  1064. // #endif
  1065. node.text = decodeEntity(text)
  1066. if (this.hook(node)) {
  1067. // #ifdef MP-WEIXIN
  1068. if (this.options.selectable === 'force' && system.includes('iOS') && !uni.canIUse('rich-text.user-select')) {
  1069. this.expose()
  1070. }
  1071. // #endif
  1072. const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
  1073. siblings.push(node)
  1074. }
  1075. }
  1076. /**
  1077. * @description html 词法分析器
  1078. * @param {Object} handler 高层处理器
  1079. */
  1080. function Lexer (handler) {
  1081. this.handler = handler
  1082. }
  1083. /**
  1084. * @description 执行解析
  1085. * @param {String} content 要解析的文本
  1086. */
  1087. Lexer.prototype.parse = function (content) {
  1088. this.content = content || ''
  1089. this.i = 0 // 标记解析位置
  1090. this.start = 0 // 标记一个单词的开始位置
  1091. this.state = this.text // 当前状态
  1092. for (let len = this.content.length; this.i !== -1 && this.i < len;) {
  1093. this.state()
  1094. }
  1095. }
  1096. /**
  1097. * @description 检查标签是否闭合
  1098. * @param {String} method 如果闭合要进行的操作
  1099. * @returns {Boolean} 是否闭合
  1100. * @private
  1101. */
  1102. Lexer.prototype.checkClose = function (method) {
  1103. const selfClose = this.content[this.i] === '/'
  1104. if (this.content[this.i] === '>' || (selfClose && this.content[this.i + 1] === '>')) {
  1105. if (method) {
  1106. this.handler[method](this.content.substring(this.start, this.i))
  1107. }
  1108. this.i += selfClose ? 2 : 1
  1109. this.start = this.i
  1110. this.handler.onOpenTag(selfClose)
  1111. if (this.handler.tagName === 'script') {
  1112. this.i = this.content.indexOf('</', this.i)
  1113. if (this.i !== -1) {
  1114. this.i += 2
  1115. this.start = this.i
  1116. }
  1117. this.state = this.endTag
  1118. } else {
  1119. this.state = this.text
  1120. }
  1121. return true
  1122. }
  1123. return false
  1124. }
  1125. /**
  1126. * @description 文本状态
  1127. * @private
  1128. */
  1129. Lexer.prototype.text = function () {
  1130. this.i = this.content.indexOf('<', this.i) // 查找最近的标签
  1131. if (this.i === -1) {
  1132. // 没有标签了
  1133. if (this.start < this.content.length) {
  1134. this.handler.onText(this.content.substring(this.start, this.content.length))
  1135. }
  1136. return
  1137. }
  1138. const c = this.content[this.i + 1]
  1139. if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
  1140. // 标签开头
  1141. if (this.start !== this.i) {
  1142. this.handler.onText(this.content.substring(this.start, this.i))
  1143. }
  1144. this.start = ++this.i
  1145. this.state = this.tagName
  1146. } else if (c === '/' || c === '!' || c === '?') {
  1147. if (this.start !== this.i) {
  1148. this.handler.onText(this.content.substring(this.start, this.i))
  1149. }
  1150. const next = this.content[this.i + 2]
  1151. if (c === '/' && ((next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
  1152. // 标签结尾
  1153. this.i += 2
  1154. this.start = this.i
  1155. this.state = this.endTag
  1156. return
  1157. }
  1158. // 处理注释
  1159. let end = '-->'
  1160. if (c !== '!' || this.content[this.i + 2] !== '-' || this.content[this.i + 3] !== '-') {
  1161. end = '>'
  1162. }
  1163. this.i = this.content.indexOf(end, this.i)
  1164. if (this.i !== -1) {
  1165. this.i += end.length
  1166. this.start = this.i
  1167. }
  1168. } else {
  1169. this.i++
  1170. }
  1171. }
  1172. /**
  1173. * @description 标签名状态
  1174. * @private
  1175. */
  1176. Lexer.prototype.tagName = function () {
  1177. if (blankChar[this.content[this.i]]) {
  1178. // 解析到标签名
  1179. this.handler.onTagName(this.content.substring(this.start, this.i))
  1180. while (blankChar[this.content[++this.i]]);
  1181. if (this.i < this.content.length && !this.checkClose()) {
  1182. this.start = this.i
  1183. this.state = this.attrName
  1184. }
  1185. } else if (!this.checkClose('onTagName')) {
  1186. this.i++
  1187. }
  1188. }
  1189. /**
  1190. * @description 属性名状态
  1191. * @private
  1192. */
  1193. Lexer.prototype.attrName = function () {
  1194. let c = this.content[this.i]
  1195. if (blankChar[c] || c === '=') {
  1196. // 解析到属性名
  1197. this.handler.onAttrName(this.content.substring(this.start, this.i))
  1198. let needVal = c === '='
  1199. const len = this.content.length
  1200. while (++this.i < len) {
  1201. c = this.content[this.i]
  1202. if (!blankChar[c]) {
  1203. if (this.checkClose()) return
  1204. if (needVal) {
  1205. // 等号后遇到第一个非空字符
  1206. this.start = this.i
  1207. this.state = this.attrVal
  1208. return
  1209. }
  1210. if (this.content[this.i] === '=') {
  1211. needVal = true
  1212. } else {
  1213. this.start = this.i
  1214. this.state = this.attrName
  1215. return
  1216. }
  1217. }
  1218. }
  1219. } else if (!this.checkClose('onAttrName')) {
  1220. this.i++
  1221. }
  1222. }
  1223. /**
  1224. * @description 属性值状态
  1225. * @private
  1226. */
  1227. Lexer.prototype.attrVal = function () {
  1228. const c = this.content[this.i]
  1229. const len = this.content.length
  1230. if (c === '"' || c === "'") {
  1231. // 有冒号的属性
  1232. this.start = ++this.i
  1233. this.i = this.content.indexOf(c, this.i)
  1234. if (this.i === -1) return
  1235. this.handler.onAttrVal(this.content.substring(this.start, this.i))
  1236. } else {
  1237. // 没有冒号的属性
  1238. for (; this.i < len; this.i++) {
  1239. if (blankChar[this.content[this.i]]) {
  1240. this.handler.onAttrVal(this.content.substring(this.start, this.i))
  1241. break
  1242. } else if (this.checkClose('onAttrVal')) return
  1243. }
  1244. }
  1245. while (blankChar[this.content[++this.i]]);
  1246. if (this.i < len && !this.checkClose()) {
  1247. this.start = this.i
  1248. this.state = this.attrName
  1249. }
  1250. }
  1251. /**
  1252. * @description 结束标签状态
  1253. * @returns {String} 结束的标签名
  1254. * @private
  1255. */
  1256. Lexer.prototype.endTag = function () {
  1257. const c = this.content[this.i]
  1258. if (blankChar[c] || c === '>' || c === '/') {
  1259. this.handler.onCloseTag(this.content.substring(this.start, this.i))
  1260. if (c !== '>') {
  1261. this.i = this.content.indexOf('>', this.i)
  1262. if (this.i === -1) return
  1263. }
  1264. this.start = ++this.i
  1265. this.state = this.text
  1266. } else {
  1267. this.i++
  1268. }
  1269. }
  1270. export default Parser