Completed
Branch development (ad897a)
by Elk
06:19
created

themes/default/scripts/bbcode.js   F

Complexity

Total Complexity 188
Complexity/F 2.04

Size

Lines of Code 1
Function Count 92

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 1
rs 2
c 0
b 0
f 0
wmc 188
mnd 96
bc 96
fnc 92
bpm 1.0434
cpm 2.0434
noi 18

How to fix   Complexity   

Complexity

Complex classes like themes/default/scripts/bbcode.js often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

1
/* SCEditor v2.1.3 | (C) 2017, Sam Clarke | sceditor.com/license */
2
3
!function(t){"use strict";var h=t.escapeEntities,u=t.escapeUriScheme,m=t.dom,e=t.utils,p=m.css,g=m.attr,b=m.is,n=e.extend,s=e.each,r=t.ie,v=r&&r<11,y="data-sceditor-emoticon",i=t.command.get,x={always:1,never:2,auto:3},l={bold:{txtExec:["[b]","[/b]"]},italic:{txtExec:["[i]","[/i]"]},underline:{txtExec:["[u]","[/u]"]},strike:{txtExec:["[s]","[/s]"]},subscript:{txtExec:["[sub]","[/sub]"]},superscript:{txtExec:["[sup]","[/sup]"]},left:{txtExec:["[left]","[/left]"]},center:{txtExec:["[center]","[/center]"]},right:{txtExec:["[right]","[/right]"]},justify:{txtExec:["[justify]","[/justify]"]},font:{txtExec:function(t){var e=this;i("font")._dropDown(e,t,function(t){e.insertText("[font="+t+"]","[/font]")})}},size:{txtExec:function(t){var e=this;i("size")._dropDown(e,t,function(t){e.insertText("[size="+t+"]","[/size]")})}},color:{txtExec:function(t){var e=this;i("color")._dropDown(e,t,function(t){e.insertText("[color="+t+"]","[/color]")})}},bulletlist:{txtExec:function(t,e){var n="";s(e.split(/\r?\n/),function(){n+=(n?"\n":"")+"[li]"+this+"[/li]"}),this.insertText("[ul]\n"+n+"\n[/ul]")}},orderedlist:{txtExec:function(t,e){var n="";s(e.split(/\r?\n/),function(){n+=(n?"\n":"")+"[li]"+this+"[/li]"}),this.insertText("[ol]\n"+n+"\n[/ol]")}},table:{txtExec:["[table][tr][td]","[/td][/tr][/table]"]},horizontalrule:{txtExec:["[hr]"]},code:{txtExec:["[code]","[/code]"]},image:{txtExec:function(t,e){var l=this;i("image")._dropDown(l,t,e,function(t,e,n,r){var i="";e&&(i+=' width="'+h(e,!0)+'"'),n&&(i+=' height="'+h(n,!0)+'"'),r&&(i+=' alt="'+h(r,!0)+'"'),l.insertText("[img"+i+"]"+t+"[/img]")})}},email:{txtExec:function(t,n){var r=this;i("email")._dropDown(r,t,function(t,e){r.insertText("[email="+t+"]"+(e||n||t)+"[/email]")})}},link:{txtExec:function(t,n){var r=this;n?r.insertText("[url="+n+"]"+n+"[/url]"):i("link")._dropDown(r,t,function(t,e){r.insertText("[url="+t+"]"+(e||n||t)+"[/url]")})}},quote:{txtExec:["[quote]","[/quote]"]},youtube:{txtExec:function(t){var e=this;i("youtube")._dropDown(e,t,function(t){e.insertText("[youtube]"+t+"[/youtube]")})}},rtl:{txtExec:["[rtl]","[/rtl]"]},ltr:{txtExec:["[ltr]","[/ltr]"]}},k={b:{tags:{b:null,strong:null},styles:{"font-weight":["bold","bolder","401","700","800","900"]},format:"[b]{0}[/b]",html:"<strong>{0}</strong>"},i:{tags:{i:null,em:null},styles:{"font-style":["italic","oblique"]},format:"[i]{0}[/i]",html:"<em>{0}</em>"},u:{tags:{u:null},styles:{"text-decoration":["underline"]},format:"[u]{0}[/u]",html:"<u>{0}</u>"},s:{tags:{s:null,strike:null},styles:{"text-decoration":["line-through"]},format:"[s]{0}[/s]",html:"<s>{0}</s>"},sub:{tags:{sub:null},format:"[sub]{0}[/sub]",html:"<sub>{0}</sub>"},sup:{tags:{sup:null},format:"[sup]{0}[/sup]",html:"<sup>{0}</sup>"},font:{tags:{font:{face:null}},styles:{"font-family":null},quoteType:x.never,format:function(t,e){var n;return b(t,"font")&&(n=g(t,"face"))||(n=p(t,"font-family")),"[font="+B(n)+"]"+e+"[/font]"},html:'<font face="{defaultattr}">{0}</font>'},size:{tags:{font:{size:null}},styles:{"font-size":null},format:function(t,e){var n=g(t,"size"),r=2;return n||(n=p(t,"fontSize")),-1<n.indexOf("px")?((n=n.replace("px","")-0)<12&&(r=1),15<n&&(r=3),17<n&&(r=4),23<n&&(r=5),31<n&&(r=6),47<n&&(r=7)):r=n,"[size="+r+"]"+e+"[/size]"},html:'<font size="{defaultattr}">{!0}</font>'},color:{tags:{font:{color:null}},styles:{color:null},quoteType:x.never,format:function(t,e){var n;return b(t,"font")&&(n=g(t,"color"))||(n=t.style.color||p(t,"color")),"[color="+c(n)+"]"+e+"[/color]"},html:function(t,e,n){return'<font color="'+h(c(e.defaultattr),!0)+'">'+n+"</font>"}},ul:{tags:{ul:null},breakStart:!0,isInline:!1,skipLastLineBreak:!0,format:"[ul]{0}[/ul]",html:"<ul>{0}</ul>"},list:{breakStart:!0,isInline:!1,skipLastLineBreak:!0,html:"<ul>{0}</ul>"},ol:{tags:{ol:null},breakStart:!0,isInline:!1,skipLastLineBreak:!0,format:"[ol]{0}[/ol]",html:"<ol>{0}</ol>"},li:{tags:{li:null},isInline:!1,closedBy:["/ul","/ol","/list","*","li"],format:"[li]{0}[/li]",html:"<li>{0}</li>"},"*":{isInline:!1,closedBy:["/ul","/ol","/list","*","li"],html:"<li>{0}</li>"},table:{tags:{table:null},isInline:!1,isHtmlInline:!0,skipLastLineBreak:!0,format:"[table]{0}[/table]",html:"<table>{0}</table>"},tr:{tags:{tr:null},isInline:!1,skipLastLineBreak:!0,format:"[tr]{0}[/tr]",html:"<tr>{0}</tr>"},th:{tags:{th:null},allowsEmpty:!0,isInline:!1,format:"[th]{0}[/th]",html:"<th>{0}</th>"},td:{tags:{td:null},allowsEmpty:!0,isInline:!1,format:"[td]{0}[/td]",html:"<td>{0}</td>"},emoticon:{allowsEmpty:!0,tags:{img:{src:null,"data-sceditor-emoticon":null}},format:function(t,e){return g(t,y)+e},html:"{0}"},hr:{tags:{hr:null},allowsEmpty:!0,isSelfClosing:!0,isInline:!1,format:"[hr]{0}",html:"<hr />"},img:{allowsEmpty:!0,tags:{img:{src:null}},allowedChildren:["#"],quoteType:x.auto,format:function(e,t){var n,r,i,l="",o=function(t){return e.style?e.style[t]:null};return g(e,y)?t:(n=g(e,"width")||o("width"),r=g(e,"height")||o("height"),(i=g(e,"alt"))?(n&&(l+=' width="'+h(n,!0)+'"'),r&&(l+=' height="'+h(r,!0)+'"'),l+=' alt="'+h(i,!0)+'"'):(e.complete&&(n||r)||n&&r)&&(l="="+m.width(e)+"x"+m.height(e)),"[img"+l+"]"+g(e,"src")+"[/img]")},html:function(t,e,n){var r,i,l,o,a,s="";return i=e.width,l=e.height,o=e.alt,e.defaultattr&&(i=(a=e.defaultattr.split(/x/i))[0],l=2===a.length?a[1]:a[0]),i!==r&&(s+=' width="'+h(i,!0)+'"'),l!==r&&(s+=' height="'+h(l,!0)+'"'),o!==r&&(s+=' alt="'+h(o,!0)+'"'),"<img"+s+' src="'+u(n)+'" />'}},url:{allowsEmpty:!0,tags:{a:{href:null}},quoteType:x.never,format:function(t,e){var n=g(t,"href");return"mailto:"===n.substr(0,7)?'[email="'+n.substr(7)+'"]'+e+"[/email]":"[url="+n+"]"+e+"[/url]"},html:function(t,e,n){return e.defaultattr=h(e.defaultattr,!0)||n,'<a href="'+u(e.defaultattr)+'">'+n+"</a>"}},email:{quoteType:x.never,html:function(t,e,n){return'<a href="mailto:'+(h(e.defaultattr,!0)||n)+'">'+n+"</a>"}},quote:{tags:{blockquote:null},isInline:!1,quoteType:x.never,format:function(t,e){for(var n,r="data-author",i="",l=t.children,o=0;!n&&o<l.length;o++)b(l[o],"cite")&&(n=l[o]);return(n||g(t,r))&&(i=n&&n.textContent||g(t,r),g(t,r,i),n&&t.removeChild(n),e=this.elementToBbcode(t),i="="+i.replace(/(^\s+|\s+$)/g,""),n&&t.insertBefore(n,t.firstChild)),"[quote"+i+"]"+e+"[/quote]"},html:function(t,e,n){return e.defaultattr&&(n="<cite>"+h(e.defaultattr)+"</cite>"+n),"<blockquote>"+n+"</blockquote>"}},code:{tags:{code:null},isInline:!1,allowedChildren:["#","#newline"],format:"[code]{0}[/code]",html:"<code>{0}</code>"},left:{styles:{"text-align":["left","-webkit-left","-moz-left","-khtml-left"]},isInline:!1,allowsEmpty:!0,format:"[left]{0}[/left]",html:'<div align="left">{0}</div>'},center:{styles:{"text-align":["center","-webkit-center","-moz-center","-khtml-center"]},isInline:!1,allowsEmpty:!0,format:"[center]{0}[/center]",html:'<div align="center">{0}</div>'},right:{styles:{"text-align":["right","-webkit-right","-moz-right","-khtml-right"]},isInline:!1,allowsEmpty:!0,format:"[right]{0}[/right]",html:'<div align="right">{0}</div>'},justify:{styles:{"text-align":["justify","-webkit-justify","-moz-justify","-khtml-justify"]},isInline:!1,allowsEmpty:!0,format:"[justify]{0}[/justify]",html:'<div align="justify">{0}</div>'},youtube:{allowsEmpty:!0,tags:{iframe:{"data-youtube-id":null,"data-youtube-start":null}},format:function(t,e){var n=g(t,"data-youtube-id"),r=g(t,"data-youtube-start");return 0<r?n?"[youtube="+r+"]"+n+"[/youtube]":e:n?"[youtube]"+n+"[/youtube]":e},html:function(t,e,n){var r=this.opts,i=n,l=0;return e.defaultattr&&(l=h(e.defaultattr)),"<iframe "+r.youtubeParameters+' src="https://www.youtube.com/embed/'+i+"?start="+l+'&wmode=opaque" data-youtube-id="'+i+'" data-youtube-start="'+l+'"></iframe>'}},rtl:{styles:{direction:["rtl"]},isInline:!1,format:"[rtl]{0}[/rtl]",html:'<div style="direction: rtl">{0}</div>'},ltr:{styles:{direction:["ltr"]},isInline:!1,format:"[ltr]{0}[/ltr]",html:'<div style="direction: ltr">{0}</div>'},ignore:{}};function w(t,r){return t.replace(/\{([^}]+)\}/g,function(t,e){var n=!0;return"!"===e.charAt(0)&&(n=!1,e=e.substring(1)),"0"===e&&(n=!1),void 0===r[e]?t:n?h(r[e],!0):r[e]})}function E(t){return"function"==typeof t}function B(t){return t?t.replace(/\\(.)/g,"$1").replace(/^(["'])(.*?)\1$/,"$2"):t}function C(t){var n=arguments;return t.replace(/\{(\d+)\}/g,function(t,e){return void 0!==n[e-0+1]?n[e-0+1]:"{"+e+"}"})}var I="open",T="content",S="newline",L="close";function a(t,e,n,r,i,l){var o=this;o.type=t,o.name=e,o.val=n,o.attrs=r||{},o.children=i||[],o.closing=l||null}function q(t){var m=this;function o(t,e){var n,r,i;return t===I&&(n=e.match(/\[([^\]\s=]+)(?:([^\]]+))?\]/))&&(i=l(n[1]),n[2]&&(n[2]=n[2].trim())&&(r=function(t){var e,n=/([^\s=]+)=(?:(?:(["'])((?:\\\2|[^\2])*?)\2)|((?:.(?!\s\S+=))*.))/g,r={};if("="===t.charAt(0)&&t.indexOf("=",1)<0)r.defaultattr=B(t.substr(1));else for("="===t.charAt(0)&&(t="defaultattr"+t);e=n.exec(t);)r[l(e[1])]=B(e[3])||e[4];return r}(n[2]))),t===L&&(n=e.match(/\[\/([^\[\]]+)\]/))&&(i=l(n[1])),t===S&&(i="#newline"),i&&(t!==I&&t!==L||k[i])||(t=T,i="#"),new a(t,i,e,r)}function d(t,e,n){for(var r=n.length;r--;)if(n[r].type===e&&n[r].name===t)return!0;return!1}function p(t,e){var n=(t?k[t.name]:{}).allowedChildren;return!m.opts.fixInvalidChildren||!n||-1<n.indexOf(e.name||"#")}function g(t,e,n){var r=/\s|=/.test(t);return E(e)?e(t,n):e===x.never||e===x.auto&&!r?t:'"'+t.replace("\\","\\\\").replace('"','\\"')+'"'}function b(t){return t.length?t[t.length-1]:null}function l(t){return t.toLowerCase()}m.opts=n({},q.defaults,t),m.tokenize=function(t){var e,n,r,i=[],l=[{type:T,regex:/^([^\[\r\n]+|\[)/},{type:S,regex:/^(\r\n|\r|\n)/},{type:I,regex:/^\[[^\[\]]+\]/},{type:L,regex:/^\[\/[^\[\]]+\]/}];t:for(;t.length;){for(r=l.length;r--;)if(n=l[r].type,(e=t.match(l[r].regex))&&e[0]){i.push(o(n,e[0])),t=t.substr(e[0].length);continue t}t.length&&i.push(o(T,t)),t=""}return i},m.parse=function(t,e){var n=function(t){var e,n,r,i,l,o,a=[],s=[],u=[],c=function(){return b(u)},f=function(t){c()?c().children.push(t):s.push(t)},h=function(t){return c()&&(n=k[c().name])&&n.closedBy&&-1<n.closedBy.indexOf(t)};for(;e=t.shift();)switch(o=t[0],p(c(),e)||e.type===L&&c()&&e.name===c().name||(e.name="#",e.type=T),e.type){case I:h(e.name)&&u.pop(),f(e),(n=k[e.name])&&!n.isSelfClosing&&(n.closedBy||d(e.name,L,t))?u.push(e):n&&n.isSelfClosing||(e.type=T);break;case L:if(c()&&e.name!==c().name&&h("/"+e.name)&&u.pop(),c()&&e.name===c().name)c().closing=e,u.pop();else if(d(e.name,I,u)){for(;r=u.pop();){if(r.name===e.name){r.closing=e;break}i=r.clone(),a.length&&i.children.push(b(a)),a.push(i)}for(o&&o.type===S&&(n=k[e.name])&&!1===n.isInline&&(f(o),t.shift()),f(b(a)),l=a.length;l--;)u.push(a[l]);a.length=0}else e.type=T,f(e);break;case S:c()&&o&&h((o.type===L?"/":"")+o.name)&&(o.type===L&&o.name===c().name||((n=k[c().name])&&n.breakAfter?u.pop():n&&!1===n.isInline&&m.opts.breakAfterBlock&&!1!==n.breakAfter&&u.pop())),f(e);break;default:f(e)}return s}(m.tokenize(t)),r=m.opts;return r.fixInvalidNesting&&function t(e,n,r,i){var l,o,a,s,u,c;var f=function(t){var e=k[t.name];return!e||!1!==e.isInline};n=n||[];i=i||e;for(o=0;o<e.length;o++)if((l=e[o])&&l.type===I){if(r&&!f(l)){if(a=b(n),c=a.splitAt(l),u=1<n.length?n[n.length-2].children:i,p(l,a)){var h=a.clone();h.children=l.children,l.children=[h]}if(-1<(s=u.indexOf(a))){c.children.splice(0,1),u.splice(s+1,0,l,c);var d=c.children[0];return void(d&&d.type===S&&(f(l)||(c.children.splice(0,1),u.splice(s+2,0,d))))}}n.push(l),t(l.children,n,r||f(l),i),n.pop()}}(n),function t(e,n,r){var i,l,o,a,s,u,c,f;var h=e.length;n&&(a=k[n.name]);var d=h;for(;d--;)if(i=e[d])if(i.type===S){if(l=0<d?e[d-1]:null,o=d<h-1?e[d+1]:null,f=!1,!r&&a&&!0!==a.isSelfClosing&&(l?u||o||(!1===a.isInline&&m.opts.breakEndBlock&&!1!==a.breakEnd&&(f=!0),a.breakEnd&&(f=!0),u=f):(!1===a.isInline&&m.opts.breakStartBlock&&!1!==a.breakStart&&(f=!0),a.breakStart&&(f=!0))),l&&l.type===I&&(s=k[l.name])&&(r?!1===s.isInline&&(f=!0):(!1===s.isInline&&m.opts.breakAfterBlock&&!1!==s.breakAfter&&(f=!0),s.breakAfter&&(f=!0))),!r&&!c&&o&&o.type===I&&(s=k[o.name])&&(!1===s.isInline&&m.opts.breakBeforeBlock&&!1!==s.breakBefore&&(f=!0),s.breakBefore&&(f=!0),c=f)){e.splice(d,1);continue}f&&e.splice(d,1),c=!1}else i.type===I&&t(i.children,i,r)}(n,null,e),r.removeEmptyTags&&function t(e){var n,r;var i=function(t){for(var e=t.length;e--;){var n=t[e].type;if(n===I||n===L)return!1;if(n===T&&/\S|\u00A0/.test(t[e].val))return!1}return!0};var l=e.length;for(;l--;)(n=e[l])&&n.type===I&&(r=k[n.name],t(n.children),i(n.children)&&r&&!r.isSelfClosing&&!r.allowsEmpty&&e.splice.apply(e,[l,1].concat(n.children)))}(n),n},m.toHTML=function(t,e){return function t(e,n){var r,i,l,o,a,s,u,c,f=[];u=function(t){return!1!==(!t||(void 0!==t.isHtmlInline?t.isHtmlInline:t.isInline))};for(;0<e.length;)if(r=e.shift()){if(r.type===I)c=r.children[r.children.length-1]||{},i=k[r.name],a=n&&u(i),l=t(r.children,!1),o=i&&i.html?(u(i)||!u(k[c.name])||i.isPreFormatted||i.skipLastLineBreak||v||(l+="<br />"),E(i.html)?i.html.call(m,r,r.attrs,l):(r.attrs[0]=l,w(i.html,r.attrs))):r.val+l+(r.closing?r.closing.val:"");else{if(r.type===S){if(!n){f.push("<br />");continue}s||f.push("<div>"),v||f.push("<br />"),e.length||f.push("<br />"),f.push("</div>\n"),s=!1;continue}a=n,o=h(r.val,!0)}a&&!s?(f.push("<div>"),s=!0):!a&&s&&(f.push("</div>\n"),s=!1),f.push(o)}s&&f.push("</div>\n");return f.join("")}(m.parse(t,e),!0)},m.toBBCode=function(t,e){return function t(e){var n,r,i,l,o,a,s,u,c,f,h=[];for(;0<e.length;)if(n=e.shift())if(i=k[n.name],l=!(!i||!1!==i.isInline),o=i&&i.isSelfClosing,s=l&&m.opts.breakBeforeBlock&&!1!==i.breakBefore||i&&i.breakBefore,u=l&&!o&&m.opts.breakStartBlock&&!1!==i.breakStart||i&&i.breakStart,c=l&&m.opts.breakEndBlock&&!1!==i.breakEnd||i&&i.breakEnd,f=l&&m.opts.breakAfterBlock&&!1!==i.breakAfter||i&&i.breakAfter,a=(i?i.quoteType:null)||m.opts.quoteType||x.auto,i||n.type!==I)if(n.type===I){if(s&&h.push("\n"),h.push("["+n.name),n.attrs)for(r in n.attrs.defaultattr&&(h.push("=",g(n.attrs.defaultattr,a,"defaultattr")),delete n.attrs.defaultattr),n.attrs)n.attrs.hasOwnProperty(r)&&h.push(" ",r,"=",g(n.attrs[r],a,r));h.push("]"),u&&h.push("\n"),n.children&&h.push(t(n.children)),o||i.excludeClosing||(c&&h.push("\n"),h.push("[/"+n.name+"]")),f&&h.push("\n"),n.closing&&o&&h.push(n.closing.val)}else h.push(n.val);else h.push(n.val),n.children&&h.push(t(n.children)),n.closing&&h.push(n.closing.val);return h.join("")}(m.parse(t,e))}}function o(t){return t=parseInt(t,10),isNaN(t)?"00":(t=Math.max(0,Math.min(t,255)).toString(16)).length<2?"0"+t:t}function c(t){var e;return(e=(t=t||"#000").match(/rgb\((\d{1,3}),\s*?(\d{1,3}),\s*?(\d{1,3})\)/i))?"#"+o(e[1])+o(e[2])+o(e[3]):(e=t.match(/#([0-f])([0-f])([0-f])\s*?$/i))?"#"+e[1]+e[1]+e[2]+e[2]+e[3]+e[3]:t}function f(){var u=this;u.stripQuotes=B;var o={},a={},c={ul:["li","ol","ul"],ol:["li","ol","ul"],table:["tr"],tr:["td","th"],code:["br","p","div"]};function f(n,r,t){var i,l,o=m.getStyle;return a[t=!!t]&&s(a[t],function(t,e){(i=o(n,t))&&o(n.parentNode,t)!==i&&s(e,function(t,e){(!e||-1<e.indexOf(i.toString()))&&(l=k[t].format,r=E(l)?l.call(u,n,r):C(l,r))})}),r}function h(n,r,t){var i,l,e=n.nodeName.toLowerCase();return t=!!t,o[e]&&o[e][t]&&s(o[e][t],function(t,e){e&&(i=!1,s(e,function(t,e){if(g(n,t)&&!(e&&e.indexOf(g(n,t))<0))return!(i=!0)}),!i)||(l=k[t].format,r=E(l)?l.call(u,n,r):C(l,r))}),r}function d(t){var u=function(t,a){var s="";return m.traverse(t,function(t){var e="",n=t.nodeType,r=t.nodeName.toLowerCase(),i=c[r],l=t.firstChild,o=!0;if("object"==typeof a&&(o=-1<a.indexOf(r),b(t,"img")&&g(t,y)&&(o=!0),o||(i=a)),3===n||1===n)if(1===n){if(b(t,".sceditor-nlf")&&(!l||!v&&1===t.childNodes.length&&/br/i.test(l.nodeName)))return;"iframe"!==r&&(e=u(t,i)),o?("code"!==r&&(e=f(t,e=h(t,e=f(t,e)),!0)),e=h(t,e,!0),s+=function(t,e){var n=t.nodeName.toLowerCase(),r=m.isInline;if(!r(t,!0)||"br"===n){for(var i,l,o=t.previousSibling;o&&1===o.nodeType&&!b(o,"br")&&r(o,!0)&&!o.firstChild;)o=o.previousSibling;for(;i=((l=t.parentNode)&&l.lastChild)===t,(t=l)&&i&&r(l,!0););(!i||"li"===n||"br"===n&&v)&&(e+="\n"),"br"!==n&&o&&!b(o,"br")&&r(o,!0)&&(e="\n"+e)}return e}(t,e)):s+=e}else s+=t.nodeValue},!1,!0),s};return u(t)}function t(t,e,n){var r,i,l,o,a,s=new q(u.opts.parserOptions).toHTML(u.opts.bbcodeTrim?e.trim():e);return t||n?(r=s,a=document.createElement("div"),o=function(t,e){if(!m.hasStyling(t)){if(v||1!==t.childNodes.length||!b(t.firstChild,"br"))for(;l=t.firstChild;)a.insertBefore(l,t);if(e){var n=a.lastChild;t!==n&&b(n,"div")&&t.nextSibling===n&&a.insertBefore(document.createElement("br"),t)}a.removeChild(t)}},p(a,"display","none"),a.innerHTML=r.replace(/<\/div>\n/g,"</div>"),(i=a.firstChild)&&b(i,"div")&&o(i,!0),(i=a.lastChild)&&b(i,"div")&&o(i),a.innerHTML):s}function e(t,e,n,r){var i,l,o=(n=n||document).createElement("div"),a=n.createElement("div"),s=new q(u.opts.parserOptions);for(a.innerHTML=e,p(o,"visibility","hidden"),o.appendChild(a),n.body.appendChild(o),t&&(o.insertBefore(n.createTextNode("#"),o.firstChild),o.appendChild(n.createTextNode("#"))),r&&p(a,"whiteSpace",p(r,"whiteSpace")),l=a.getElementsByClassName("sceditor-ignore");l.length;)l[0].parentNode.removeChild(l[0]);return m.removeWhiteSpace(o),i=d(a),n.body.removeChild(o),i=s.toBBCode(i,!0),u.opts.bbcodeTrim&&(i=i.trim()),i}u.init=function(){u.opts=this.opts,u.elementToBbcode=d,s(k,function(n){var r,t=k[n].tags,e=k[n].styles;t&&s(t,function(t,e){r=!1===k[n].isInline,o[t]=o[t]||{},o[t][r]=o[t][r]||{},o[t][r][n]=e}),e&&s(e,function(t,e){r=!1===k[n].isInline,a[r]=a[r]||{},a[r][t]=a[r][t]||{},a[r][t][n]=e})}),this.commands=n(!0,{},l,this.commands),this.toBBCode=u.toSource,this.fromBBCode=u.toHtml},u.toHtml=t.bind(null,!1),u.fragmentToHtml=t.bind(null,!0),u.toSource=e.bind(null,!1),u.fragmentToSource=e.bind(null,!0)}a.prototype={clone:function(){var t=this;return new a(t.type,t.name,t.val,n({},t.attrs),[],t.closing?t.closing.clone():null)},splitAt:function(t){var e,n=this.clone(),r=this.children.indexOf(t);return-1<r&&(e=this.children.length-r,n.children=this.children.splice(r,e)),n}},q.QuoteType=x,q.defaults={breakBeforeBlock:!1,breakStartBlock:!1,breakEndBlock:!1,breakAfterBlock:!0,removeEmptyTags:!0,fixInvalidNesting:!0,fixInvalidChildren:!0,quoteType:x.auto},f.get=function(t){return k[t]||null},f.set=function(t,e){return t&&e&&((e=n(k[t]||{},e)).remove=function(){delete k[t]},k[t]=e),this},f.rename=function(t,e){return t in k&&(k[e]=k[t],delete k[t]),this},f.remove=function(t){return t in k&&delete k[t],this},f.formatBBCodeString=w,t.formats.bbcode=f,t.BBCodeParser=q}(sceditor);
0 ignored issues
show
Coding Style Best Practice introduced by
Curly braces around statements make for more readable code and help prevent bugs when you add further statements.

Consider adding curly braces around all statements when they are executed conditionally. This is optional if there is only one statement, but leaving them out can lead to unexpected behaviour if another statement is added later.

Consider:

if (a > 0)
    b = 42;

If you or someone else later decides to put another statement in, only the first statement will be executed.

if (a > 0)
    console.log("a > 0");
    b = 42;

In this case the statement b = 42 will always be executed, while the logging statement will be executed conditionally.

if (a > 0) {
    console.log("a > 0");
    b = 42;
}

ensures that the proper code will be executed conditionally no matter how many statements are added or removed.

Loading history...
Bug introduced by
The variable sceditor seems to be never declared. If this is a global, consider adding a /** global: sceditor */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
Comprehensibility introduced by
Usage of the sequence operator is discouraged, since it may lead to obfuscated code.

The sequence or comma operator allows the inclusion of multiple expressions where only is permitted. The result of the sequence is the value of the last expression.

This operator is most often used in for statements.

Used in another places it can make code hard to read, especially when people do not realize it even exists as a seperate operator.

This check looks for usage of the sequence operator in locations where it is not necessary and could be replaced by a series of expressions or statements.

var a,b,c;

a = 1, b = 1,  c= 3;

could just as well be written as:

var a,b,c;

a = 1;
b = 1;
c = 3;

To learn more about the sequence operator, please refer to the MDN.

Loading history...
Coding Style Best Practice introduced by
By convention, constructors like a should be capitalized.
Loading history...
Unused Code introduced by
The assignment to variable e seems to be never used. Consider removing it.
Loading history...
Unused Code introduced by
The call to bind does not seem necessary since the function e declared on line 3 does not use this.
Loading history...
Coding Style introduced by
Consider using undefined instead of void(0). It is equivalent and more straightforward to read.
Loading history...
Coding Style Best Practice introduced by
By convention, constructors like q should be capitalized.
Loading history...
Bug introduced by
The variable l is changed as part of the for loop for example by t.firstChild on line 3. Only the value of the last iteration will be visible in this function if it is called after the loop.
Loading history...
introduced by
The for loop does not have a body. Maybe you have misplaced a semicolon. If you do wish to have a loop without a body, use an empty body {}.
Loading history...
Best Practice introduced by
There is no return statement in this branch, but you do return something in other branches. Did you maybe miss it? If you do not want to return anything, consider adding return undefined; explicitly.
Loading history...
Comprehensibility Best Practice introduced by
The name t is already used for a variable on line 3. Please consider using another name to prevent misunderstandings.
Loading history...
Bug introduced by
The variable r seems to not be initialized for all possible execution paths.
Loading history...
Bug introduced by
The call to t seems to have too many arguments starting with n.
Loading history...
Unused Code introduced by
The call to bind does not seem necessary since the function t declared on line 3 does not use this.
Loading history...
Bug introduced by
The call to t seems to have too many arguments starting with i.
Loading history...
Complexity Best Practice introduced by
There is no return statement if g(n, t) && !(e && e.indexOf(g(n, t)) < 0) is false. Are you sure this is correct? If so, consider adding return; explicitly.

This check looks for functions where a return statement is found in some execution paths, but not in all.

Consider this little piece of code

function isBig(a) {
    if (a > 5000) {
        return "yes";
    }
}

console.log(isBig(5001)); //returns yes
console.log(isBig(42)); //returns undefined

The function isBig will only return a specific value when its parameter is bigger than 5000. In any other case, it will implicitly return undefined.

This behaviour may not be what you had intended. In any case, you can add a return undefined to the other execution path to make the return value explicit.

Loading history...
Bug introduced by
The variable r seems to be never initialized.
Loading history...