This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
'use strict'; |
|
|
|
const printString = require('../printString'); |
|
|
|
const reactTestInstance = Symbol.for('react.test.json'); |
|
|
|
function printChildren(children, print, indent, opts) { |
|
return children.map(child => printInstance(child, print, indent, opts)).join(opts.edgeSpacing); |
|
} |
|
|
|
function printProps(props, print, indent, opts) { |
|
return Object.keys(props).sort().map(name => { |
|
const prop = props[name]; |
|
let printed = print(prop); |
|
|
|
if (typeof prop !== 'string') { |
|
if (printed.indexOf('\n') !== -1) { |
|
printed = '{' + opts.edgeSpacing + indent(indent(printed) + opts.edgeSpacing + '}'); |
|
} else { |
|
printed = '{' + printed + '}'; |
|
} |
|
} |
|
|
|
return opts.spacing + indent(name + '=') + printed; |
|
}).join(''); |
|
} |
|
|
|
function printInstance(instance, print, indent, opts) { |
|
if (typeof instance == 'number') { |
|
return print(instance); |
|
} else if (typeof instance === 'string') { |
|
return printString(instance); |
|
} |
|
|
|
let result = '<' + instance.type; |
|
|
|
if (instance.props) { |
|
result += printProps(instance.props, print, indent, opts); |
|
} |
|
|
|
if (instance.children) { |
|
const children = printChildren(instance.children, print, indent, opts); |
|
result += '>' + opts.edgeSpacing + indent(children) + opts.edgeSpacing + '</' + instance.type + '>'; |
|
} else { |
|
result += ' />'; |
|
} |
|
|
|
return result; |
|
} |
|
|
|
module.exports = { |
|
test(object) { |
|
return object && object.$$typeof === reactTestInstance; |
|
}, |
|
print(val, print, indent, opts) { |
|
return printInstance(val, print, indent, opts); |
|
} |
|
};
|
|
|