123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- window.SINGLE_TAB = " ";
- window.ImgCollapsed = "../../assets/css/json/Collapsed.gif";
- window.ImgExpanded = "../../assets/css/json/Expanded.gif";
- window.QuoteKeys = true;
- function $id(id){ return document.getElementById(id); }
- function IsArray(obj) {
- return obj &&
- typeof obj === 'object' &&
- typeof obj.length === 'number' &&
- !(obj.propertyIsEnumerable('length'));
- }
- function Process(){
- SetTab();
- window.IsCollapsible = $id("CollapsibleView").checked;
- var json = $id("RawJson").value;
- var html = "";
- try{
- if(json == "") json = "\"\"";
- var obj = eval("["+json+"]");
- html = ProcessObject(obj[0], 0, false, false, false);
- $id("Canvas").innerHTML = "<PRE class='CodeContainer'>"+html+"</PRE>";
- }catch(e){
- alert("JSON数据格式不正确:\n"+e.message);
- $id("Canvas").innerHTML = "";
- }
- }
- window._dateObj = new Date();
- window._regexpObj = new RegExp();
- function ProcessObject(obj, indent, addComma, isArray, isPropertyContent){
- var html = "";
- var comma = (addComma) ? "<span class='Comma'>,</span> " : "";
- var type = typeof obj;
- var clpsHtml ="";
- if(IsArray(obj)){
- if(obj.length == 0){
- html += GetRow(indent, "<span class='ArrayBrace'>[ ]</span>"+comma, isPropertyContent);
- }else{
- clpsHtml = window.IsCollapsible ? "<span><img src=\""+window.ImgExpanded+"\" onClick=\"ExpImgClicked(this)\" /></span><span class='collapsible'>" : "";
- html += GetRow(indent, "<span class='ArrayBrace'>[</span>"+clpsHtml, isPropertyContent);
- for(var i = 0; i < obj.length; i++){
- html += ProcessObject(obj[i], indent + 1, i < (obj.length - 1), true, false);
- }
- clpsHtml = window.IsCollapsible ? "</span>" : "";
- html += GetRow(indent, clpsHtml+"<span class='ArrayBrace'>]</span>"+comma);
- }
- }else if(type == 'object'){
- if (obj == null){
- html += FormatLiteral("null", "", comma, indent, isArray, "Null");
- }else if (obj.constructor == window._dateObj.constructor) {
- html += FormatLiteral("new Date(" + obj.getTime() + ") /*" + obj.toLocaleString()+"*/", "", comma, indent, isArray, "Date");
- }else if (obj.constructor == window._regexpObj.constructor) {
- html += FormatLiteral("new RegExp(" + obj + ")", "", comma, indent, isArray, "RegExp");
- }else{
- var numProps = 0;
- for(var prop in obj) numProps++;
- if(numProps == 0){
- html += GetRow(indent, "<span class='ObjectBrace'>{ }</span>"+comma, isPropertyContent);
- }else{
- clpsHtml = window.IsCollapsible ? "<span><img src=\""+window.ImgExpanded+"\" onClick=\"ExpImgClicked(this)\" /></span><span class='collapsible'>" : "";
- html += GetRow(indent, "<span class='ObjectBrace'>{</span>"+clpsHtml, isPropertyContent);
- var j = 0;
- for(var prop in obj){
- var quote = window.QuoteKeys ? "\"" : "";
- html += GetRow(indent + 1, "<span class='PropertyName'>"+quote+prop+quote+"</span>: "+ProcessObject(obj[prop], indent + 1, ++j < numProps, false, true));
- }
- clpsHtml = window.IsCollapsible ? "</span>" : "";
- html += GetRow(indent, clpsHtml+"<span class='ObjectBrace'>}</span>"+comma);
- }
- }
- }else if(type == 'number'){
- html += FormatLiteral(obj, "", comma, indent, isArray, "Number");
- }else if(type == 'boolean'){
- html += FormatLiteral(obj, "", comma, indent, isArray, "Boolean");
- }else if(type == 'function'){
- if (obj.constructor == window._regexpObj.constructor) {
- html += FormatLiteral("new RegExp(" + obj + ")", "", comma, indent, isArray, "RegExp");
- }else{
- obj = FormatFunction(indent, obj);
- html += FormatLiteral(obj, "", comma, indent, isArray, "Function");
- }
- }else if(type == 'undefined'){
- html += FormatLiteral("undefined", "", comma, indent, isArray, "Null");
- }else{
- html += FormatLiteral(obj.toString().split("\\").join("\\\\").split('"').join('\\"'), "\"", comma, indent, isArray, "String");
- }
- return html;
- }
- function FormatLiteral(literal, quote, comma, indent, isArray, style){
- if(typeof literal == 'string')
- literal = literal.split("<").join("<").split(">").join(">");
- var str = "<span class='"+style+"'>"+quote+literal+quote+comma+"</span>";
- if(isArray) str = GetRow(indent, str);
- return str;
- }
- function FormatFunction(indent, obj){
- var tabs = "";
- for(var i = 0; i < indent; i++) tabs += window.TAB;
- var funcStrArray = obj.toString().split("\n");
- var str = "";
- for(var i = 0; i < funcStrArray.length; i++){
- str += ((i==0)?"":tabs) + funcStrArray[i] + "\n";
- }
- return str;
- }
- function GetRow(indent, data, isPropertyContent){
- var tabs = "";
- for(var i = 0; i < indent && !isPropertyContent; i++) tabs += window.TAB;
- if(data != null && data.length > 0 && data.charAt(data.length-1) != "\n")
- data = data+"\n";
- return tabs+data;
- }
- function CollapsibleViewClicked(){
- $id("CollapsibleViewDetail").style.visibility = $id("CollapsibleView").checked ? "visible" : "hidden";
- Process();
- }
- function QuoteKeysClicked(){
- window.QuoteKeys = $id("QuoteKeys").checked;
- Process();
- }
- function CollapseAllClicked(){
- EnsureIsPopulated();
- TraverseChildren($id("Canvas"), function(element){
- if(element.className == 'collapsible'){
- MakeContentVisible(element, false);
- }
- }, 0);
- }
- function ExpandAllClicked(){
- EnsureIsPopulated();
- TraverseChildren($id("Canvas"), function(element){
- if(element.className == 'collapsible'){
- MakeContentVisible(element, true);
- }
- }, 0);
- }
- function MakeContentVisible(element, visible){
- var img = element.previousSibling.firstChild;
- if(!!img.tagName && img.tagName.toLowerCase() == "img"){
- element.style.display = visible ? 'inline' : 'none';
- element.previousSibling.firstChild.src = visible ? window.ImgExpanded : window.ImgCollapsed;
- }
- }
- function TraverseChildren(element, func, depth){
- for(var i = 0; i < element.childNodes.length; i++){
- TraverseChildren(element.childNodes[i], func, depth + 1);
- }
- func(element, depth);
- }
- function ExpImgClicked(img){
- var container = img.parentNode.nextSibling;
- if(!container) return;
- var disp = "none";
- var src = window.ImgCollapsed;
- if(container.style.display == "none"){
- disp = "inline";
- src = window.ImgExpanded;
- }
- container.style.display = disp;
- img.src = src;
- }
- function CollapseLevel(level){
- EnsureIsPopulated();
- TraverseChildren($id("Canvas"), function(element, depth){
- if(element.className == 'collapsible'){
- if(depth >= level){
- MakeContentVisible(element, false);
- }else{
- MakeContentVisible(element, true);
- }
- }
- }, 0);
- }
- function TabSizeChanged(){
- Process();
- }
- function SetTab(){
- var select = $id("TabSize");
- window.TAB = MultiplyString(parseInt(select.options[select.selectedIndex].value), window.SINGLE_TAB);
- }
- function EnsureIsPopulated(){
- if(!$id("Canvas").innerHTML && !!$id("RawJson").value) Process();
- }
- function MultiplyString(num, str){
- var sb =[];
- for(var i = 0; i < num; i++){
- sb.push(str);
- }
- return sb.join("");
- }
- function SelectAllClicked(){
- if(!!document.selection && !!document.selection.empty) {
- document.selection.empty();
- } else if(window.getSelection) {
- var sel = window.getSelection();
- if(sel.removeAllRanges) {
- window.getSelection().removeAllRanges();
- }
- }
- var range =
- (!!document.body && !!document.body.createTextRange)
- ? document.body.createTextRange()
- : document.createRange();
-
- if(!!range.selectNode)
- range.selectNode($id("Canvas"));
- else if(range.moveToElementText)
- range.moveToElementText($id("Canvas"));
-
- if(!!range.select)
- range.select($id("Canvas"));
- else
- window.getSelection().addRange(range);
- }
- function LinkToJson(){
- var val = $id("RawJson").value;
- val = escape(val.split('/n').join(' ').split('/r').join(' '));
- $id("InvisibleLinkUrl").value = val;
- $id("InvisibleLink").submit();
- }
|