2023-04-03 01:54:35 +00:00
|
|
|
import ngModule from '../../module';
|
|
|
|
import Component from 'core/lib/component';
|
|
|
|
import './style.scss';
|
|
|
|
|
2023-05-12 09:25:16 +00:00
|
|
|
const maxStrLen = 512;
|
2023-04-03 01:54:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays pretty JSON value.
|
|
|
|
*
|
|
|
|
* @property {*} value The value
|
|
|
|
*/
|
|
|
|
export default class Controller extends Component {
|
|
|
|
get value() {
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
|
|
|
|
set value(value) {
|
2023-04-06 15:02:45 +00:00
|
|
|
const wasEmpty = this._value === undefined;
|
2023-04-03 01:54:35 +00:00
|
|
|
this._value = value;
|
|
|
|
|
2023-04-06 15:02:45 +00:00
|
|
|
let text;
|
|
|
|
let cssClass;
|
|
|
|
const type = typeof value;
|
|
|
|
|
|
|
|
if (value == null) {
|
|
|
|
text = '∅';
|
|
|
|
cssClass = 'null';
|
|
|
|
} else {
|
|
|
|
cssClass = type;
|
|
|
|
switch (type) {
|
2023-05-17 11:02:51 +00:00
|
|
|
case 'number':
|
|
|
|
if (Number.isInteger(value))
|
|
|
|
text = value;
|
|
|
|
else
|
|
|
|
text = Math.round((value + Number.EPSILON) * 1000) / 1000;
|
|
|
|
break;
|
2023-04-06 15:02:45 +00:00
|
|
|
case 'boolean':
|
|
|
|
text = value ? '✓' : '✗';
|
|
|
|
cssClass = value ? 'true' : 'false';
|
|
|
|
break;
|
|
|
|
case 'string':
|
|
|
|
text = value.length <= maxStrLen
|
|
|
|
? value
|
|
|
|
: value.substring(0, maxStrLen) + '...';
|
|
|
|
break;
|
|
|
|
case 'object':
|
|
|
|
if (value instanceof Date) {
|
|
|
|
const hasZeroTime =
|
|
|
|
value.getHours() === 0 &&
|
|
|
|
value.getMinutes() === 0 &&
|
|
|
|
value.getSeconds() === 0;
|
|
|
|
const format = hasZeroTime ? 'dd/MM/yyyy' : 'dd/MM/yyyy HH:mm:ss';
|
|
|
|
text = this.$filter('date')(value, format);
|
|
|
|
} else
|
|
|
|
text = value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
text = value;
|
|
|
|
}
|
2023-04-03 01:54:35 +00:00
|
|
|
}
|
2023-04-06 15:02:45 +00:00
|
|
|
|
|
|
|
const el = this.element;
|
|
|
|
el.textContent = text;
|
|
|
|
el.title = type == 'string' && value.length > maxStrLen ? value : '';
|
|
|
|
|
|
|
|
cssClass = `json-${cssClass}`;
|
|
|
|
if (wasEmpty)
|
|
|
|
el.classList.add(cssClass);
|
|
|
|
else
|
|
|
|
el.classList.replace(this.className, cssClass);
|
2023-04-03 01:54:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnJsonValue', {
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
value: '<?'
|
|
|
|
}
|
|
|
|
});
|