xref: /openbmc/webui-vue/src/views/Settings/Network/Network.vue (revision de23ea23d88451a2fa2774ec72053772603c23ae)
1f67f769fSSandeepa Singh<template>
2f67f769fSSandeepa Singh  <b-container fluid="xl">
3f67f769fSSandeepa Singh    <page-title :description="$t('pageNetwork.pageDescription')" />
4c4b8757eSDixsie Wolmers    <!-- Global settings for all interfaces -->
5c4b8757eSDixsie Wolmers    <network-global-settings />
6c4b8757eSDixsie Wolmers    <!-- Interface tabs -->
712dc20c3SDixsie Wolmers    <page-section v-show="ethernetData">
8f67f769fSSandeepa Singh      <b-row>
9c4b8757eSDixsie Wolmers        <b-col>
10c4b8757eSDixsie Wolmers          <b-card no-body>
11c4b8757eSDixsie Wolmers            <b-tabs
12c4b8757eSDixsie Wolmers              active-nav-item-class="font-weight-bold"
13c4b8757eSDixsie Wolmers              card
14c4b8757eSDixsie Wolmers              content-class="mt-3"
15f67f769fSSandeepa Singh            >
16c4b8757eSDixsie Wolmers              <b-tab
17c4b8757eSDixsie Wolmers                v-for="(data, index) in ethernetData"
18c4b8757eSDixsie Wolmers                :key="data.Id"
19c4b8757eSDixsie Wolmers                :title="data.Id"
20c4b8757eSDixsie Wolmers                @click="getTabIndex(index)"
21f67f769fSSandeepa Singh              >
22c4b8757eSDixsie Wolmers                <!-- Interface settings -->
23c4b8757eSDixsie Wolmers                <network-interface-settings :tab-index="tabIndex" />
24c4b8757eSDixsie Wolmers                <!-- IPV4 table -->
25c4b8757eSDixsie Wolmers                <table-ipv-4 :tab-index="tabIndex" />
26db47b7e1SSean Zhang                <!-- IPV6 table -->
27db47b7e1SSean Zhang                <table-ipv-6 :tab-index="tabIndex" />
28c4b8757eSDixsie Wolmers                <!-- Static DNS table -->
29c4b8757eSDixsie Wolmers                <table-dns :tab-index="tabIndex" />
30c4b8757eSDixsie Wolmers              </b-tab>
31c4b8757eSDixsie Wolmers            </b-tabs>
32c4b8757eSDixsie Wolmers          </b-card>
33f67f769fSSandeepa Singh        </b-col>
34f67f769fSSandeepa Singh      </b-row>
35f67f769fSSandeepa Singh    </page-section>
36b34349d4SDixsie Wolmers    <!-- Modals -->
37b34349d4SDixsie Wolmers    <modal-ipv4 :default-gateway="defaultGateway" @ok="saveIpv4Address" />
38db47b7e1SSean Zhang    <modal-ipv6 @ok="saveIpv6Address" />
39b34349d4SDixsie Wolmers    <modal-dns @ok="saveDnsAddress" />
4012dc20c3SDixsie Wolmers    <modal-hostname :hostname="currentHostname" @ok="saveSettings" />
4112dc20c3SDixsie Wolmers    <modal-mac-address :mac-address="currentMacAddress" @ok="saveSettings" />
42db47b7e1SSean Zhang    <modal-default-gateway
43db47b7e1SSean Zhang      :default-gateway="ipv6DefaultGateway"
44db47b7e1SSean Zhang      @ok="saveSettings"
45db47b7e1SSean Zhang    />
46f67f769fSSandeepa Singh  </b-container>
47f67f769fSSandeepa Singh</template>
48f67f769fSSandeepa Singh
49f67f769fSSandeepa Singh<script>
50f67f769fSSandeepa Singhimport BVToastMixin from '@/components/Mixins/BVToastMixin';
51c4b8757eSDixsie Wolmersimport DataFormatterMixin from '@/components/Mixins/DataFormatterMixin';
52f67f769fSSandeepa Singhimport LoadingBarMixin, { loading } from '@/components/Mixins/LoadingBarMixin';
5312dc20c3SDixsie Wolmersimport ModalMacAddress from './ModalMacAddress.vue';
54db47b7e1SSean Zhangimport ModalDefaultGateway from './ModalDefaultGateway.vue';
5512dc20c3SDixsie Wolmersimport ModalHostname from './ModalHostname.vue';
56b34349d4SDixsie Wolmersimport ModalIpv4 from './ModalIpv4.vue';
57db47b7e1SSean Zhangimport ModalIpv6 from './ModalIpv6.vue';
58b34349d4SDixsie Wolmersimport ModalDns from './ModalDns.vue';
59c4b8757eSDixsie Wolmersimport NetworkGlobalSettings from './NetworkGlobalSettings.vue';
60c4b8757eSDixsie Wolmersimport NetworkInterfaceSettings from './NetworkInterfaceSettings.vue';
61f67f769fSSandeepa Singhimport PageSection from '@/components/Global/PageSection';
62f67f769fSSandeepa Singhimport PageTitle from '@/components/Global/PageTitle';
63c4b8757eSDixsie Wolmersimport TableIpv4 from './TableIpv4.vue';
64db47b7e1SSean Zhangimport TableIpv6 from './TableIpv6.vue';
65c4b8757eSDixsie Wolmersimport TableDns from './TableDns.vue';
66f67f769fSSandeepa Singhimport { mapState } from 'vuex';
67*de23ea23SSurya Vimport { useI18n } from 'vue-i18n';
68f67f769fSSandeepa Singh
69f67f769fSSandeepa Singhexport default {
70f67f769fSSandeepa Singh  name: 'Network',
71f67f769fSSandeepa Singh  components: {
7212dc20c3SDixsie Wolmers    ModalHostname,
7312dc20c3SDixsie Wolmers    ModalMacAddress,
74db47b7e1SSean Zhang    ModalDefaultGateway,
75b34349d4SDixsie Wolmers    ModalIpv4,
76db47b7e1SSean Zhang    ModalIpv6,
77b34349d4SDixsie Wolmers    ModalDns,
78c4b8757eSDixsie Wolmers    NetworkGlobalSettings,
79c4b8757eSDixsie Wolmers    NetworkInterfaceSettings,
80f67f769fSSandeepa Singh    PageSection,
81c4b8757eSDixsie Wolmers    PageTitle,
82c4b8757eSDixsie Wolmers    TableDns,
83c4b8757eSDixsie Wolmers    TableIpv4,
84db47b7e1SSean Zhang    TableIpv6,
85f67f769fSSandeepa Singh  },
86c4b8757eSDixsie Wolmers  mixins: [BVToastMixin, DataFormatterMixin, LoadingBarMixin],
87f67f769fSSandeepa Singh  beforeRouteLeave(to, from, next) {
88f67f769fSSandeepa Singh    this.hideLoader();
89f67f769fSSandeepa Singh    next();
90f67f769fSSandeepa Singh  },
91f67f769fSSandeepa Singh  data() {
92f67f769fSSandeepa Singh    return {
93*de23ea23SSurya V      $t: useI18n().t,
9412dc20c3SDixsie Wolmers      currentHostname: '',
9512dc20c3SDixsie Wolmers      currentMacAddress: '',
96b34349d4SDixsie Wolmers      defaultGateway: '',
97db47b7e1SSean Zhang      ipv6DefaultGateway: '',
98f67f769fSSandeepa Singh      loading,
99c4b8757eSDixsie Wolmers      tabIndex: 0,
100f67f769fSSandeepa Singh    };
101f67f769fSSandeepa Singh  },
102f67f769fSSandeepa Singh  computed: {
103c4b8757eSDixsie Wolmers    ...mapState('network', ['ethernetData']),
104f67f769fSSandeepa Singh  },
105b34349d4SDixsie Wolmers  watch: {
106b34349d4SDixsie Wolmers    ethernetData() {
10712dc20c3SDixsie Wolmers      this.getModalInfo();
108b34349d4SDixsie Wolmers    },
109b34349d4SDixsie Wolmers  },
110f67f769fSSandeepa Singh  created() {
111f67f769fSSandeepa Singh    this.startLoader();
112c4b8757eSDixsie Wolmers    const globalSettings = new Promise((resolve) => {
113c4b8757eSDixsie Wolmers      this.$root.$on('network-global-settings-complete', () => resolve());
114c4b8757eSDixsie Wolmers    });
115c4b8757eSDixsie Wolmers    const interfaceSettings = new Promise((resolve) => {
116c4b8757eSDixsie Wolmers      this.$root.$on('network-interface-settings-complete', () => resolve());
117c4b8757eSDixsie Wolmers    });
118c4b8757eSDixsie Wolmers    const networkTableDns = new Promise((resolve) => {
119c4b8757eSDixsie Wolmers      this.$root.$on('network-table-dns-complete', () => resolve());
120c4b8757eSDixsie Wolmers    });
121c4b8757eSDixsie Wolmers    const networkTableIpv4 = new Promise((resolve) => {
122c4b8757eSDixsie Wolmers      this.$root.$on('network-table-ipv4-complete', () => resolve());
123c4b8757eSDixsie Wolmers    });
124db47b7e1SSean Zhang    const networkTableIpv6 = new Promise((resolve) => {
125db47b7e1SSean Zhang      this.$root.$on('network-table-ipv6-complete', () => resolve());
126db47b7e1SSean Zhang    });
127c4b8757eSDixsie Wolmers    // Combine all child component Promises to indicate
128c4b8757eSDixsie Wolmers    // when page data load complete
129c4b8757eSDixsie Wolmers    Promise.all([
130c4b8757eSDixsie Wolmers      this.$store.dispatch('network/getEthernetData'),
131c4b8757eSDixsie Wolmers      globalSettings,
132c4b8757eSDixsie Wolmers      interfaceSettings,
133c4b8757eSDixsie Wolmers      networkTableDns,
134c4b8757eSDixsie Wolmers      networkTableIpv4,
135db47b7e1SSean Zhang      networkTableIpv6,
136c4b8757eSDixsie Wolmers    ]).finally(() => this.endLoader());
137f67f769fSSandeepa Singh  },
138f67f769fSSandeepa Singh  methods: {
13912dc20c3SDixsie Wolmers    getModalInfo() {
1408132399cSEd Tanous      this.defaultGateway =
1418132399cSEd Tanous        this.$store.getters['network/globalNetworkSettings'][
1428132399cSEd Tanous          this.tabIndex
1438132399cSEd Tanous        ].defaultGateway;
14412dc20c3SDixsie Wolmers
1458132399cSEd Tanous      this.currentHostname =
1468132399cSEd Tanous        this.$store.getters['network/globalNetworkSettings'][
1478132399cSEd Tanous          this.tabIndex
1488132399cSEd Tanous        ].hostname;
14912dc20c3SDixsie Wolmers
1508132399cSEd Tanous      this.currentMacAddress =
1518132399cSEd Tanous        this.$store.getters['network/globalNetworkSettings'][
1528132399cSEd Tanous          this.tabIndex
1538132399cSEd Tanous        ].macAddress;
154db47b7e1SSean Zhang      this.ipv6DefaultGateway =
155db47b7e1SSean Zhang        this.$store.getters['network/globalNetworkSettings'][
156db47b7e1SSean Zhang          this.tabIndex
157db47b7e1SSean Zhang        ].ipv6DefaultGateway;
158b34349d4SDixsie Wolmers    },
159c4b8757eSDixsie Wolmers    getTabIndex(selectedIndex) {
160c4b8757eSDixsie Wolmers      this.tabIndex = selectedIndex;
161b34349d4SDixsie Wolmers      this.$store.dispatch('network/setSelectedTabIndex', this.tabIndex);
162b34349d4SDixsie Wolmers      this.$store.dispatch(
163b34349d4SDixsie Wolmers        'network/setSelectedTabId',
1648132399cSEd Tanous        this.ethernetData[selectedIndex].Id,
165b34349d4SDixsie Wolmers      );
16612dc20c3SDixsie Wolmers      this.getModalInfo();
167b34349d4SDixsie Wolmers    },
168b34349d4SDixsie Wolmers    saveIpv4Address(modalFormData) {
169b34349d4SDixsie Wolmers      this.startLoader();
170b34349d4SDixsie Wolmers      this.$store
171b34349d4SDixsie Wolmers        .dispatch('network/saveIpv4Address', modalFormData)
172b34349d4SDixsie Wolmers        .then((message) => this.successToast(message))
173b34349d4SDixsie Wolmers        .catch(({ message }) => this.errorToast(message))
174b34349d4SDixsie Wolmers        .finally(() => this.endLoader());
175b34349d4SDixsie Wolmers    },
176db47b7e1SSean Zhang    saveIpv6Address(modalFormData) {
177db47b7e1SSean Zhang      this.startLoader();
178db47b7e1SSean Zhang      this.$store
179db47b7e1SSean Zhang        .dispatch('network/saveIpv6Address', modalFormData)
180db47b7e1SSean Zhang        .then((message) => this.successToast(message))
181db47b7e1SSean Zhang        .catch(({ message }) => this.errorToast(message))
182db47b7e1SSean Zhang        .finally(() => this.endLoader());
183db47b7e1SSean Zhang    },
184b34349d4SDixsie Wolmers    saveDnsAddress(modalFormData) {
185b34349d4SDixsie Wolmers      this.startLoader();
186b34349d4SDixsie Wolmers      this.$store
187b34349d4SDixsie Wolmers        .dispatch('network/saveDnsAddress', modalFormData)
188b34349d4SDixsie Wolmers        .then((message) => this.successToast(message))
189b34349d4SDixsie Wolmers        .catch(({ message }) => this.errorToast(message))
190b34349d4SDixsie Wolmers        .finally(() => this.endLoader());
191f67f769fSSandeepa Singh    },
19212dc20c3SDixsie Wolmers    saveSettings(modalFormData) {
19312dc20c3SDixsie Wolmers      this.startLoader();
19412dc20c3SDixsie Wolmers      this.$store
19512dc20c3SDixsie Wolmers        .dispatch('network/saveSettings', modalFormData)
19612dc20c3SDixsie Wolmers        .then((message) => this.successToast(message))
19712dc20c3SDixsie Wolmers        .catch(({ message }) => this.errorToast(message))
19812dc20c3SDixsie Wolmers        .finally(() => this.endLoader());
19912dc20c3SDixsie Wolmers    },
200f67f769fSSandeepa Singh  },
201f67f769fSSandeepa Singh};
202f67f769fSSandeepa Singh</script>
203