Display the statistics in an organizing way
This commit is contained in:
parent
1be3c8308d
commit
85e748809f
|
@ -58,3 +58,5 @@ interface Message {
|
||||||
cmd? : string;
|
cmd? : string;
|
||||||
state? : State;
|
state? : State;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare function humanizeDuration(a : any, b : any) : string;
|
|
@ -150,11 +150,13 @@ class Client {
|
||||||
this.client.onopen = this.onOpen.bind(this);
|
this.client.onopen = this.onOpen.bind(this);
|
||||||
this.client.onclose = this.onClose.bind(this);
|
this.client.onclose = this.onClose.bind(this);
|
||||||
this.client.onmessage = this.onMessage.bind(this);
|
this.client.onmessage = this.onMessage.bind(this);
|
||||||
(document.getElementById('sequenceSelectForm') as HTMLFormElement ).reset();
|
|
||||||
(document.getElementById('sequenceCtrlForm') as HTMLFormElement ).reset();
|
this.resetForm('sequenceSelectForm');
|
||||||
(document.getElementById('manualCtrlForm') as HTMLFormElement ).reset();
|
this.resetForm('sequenceCtrlForm');
|
||||||
(document.getElementById('exposureCtrlForm') as HTMLFormElement ).reset();
|
this.resetForm('manualCtrlForm');
|
||||||
(document.getElementById('statisticsForm') as HTMLFormElement).reset();
|
this.resetForm('exposureCtrlForm');
|
||||||
|
this.resetForm('statisticsForm');
|
||||||
|
|
||||||
this.disableClass('sequenceCtrl');
|
this.disableClass('sequenceCtrl');
|
||||||
this.disableClass('manualCtrl');
|
this.disableClass('manualCtrl');
|
||||||
this.disableClass('exposureCtrl');
|
this.disableClass('exposureCtrl');
|
||||||
|
@ -270,29 +272,32 @@ class Client {
|
||||||
|
|
||||||
private setStatistics (stats : SequenceStatistics) {
|
private setStatistics (stats : SequenceStatistics) {
|
||||||
if (stats !== null) {
|
if (stats !== null) {
|
||||||
this.set('statsFrameTotalAvg', stats.totalFrameAvg.toString());
|
this.set('statsFrameTotalAvg', Math.round(stats.totalFrameAvg).toString());
|
||||||
this.set('statsFrameTotalLast', stats.totalFrameLast.toString());
|
this.set('statsFrameTotalLast', Math.round(stats.totalFrameLast).toString());
|
||||||
this.set('statsFrameTotalMargin', stats.totalFrameMargin.toString());
|
this.set('statsFrameTotalMargin', Math.round(stats.totalFrameMargin).toString());
|
||||||
|
|
||||||
this.set('statsFPS', stats.fps.toString());
|
this.set('statsFPS', ((Math.round(stats.fps * 100.0) / 100.0) as number).toString());
|
||||||
|
|
||||||
this.set('statsFrameLoadAvg', stats.loadAvg.toString());
|
this.set('statsFrameLoadAvg', Math.round(stats.loadAvg).toString());
|
||||||
this.set('statsFrameLoadMargin', stats.loadMargin.toString());
|
this.set('statsFrameLoadMargin', Math.round(stats.loadMargin).toString());
|
||||||
|
|
||||||
this.set('statsFrameOpenLast', stats.openLast.toString());
|
this.set('statsFrameOpenLast', Math.round(stats.openLast).toString());
|
||||||
this.set('statsFrameOpenAvg', stats.openAvg.toString());
|
this.set('statsFrameOpenAvg', Math.round(stats.openAvg).toString());
|
||||||
this.set('statsFrameOpenMargin', stats.openMargin.toString());
|
this.set('statsFrameOpenMargin', Math.round(stats.openMargin).toString());
|
||||||
|
|
||||||
this.set('statsFrameCloseLast', stats.closeLast.toString());
|
this.set('statsFrameCloseLast', Math.round(stats.closeLast).toString());
|
||||||
this.set('statsFrameCloseAvg', stats.closeAvg.toString());
|
this.set('statsFrameCloseAvg', Math.round(stats.closeAvg).toString());
|
||||||
this.set('statsFrameCloseMargin', stats.closeMargin.toString());
|
this.set('statsFrameCloseMargin', Math.round(stats.closeMargin).toString());
|
||||||
|
|
||||||
this.set('statsExposureLast', stats.exposureLast.toString());
|
this.set('statsExposureLast', Math.round(stats.exposureLast).toString());
|
||||||
this.set('statsExposureAvg', stats.exposureAvg.toString());
|
this.set('statsExposureAvg', Math.round(stats.exposureAvg).toString());
|
||||||
this.set('statsExposureMargin', stats.exposureMargin.toString());
|
this.set('statsExposureMargin', Math.round(stats.exposureMargin).toString());
|
||||||
|
|
||||||
//this.set('statsFrameTotalAvg', stats.elapsed.toString());
|
this.set('statsElapsed', Math.round(stats.elapsed).toString());
|
||||||
//this.set('statsFrameTotalAvg', stats.estimate.toString());
|
this.set('statsEstimate', Math.round(stats.estimate).toString());
|
||||||
|
|
||||||
|
this.set('statsElapsedHuman', this.shortenHumanize(Math.round(stats.elapsed)));
|
||||||
|
this.set('statsEstimateHuman', this.shortenHumanize(Math.round(stats.estimate)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -471,6 +476,21 @@ class Client {
|
||||||
public get (id : string) {
|
public get (id : string) {
|
||||||
return (document.getElementById(id) as HTMLInputElement).value;
|
return (document.getElementById(id) as HTMLInputElement).value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private resetForm (id : string) {
|
||||||
|
(document.getElementById(id) as HTMLFormElement ).reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
private shortenHumanize (val : number) : string {
|
||||||
|
const str : string = humanizeDuration(val, { round : true });
|
||||||
|
return str.replace('years', 'y').replace('year', 'y')
|
||||||
|
.replace('months', 'mo').replace('month', 'mo')
|
||||||
|
.replace('weeks', 'w').replace('week', 'w')
|
||||||
|
.replace('days', 'd').replace('day', 'd')
|
||||||
|
.replace('hours', 'h').replace('hour', 'h')
|
||||||
|
.replace('minutes', 'm').replace('minute', 'm')
|
||||||
|
.replace('seconds', 's').replace('second', 's');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
client = new Client();
|
client = new Client();
|
|
@ -58,3 +58,5 @@ interface Message {
|
||||||
cmd? : string;
|
cmd? : string;
|
||||||
state? : State;
|
state? : State;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare function humanizeDuration(a : any, b : any) : string;
|
|
@ -84,16 +84,20 @@ fieldset.inline input.medium {
|
||||||
label {
|
label {
|
||||||
width: 80px;
|
width: 80px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-right: 3px;
|
padding-right: 3px;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
progress {
|
progress {
|
||||||
width: 97vw;
|
width: 97vw;
|
||||||
position: absolute;
|
background-color: silver;
|
||||||
bottom: 28px;
|
box-shadow: inset -1px -1px #fff,inset 1px 1px grey, inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;
|
||||||
left: 0.5vw;
|
box-sizing: border-box;
|
||||||
|
padding: 3px 4px;
|
||||||
|
bottom: 31px;
|
||||||
|
position: absolute;
|
||||||
|
appearance: none;
|
||||||
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.small,
|
button.small,
|
||||||
|
@ -119,3 +123,11 @@ input.large {
|
||||||
max-width: 75px;
|
max-width: 75px;
|
||||||
padding: 0 6px;
|
padding: 0 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.xlarge,
|
||||||
|
input.xlarge{
|
||||||
|
width: 125px;
|
||||||
|
min-width: 125px;
|
||||||
|
max-width: 125px;
|
||||||
|
padding: 0 6px;
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -87,4 +87,6 @@ declare class Client {
|
||||||
removeClass(id: string, className: string): void;
|
removeClass(id: string, className: string): void;
|
||||||
set(id: string, value: string): void;
|
set(id: string, value: string): void;
|
||||||
get(id: string): string;
|
get(id: string): string;
|
||||||
|
private resetForm;
|
||||||
|
private shortenHumanize;
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,11 +124,11 @@ class Client {
|
||||||
this.client.onopen = this.onOpen.bind(this);
|
this.client.onopen = this.onOpen.bind(this);
|
||||||
this.client.onclose = this.onClose.bind(this);
|
this.client.onclose = this.onClose.bind(this);
|
||||||
this.client.onmessage = this.onMessage.bind(this);
|
this.client.onmessage = this.onMessage.bind(this);
|
||||||
document.getElementById('sequenceSelectForm').reset();
|
this.resetForm('sequenceSelectForm');
|
||||||
document.getElementById('sequenceCtrlForm').reset();
|
this.resetForm('sequenceCtrlForm');
|
||||||
document.getElementById('manualCtrlForm').reset();
|
this.resetForm('manualCtrlForm');
|
||||||
document.getElementById('exposureCtrlForm').reset();
|
this.resetForm('exposureCtrlForm');
|
||||||
document.getElementById('statisticsForm').reset();
|
this.resetForm('statisticsForm');
|
||||||
this.disableClass('sequenceCtrl');
|
this.disableClass('sequenceCtrl');
|
||||||
this.disableClass('manualCtrl');
|
this.disableClass('manualCtrl');
|
||||||
this.disableClass('exposureCtrl');
|
this.disableClass('exposureCtrl');
|
||||||
|
@ -225,21 +225,25 @@ class Client {
|
||||||
}
|
}
|
||||||
setStatistics(stats) {
|
setStatistics(stats) {
|
||||||
if (stats !== null) {
|
if (stats !== null) {
|
||||||
this.set('statsFrameTotalAvg', stats.totalFrameAvg.toString());
|
this.set('statsFrameTotalAvg', Math.round(stats.totalFrameAvg).toString());
|
||||||
this.set('statsFrameTotalLast', stats.totalFrameLast.toString());
|
this.set('statsFrameTotalLast', Math.round(stats.totalFrameLast).toString());
|
||||||
this.set('statsFrameTotalMargin', stats.totalFrameMargin.toString());
|
this.set('statsFrameTotalMargin', Math.round(stats.totalFrameMargin).toString());
|
||||||
this.set('statsFPS', stats.fps.toString());
|
this.set('statsFPS', (Math.round(stats.fps * 100.0) / 100.0).toString());
|
||||||
this.set('statsFrameLoadAvg', stats.loadAvg.toString());
|
this.set('statsFrameLoadAvg', Math.round(stats.loadAvg).toString());
|
||||||
this.set('statsFrameLoadMargin', stats.loadMargin.toString());
|
this.set('statsFrameLoadMargin', Math.round(stats.loadMargin).toString());
|
||||||
this.set('statsFrameOpenLast', stats.openLast.toString());
|
this.set('statsFrameOpenLast', Math.round(stats.openLast).toString());
|
||||||
this.set('statsFrameOpenAvg', stats.openAvg.toString());
|
this.set('statsFrameOpenAvg', Math.round(stats.openAvg).toString());
|
||||||
this.set('statsFrameOpenMargin', stats.openMargin.toString());
|
this.set('statsFrameOpenMargin', Math.round(stats.openMargin).toString());
|
||||||
this.set('statsFrameCloseLast', stats.closeLast.toString());
|
this.set('statsFrameCloseLast', Math.round(stats.closeLast).toString());
|
||||||
this.set('statsFrameCloseAvg', stats.closeAvg.toString());
|
this.set('statsFrameCloseAvg', Math.round(stats.closeAvg).toString());
|
||||||
this.set('statsFrameCloseMargin', stats.closeMargin.toString());
|
this.set('statsFrameCloseMargin', Math.round(stats.closeMargin).toString());
|
||||||
this.set('statsExposureLast', stats.exposureLast.toString());
|
this.set('statsExposureLast', Math.round(stats.exposureLast).toString());
|
||||||
this.set('statsExposureAvg', stats.exposureAvg.toString());
|
this.set('statsExposureAvg', Math.round(stats.exposureAvg).toString());
|
||||||
this.set('statsExposureMargin', stats.exposureMargin.toString());
|
this.set('statsExposureMargin', Math.round(stats.exposureMargin).toString());
|
||||||
|
this.set('statsElapsed', Math.round(stats.elapsed).toString());
|
||||||
|
this.set('statsEstimate', Math.round(stats.estimate).toString());
|
||||||
|
this.set('statsElapsedHuman', this.shortenHumanize(Math.round(stats.elapsed)));
|
||||||
|
this.set('statsEstimateHuman', this.shortenHumanize(Math.round(stats.estimate)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmd(msg) {
|
cmd(msg) {
|
||||||
|
@ -395,6 +399,19 @@ class Client {
|
||||||
get(id) {
|
get(id) {
|
||||||
return document.getElementById(id).value;
|
return document.getElementById(id).value;
|
||||||
}
|
}
|
||||||
|
resetForm(id) {
|
||||||
|
document.getElementById(id).reset();
|
||||||
|
}
|
||||||
|
shortenHumanize(val) {
|
||||||
|
const str = humanizeDuration(val, { round: true });
|
||||||
|
return str.replace('years', 'y').replace('year', 'y')
|
||||||
|
.replace('months', 'mo').replace('month', 'mo')
|
||||||
|
.replace('weeks', 'w').replace('week', 'w')
|
||||||
|
.replace('days', 'd').replace('day', 'd')
|
||||||
|
.replace('hours', 'h').replace('hour', 'h')
|
||||||
|
.replace('minutes', 'm').replace('minute', 'm')
|
||||||
|
.replace('seconds', 's').replace('second', 's');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
client = new Client();
|
client = new Client();
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
File diff suppressed because one or more lines are too long
|
@ -179,7 +179,22 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="statisticsTiming" class="quarter">
|
<div id="statisticsTiming" class="quarter">
|
||||||
|
<div>
|
||||||
|
<label for="statsElapsed">Elapsed</label>
|
||||||
|
<input id="statsElapsed" class="large" type="text" readonly value="0" /><span> ms</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="statsElapsedHuman"> </label>
|
||||||
|
<input id="statsElapsedHuman" type="text" class="xlarge" readonly value="" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="statsEstimate">Remaining</label>
|
||||||
|
<input id="statsEstimate" class="large" type="text" readonly value="0" /><span> ms</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="statsEstimateHuman"> </label>
|
||||||
|
<input id="statsEstimateHuman" type="text" class="xlarge" readonly value="" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
@ -199,6 +214,7 @@
|
||||||
<script>
|
<script>
|
||||||
const WEBSOCKET_PORT = {{wsPort}};
|
const WEBSOCKET_PORT = {{wsPort}};
|
||||||
</script>
|
</script>
|
||||||
|
<script src="/static/js/humanize-duration.js"></script>
|
||||||
<script src="/static/js/index.js"></script>
|
<script src="/static/js/index.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue