113 lines
2.7 KiB
Vue
113 lines
2.7 KiB
Vue
<template>
|
|
<div class="host-input">
|
|
<div v-if="$store.state.available">
|
|
<div>
|
|
<div class="uk-margin-small-bottom">
|
|
<b>Microscope Hostname:</b>
|
|
<br />
|
|
{{ $store.state.microscopeHostname }}
|
|
</div>
|
|
<div class="uk-margin-small-bottom">
|
|
<b>API Origin:</b>
|
|
<br />
|
|
{{ $store.state.origin }}
|
|
</div>
|
|
<action-button
|
|
v-if="illuminationType"
|
|
thing="illumination"
|
|
action="flash"
|
|
submit-label="Flash Illumination"
|
|
:can-terminate="false"
|
|
:submit-data="{ dt: 0.25 }"
|
|
/>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div>
|
|
<b>Server Version:</b> <br />
|
|
{{ version }}<br />
|
|
({{ version_source }})
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div class="uk-margin-small-bottom">
|
|
<b>Camera:</b>
|
|
<br />
|
|
<div>
|
|
{{ cameraType }}
|
|
</div>
|
|
</div>
|
|
<div v-if="stageType">
|
|
<b>Stage:</b>
|
|
<br />
|
|
<div>
|
|
{{ stageType }}
|
|
</div>
|
|
</div>
|
|
<div v-if="illuminationType">
|
|
<b>Illumination:</b>
|
|
<br />
|
|
<div>
|
|
{{ illuminationType }}
|
|
</div>
|
|
</div>
|
|
|
|
<hr />
|
|
</div>
|
|
<div v-else-if="$store.state.waiting">Loading...</div>
|
|
<div v-else-if="$store.state.error"><b>Error:</b> {{ $store.state.error }}</div>
|
|
<div v-else>No active connection</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ActionButton from "../../labThingsComponents/actionButton.vue";
|
|
|
|
export default {
|
|
name: "StatusPane",
|
|
components: { ActionButton },
|
|
|
|
data: function () {
|
|
return {
|
|
version: undefined,
|
|
version_source: undefined,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
cameraType() {
|
|
// No need to check as the microscope won't start up without a camera defined
|
|
return this.thingDescription("camera").title;
|
|
},
|
|
stageType() {
|
|
return this.thingAvailable("stage") ? this.thingDescription("stage").title : undefined;
|
|
},
|
|
illuminationType() {
|
|
return this.thingAvailable("illumination") ? this.thingDescription("illumination").title : undefined;
|
|
},
|
|
},
|
|
|
|
async mounted() {
|
|
let version_data = await this.readThingProperty("system", "version_data");
|
|
this.version = version_data.version;
|
|
this.version_source = this.truncate(version_data.version_source);
|
|
},
|
|
|
|
methods: {
|
|
truncate(string, max_length = 15) {
|
|
if (!(typeof string === "string" || string instanceof String)) {
|
|
return string;
|
|
}
|
|
if (string.length <= max_length) {
|
|
return string;
|
|
}
|
|
return string.slice(0, max_length - 3) + "...";
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped lang="less"></style>
|