2017-12-15 21:39:18 +00:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import { run } from '@ember/runloop';
|
2017-09-19 14:47:10 +00:00
|
|
|
import JSONFormatterPkg from 'npm:json-formatter-js';
|
|
|
|
|
|
|
|
// json-formatter-js is packaged in a funny way that ember-cli-browserify
|
|
|
|
// doesn't unwrap properly.
|
|
|
|
const { default: JSONFormatter } = JSONFormatterPkg;
|
|
|
|
|
|
|
|
export default Component.extend({
|
|
|
|
classNames: ['json-viewer'],
|
|
|
|
|
|
|
|
json: null,
|
2017-12-07 22:06:51 +00:00
|
|
|
expandDepth: Infinity,
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
formatter: computed('json', 'expandDepth', function() {
|
|
|
|
return new JSONFormatter(this.get('json'), this.get('expandDepth'), {
|
|
|
|
theme: 'nomad',
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
|
|
|
|
didReceiveAttrs() {
|
|
|
|
const json = this.get('json');
|
|
|
|
if (!json) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
run.scheduleOnce('afterRender', this, embedViewer);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
function embedViewer() {
|
2017-12-07 22:06:51 +00:00
|
|
|
this.$()
|
|
|
|
.empty()
|
|
|
|
.append(this.get('formatter').render());
|
2017-09-19 14:47:10 +00:00
|
|
|
}
|