From 08062d5436bc20f0bc00fe1022f18d1cf69985c4 Mon Sep 17 00:00:00 2001 From: shengliang Date: Wed, 29 Apr 2020 15:05:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E4=BA=86=EF=BC=8C=E6=84=9F=E8=B0=A2=E7=BE=A4?= =?UTF-8?q?=E5=8F=8Bsolver?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/wxParse/html2json.js | 485 ++++++++++++++++++++------------------- lib/wxParse/wxParse.wxml | 69 +++++- lib/wxParse/wxParse.wxss | 3 + 3 files changed, 307 insertions(+), 250 deletions(-) diff --git a/lib/wxParse/html2json.js b/lib/wxParse/html2json.js index e0df889..edbc6e6 100644 --- a/lib/wxParse/html2json.js +++ b/lib/wxParse/html2json.js @@ -1,242 +1,247 @@ -/** - * author: Di (微信小程序开发工程师) - * organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com) - * 垂直微信小程序开发交流社区 - * - * github地址: https://github.com/icindy/wxParse - * - * for: 微信小程序富文本解析 - * detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184 - */ - -var __placeImgeUrlHttps = "https"; -var __emojisReg = ''; -var __emojisBaseSrc = ''; -var __emojis = {}; -var wxDiscode = require('wxDiscode.js'); -var HTMLParser = require('htmlparser.js'); -// Empty Elements - HTML 5 -var empty = makeMap("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr"); -// Block Elements - HTML 5 -var block = makeMap("br,a,code,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video"); - -// Inline Elements - HTML 5 -var inline = makeMap("abbr,acronym,applet,b,basefont,bdo,big,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var"); - -// Elements that you can, intentionally, leave open -// (and which close themselves) -var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr"); - -// Attributes that have their values filled in disabled="disabled" -var fillAttrs = makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"); - -// Special Elements (can contain anything) -var special = makeMap("wxxxcode-style,script,style,view,scroll-view,block"); -function makeMap(str) { - var obj = {}, items = str.split(","); - for (var i = 0; i < items.length; i++) - obj[items[i]] = true; - return obj; +/** + * author: Di (微信小程序开发工程师) + * organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com) + * 垂直微信小程序开发交流社区 + * + * github地址: https://github.com/icindy/wxParse + * + * for: 微信小程序富文本解析 + * detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184 + */ + +var __placeImgeUrlHttps = "https"; +var __emojisReg = ''; +var __emojisBaseSrc = ''; +var __emojis = {}; +var wxDiscode = require('wxDiscode.js'); +var HTMLParser = require('htmlparser.js'); +// Empty Elements - HTML 5 +var empty = makeMap( + "area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr"); +// Block Elements - HTML 5 +var block = makeMap( + "br,a,code,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video" +); + +// Inline Elements - HTML 5 +var inline = makeMap( + "abbr,acronym,applet,b,basefont,bdo,big,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var" +); + +// Elements that you can, intentionally, leave open +// (and which close themselves) +var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr"); + +// Attributes that have their values filled in disabled="disabled" +var fillAttrs = makeMap( + "checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"); + +// Special Elements (can contain anything) +var special = makeMap("wxxxcode-style,script,style,view,scroll-view,block"); + +function makeMap(str) { + var obj = {}, + items = str.split(","); + for (var i = 0; i < items.length; i++) + obj[items[i]] = true; + return obj; +} + +function q(v) { + return '"' + v + '"'; +} + +function removeDOCTYPE(html) { + return html + .replace(/<\?xml.*\?>\n/, '') + .replace(/\n/, '') + .replace(/\n/, ''); } - -function q(v) { - return '"' + v + '"'; -} - -function removeDOCTYPE(html) { - return html - .replace(/<\?xml.*\?>\n/, '') - .replace(/\n/, '') - .replace(/\n/, ''); -} - - -function html2json(html, bindName) { - //处理字符串 - html = removeDOCTYPE(html); - html = wxDiscode.strDiscode(html); - //生成node节点 - var bufArray = []; - var results = { - node: bindName, - nodes: [], - images:[], - imageUrls:[] - }; - HTMLParser(html, { - start: function (tag, attrs, unary) { - //debug(tag, attrs, unary); - // node for this element - var node = { - node: 'element', - tag: tag, - }; - - if (block[tag]) { - node.tagType = "block"; - } else if (inline[tag]) { - node.tagType = "inline"; - } else if (closeSelf[tag]) { - node.tagType = "closeSelf"; - } - - if (attrs.length !== 0) { - node.attr = attrs.reduce(function (pre, attr) { - var name = attr.name; - var value = attr.value; - if (name == 'class') { - // console.dir(value); - // value = value.join("") - node.classStr = value; - } - // has multi attibutes - // make it array of attribute - if (name == 'style') { - // console.dir(value); - // value = value.join("") - node.styleStr = value; - } - if (value.match(/ /)) { - value = value.split(' '); - } - - - // if attr already exists - // merge it - if (pre[name]) { - if (Array.isArray(pre[name])) { - // already array, push to last - pre[name].push(value); - } else { - // single value, make it array - pre[name] = [pre[name], value]; - } - } else { - // not exist, put it - pre[name] = value; - } - - return pre; - }, {}); - } - - //对img添加额外数据 - if (node.tag === 'img') { - node.imgIndex = results.images.length; - var imgUrl = node.attr.src; - imgUrl = wxDiscode.urlToHttpUrl(imgUrl, __placeImgeUrlHttps); - node.attr.src = imgUrl; - node.from = bindName; - results.images.push(node); - results.imageUrls.push(imgUrl); - } - - if (unary) { - // if this tag dosen't have end tag - // like - // add to parents - var parent = bufArray[0] || results; - if (parent.nodes === undefined) { - parent.nodes = []; - } - parent.nodes.push(node); - } else { - bufArray.unshift(node); - } - }, - end: function (tag) { - //debug(tag); - // merge into parent tag - var node = bufArray.shift(); - if (node.tag !== tag) console.error('invalid state: mismatch end tag'); - - if (bufArray.length === 0) { - results.nodes.push(node); - } else { - var parent = bufArray[0]; - if (parent.nodes === undefined) { - parent.nodes = []; - } - parent.nodes.push(node); - } - }, - chars: function (text) { - //debug(text); - var node = { - node: 'text', - text: text, - textArray:transEmojiStr(text) - }; - - if (bufArray.length === 0) { - results.nodes.push(node); - } else { - var parent = bufArray[0]; - if (parent.nodes === undefined) { - parent.nodes = []; - } - parent.nodes.push(node); - } - }, - comment: function (text) { - //debug(text); - var node = { - node: 'comment', - text: text, - }; - var parent = bufArray[0]; - if (parent.nodes === undefined) { - parent.nodes = []; - } - parent.nodes.push(node); - }, - }); - return results; + +function html2json(html, bindName) { + + //处理字符串 + html = removeDOCTYPE(html); + html = wxDiscode.strDiscode(html); + //生成node节点 + var bufArray = []; + var results = { + node: bindName, + nodes: [], + images: [], + imageUrls: [] + }; + HTMLParser(html, { + start: function(tag, attrs, unary) { + //debug(tag, attrs, unary); + // node for this element + var node = { + node: 'element', + tag: tag, + }; + if (block[tag]) { + node.tagType = "block"; + } else if (inline[tag]) { + node.tagType = "inline"; + } else if (closeSelf[tag]) { + node.tagType = "closeSelf"; + } + if (attrs.length !== 0) { + node.attr = attrs.reduce(function(pre, attr) { + var name = attr.name; + var value = attr.value; + if (name == 'class') { + // console.dir(value); + // value = value.join("") + node.classStr = value; + } + // has multi attibutes + // make it array of attribute + if (name == 'style') { + // console.dir(value); + // value = value.join("") + node.styleStr = value; + } + if (value.match(/ /)) { + value = value.split(' '); + } + // if attr already exists + // merge it + if (pre[name]) { + if (Array.isArray(pre[name])) { + // already array, push to last + pre[name].push(value); + } else { + // single value, make it array + pre[name] = [pre[name], value]; + } + } else { + // not exist, put it + pre[name] = value; + } + + return pre; + }, {}); + } + //对img添加额外数据 + if (node.tag === 'img') { + node.imgIndex = results.images.length; + var imgUrl = node.attr.src; + imgUrl = wxDiscode.urlToHttpUrl(imgUrl, __placeImgeUrlHttps); + node.attr.src = imgUrl; + node.from = bindName; + results.images.push(node); + results.imageUrls.push(imgUrl); + } + + // 处理iframe的地址 + if (node.tag === 'iframe') { + node.src = node.attr.src; + } + if (unary) { + // if this tag dosen't have end tag + // like + // add to parents + var parent = bufArray[0] || results; + if (parent.nodes === undefined) { + parent.nodes = []; + } + parent.nodes.push(node); + } else { + bufArray.unshift(node); + } + }, + end: function(tag) { + //debug(tag); + // merge into parent tag + var node = bufArray.shift(); + if (node.tag !== tag) console.error('invalid state: mismatch end tag'); + + if (bufArray.length === 0) { + results.nodes.push(node); + } else { + var parent = bufArray[0]; + if (parent.nodes === undefined) { + parent.nodes = []; + } + parent.nodes.push(node); + } + }, + chars: function(text) { + //debug(text); + var node = { + node: 'text', + text: text, + textArray: transEmojiStr(text) + }; + + if (bufArray.length === 0) { + results.nodes.push(node); + } else { + var parent = bufArray[0]; + if (parent.nodes === undefined) { + parent.nodes = []; + } + parent.nodes.push(node); + } + }, + comment: function(text) { + //debug(text); + var node = { + node: 'comment', + text: text, + }; + var parent = bufArray[0]; + if (parent.nodes === undefined) { + parent.nodes = []; + } + parent.nodes.push(node); + }, + }); + return results; +}; + +function transEmojiStr(str) { + // var eReg = new RegExp("["+__reg+' '+"]"); + // str = str.replace(/\[([^\[\]]+)\]/g,':$1:') + + var emojiObjs = []; + //如果正则表达式为空 + if (__emojisReg.length == 0 || !__emojis) { + var emojiObj = {} + emojiObj.node = "text"; + emojiObj.text = str; + array = [emojiObj]; + return array; + } + //这个地方需要调整 + str = str.replace(/\[([^\[\]]+)\]/g, ':$1:') + var eReg = new RegExp("[:]"); + var array = str.split(eReg); + for (var i = 0; i < array.length; i++) { + var ele = array[i]; + var emojiObj = {}; + if (__emojis[ele]) { + emojiObj.node = "element"; + emojiObj.tag = "emoji"; + emojiObj.text = __emojis[ele]; + emojiObj.baseSrc = __emojisBaseSrc; + } else { + emojiObj.node = "text"; + emojiObj.text = ele; + } + emojiObjs.push(emojiObj); + } + return emojiObjs; +} + +function emojisInit(reg = '', baseSrc = "/wxParse/emojis/", emojis) { + __emojisReg = reg; + __emojisBaseSrc = baseSrc; + __emojis = emojis; +} + +module.exports = { + html2json: html2json, + emojisInit: emojisInit }; - -function transEmojiStr(str){ - // var eReg = new RegExp("["+__reg+' '+"]"); -// str = str.replace(/\[([^\[\]]+)\]/g,':$1:') - - var emojiObjs = []; - //如果正则表达式为空 - if(__emojisReg.length == 0 || !__emojis){ - var emojiObj = {} - emojiObj.node = "text"; - emojiObj.text = str; - array = [emojiObj]; - return array; - } - //这个地方需要调整 - str = str.replace(/\[([^\[\]]+)\]/g,':$1:') - var eReg = new RegExp("[:]"); - var array = str.split(eReg); - for(var i = 0; i < array.length; i++){ - var ele = array[i]; - var emojiObj = {}; - if(__emojis[ele]){ - emojiObj.node = "element"; - emojiObj.tag = "emoji"; - emojiObj.text = __emojis[ele]; - emojiObj.baseSrc= __emojisBaseSrc; - }else{ - emojiObj.node = "text"; - emojiObj.text = ele; - } - emojiObjs.push(emojiObj); - } - - return emojiObjs; -} - -function emojisInit(reg='',baseSrc="/wxParse/emojis/",emojis){ - __emojisReg = reg; - __emojisBaseSrc=baseSrc; - __emojis=emojis; -} - -module.exports = { - html2json: html2json, - emojisInit:emojisInit -}; - diff --git a/lib/wxParse/wxParse.wxml b/lib/wxParse/wxParse.wxml index 56b4f4f..6b41371 100644 --- a/lib/wxParse/wxParse.wxml +++ b/lib/wxParse/wxParse.wxml @@ -14,7 +14,15 @@ + + + @@ -69,6 +77,11 @@ + + +