blob: 577ea5ff21da410243406efe9170b6df9a326a7a [file] [log] [blame]
Dixsie Wolmers97d86b32019-12-02 05:07:57 -06001<template>
2 <b-list-group>
Dixsie Wolmersf65ee342020-01-22 19:47:56 -06003 <!-- TODO: add event log priority events count -->
Dixsie Wolmers97d86b32019-12-02 05:07:57 -06004 <b-list-group-item>
5 <dl>
6 <dt>BMC time</dt>
Dixsie Wolmersf65ee342020-01-22 19:47:56 -06007 <dd>{{ bmcTime | date("MMM, DD YYYY HH:MM:SS A ZZ") }}</dd>
Dixsie Wolmers97d86b32019-12-02 05:07:57 -06008 </dl>
9 </b-list-group-item>
10 <b-list-group-item>
11 <!-- TODO: add toggle LED on/off funtionality -->
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060012 <b-form-checkbox v-model="serverLedChecked" name="check-button" switch>
Dixsie Wolmers97d86b32019-12-02 05:07:57 -060013 Turn
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060014 <span v-if="!serverLedChecked">on</span>
Dixsie Wolmers97d86b32019-12-02 05:07:57 -060015 <span v-else>off</span> server LED
16 </b-form-checkbox>
17 </b-list-group-item>
18 <b-list-group-item
19 href="#"
20 class="d-flex justify-content-between align-items-center"
21 >
22 <!-- TODO: link to SOL -->
23 <span>Serial over LAN console</span>
24 <ChevronRight16 />
25 </b-list-group-item>
26 <b-list-group-item
27 href="#"
28 class="d-flex justify-content-between align-items-center"
29 >
30 <!-- TODO: link to network settings -->
31 <span>Edit network settings</span>
32 <ChevronRight16 />
33 </b-list-group-item>
34 </b-list-group>
35</template>
36
37<script>
38import ChevronRight16 from "@carbon/icons-vue/es/chevron--right/16";
Dixsie Wolmers97d86b32019-12-02 05:07:57 -060039export default {
40 name: "quickLinks",
41 components: {
42 ChevronRight16
43 },
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060044 created() {
45 this.getBmcTime();
46 },
47 computed: {
48 bmcTime() {
49 return this.$store.getters["global/bmcTime"];
50 }
51 },
52 methods: {
53 getBmcTime() {
54 this.$store.dispatch("global/getBmcTime");
55 }
56 },
Dixsie Wolmers97d86b32019-12-02 05:07:57 -060057 data() {
58 return {
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060059 serverLedChecked: false
Dixsie Wolmers97d86b32019-12-02 05:07:57 -060060 };
61 }
62};
63</script>