mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-30 07:18:02 +00:00
779c5698a0
* get tests working and update copyright headers * lint fix * eslint ts update * update CI to use NPM * fix CI * prettier * npm, not yarn for docker * remove unused package * bump dockerfile to latest node LTS and no need for cache clean * make frontend Dockerfile work and remove unused SUBSTRATE_TELEMETRY_SAMPLE * remove final yarn references * add another comment * remove unused import * remove more unused deps * comment typo
130 lines
3.1 KiB
TypeScript
130 lines
3.1 KiB
TypeScript
// Source code for the Substrate Telemetry Server.
|
|
// Copyright (C) 2023 Parity Technologies (UK) Ltd.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import { Types } from './common';
|
|
|
|
export interface Viewport {
|
|
width: number;
|
|
height: number;
|
|
}
|
|
|
|
export function viewport(): Viewport {
|
|
const width = Math.max(
|
|
document.documentElement.clientWidth,
|
|
window.innerWidth || 0
|
|
);
|
|
const height = Math.max(
|
|
document.documentElement.clientHeight,
|
|
window.innerHeight || 0
|
|
);
|
|
|
|
return { width, height };
|
|
}
|
|
|
|
export function formatNumber(num: number): string {
|
|
const input = num.toString();
|
|
|
|
let output = '';
|
|
let length = input.length;
|
|
|
|
while (length > 3) {
|
|
output = ',' + input.substr(length - 3, 3) + output;
|
|
length -= 3;
|
|
}
|
|
|
|
output = input.substr(0, length) + output;
|
|
|
|
return output;
|
|
}
|
|
|
|
export function trimHash(hash: string, length: number): string {
|
|
if (hash.length < length) {
|
|
return hash;
|
|
}
|
|
|
|
const side = ((length - 2) / 2) | 0;
|
|
|
|
return hash.substr(0, side) + '..' + hash.substr(-side, side);
|
|
}
|
|
|
|
export function milliOrSecond(
|
|
num: Types.Milliseconds | Types.PropagationTime
|
|
): string {
|
|
if (num < 10000) {
|
|
return `${num}ms`;
|
|
}
|
|
|
|
return `${(num / 1000) | 0}s`;
|
|
}
|
|
|
|
export function secondsWithPrecision(num: number): string {
|
|
const intString = (num | 0).toString();
|
|
const intDigits = intString.length;
|
|
|
|
switch (intDigits) {
|
|
case 1:
|
|
return num.toFixed(3) + 's';
|
|
case 2:
|
|
return num.toFixed(2) + 's';
|
|
case 3:
|
|
return num.toFixed(1) + 's';
|
|
default:
|
|
return intString + 's';
|
|
}
|
|
}
|
|
|
|
export interface HashData {
|
|
tab?: string;
|
|
chain?: Types.GenesisHash;
|
|
}
|
|
|
|
export function getHashData(): HashData {
|
|
const { hash } = window.location;
|
|
|
|
if (hash[0] !== '#') {
|
|
return {};
|
|
}
|
|
|
|
const [tab, rawChain] = hash.substr(1).split('/');
|
|
const chain = decodeURIComponent(rawChain) as Types.GenesisHash;
|
|
|
|
return { tab, chain };
|
|
}
|
|
|
|
export function setHashData(val: HashData) {
|
|
const update = Object.assign(getHashData(), val);
|
|
|
|
const { tab = '', chain = '' } = update;
|
|
|
|
window.location.hash = `#${tab}/${encodeURIComponent(chain)}`;
|
|
}
|
|
|
|
let root: null | SVGSVGElement = null;
|
|
export const W3SVG = 'http://www.w3.org/2000/svg';
|
|
|
|
// Get a root node where we all SVG symbols can be stored
|
|
// see: Icon.tsx
|
|
export function getSVGShadowRoot(): SVGSVGElement {
|
|
if (!root) {
|
|
root = document.createElementNS(W3SVG, 'svg');
|
|
root.setAttribute('style', 'display: none;');
|
|
|
|
document.body.appendChild(root);
|
|
}
|
|
|
|
return root;
|
|
}
|