debian-mirror-gitlab/app/assets/javascripts/ide/components/terminal/view.vue
2021-02-22 17:27:13 +05:30

40 lines
1 KiB
Vue

<script>
import { mapActions, mapGetters, mapState } from 'vuex';
import EmptyState from './empty_state.vue';
export default {
components: {
EmptyState,
TerminalSession: () => import(/* webpackChunkName: 'ide_terminal' */ './session.vue'),
},
computed: {
...mapState('terminal', ['isShowSplash', 'paths']),
...mapGetters('terminal', ['allCheck']),
},
methods: {
...mapActions('terminal', ['startSession', 'hideSplash']),
start() {
this.startSession();
this.hideSplash();
},
},
};
</script>
<template>
<div class="h-100">
<div v-if="isShowSplash" class="h-100 d-flex flex-column justify-content-center">
<empty-state
:is-loading="allCheck.isLoading"
:is-valid="allCheck.isValid"
:message="allCheck.message"
:help-path="paths.webTerminalHelpPath"
:illustration-path="paths.webTerminalSvgPath"
@start="start()"
/>
</div>
<template v-else>
<terminal-session />
</template>
</div>
</template>