104 lines
2.6 KiB
Vue
104 lines
2.6 KiB
Vue
<script>
|
|
import { mapActions, mapState } from 'vuex';
|
|
import tooltip from '../../../vue_shared/directives/tooltip';
|
|
import Icon from '../../../vue_shared/components/icon.vue';
|
|
import { rightSidebarViews } from '../../constants';
|
|
import PipelinesList from '../pipelines/list.vue';
|
|
import JobsDetail from '../jobs/detail.vue';
|
|
import MergeRequestInfo from '../merge_requests/info.vue';
|
|
import ResizablePanel from '../resizable_panel.vue';
|
|
|
|
export default {
|
|
directives: {
|
|
tooltip,
|
|
},
|
|
components: {
|
|
Icon,
|
|
PipelinesList,
|
|
JobsDetail,
|
|
ResizablePanel,
|
|
MergeRequestInfo,
|
|
},
|
|
computed: {
|
|
...mapState(['rightPane', 'currentMergeRequestId']),
|
|
pipelinesActive() {
|
|
return (
|
|
this.rightPane === rightSidebarViews.pipelines ||
|
|
this.rightPane === rightSidebarViews.jobsDetail
|
|
);
|
|
},
|
|
},
|
|
methods: {
|
|
...mapActions(['setRightPane']),
|
|
clickTab(e, view) {
|
|
e.target.blur();
|
|
|
|
this.setRightPane(view);
|
|
},
|
|
},
|
|
rightSidebarViews,
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="multi-file-commit-panel ide-right-sidebar"
|
|
>
|
|
<resizable-panel
|
|
v-if="rightPane"
|
|
:collapsible="false"
|
|
:initial-width="350"
|
|
:min-size="350"
|
|
class="multi-file-commit-panel-inner"
|
|
side="right"
|
|
>
|
|
<component :is="rightPane" />
|
|
</resizable-panel>
|
|
<nav class="ide-activity-bar">
|
|
<ul class="list-unstyled">
|
|
<li
|
|
v-if="currentMergeRequestId"
|
|
>
|
|
<button
|
|
v-tooltip
|
|
:title="__('Merge Request')"
|
|
:aria-label="__('Merge Request')"
|
|
:class="{
|
|
active: rightPane === $options.rightSidebarViews.mergeRequestInfo
|
|
}"
|
|
data-container="body"
|
|
data-placement="left"
|
|
class="ide-sidebar-link is-right"
|
|
type="button"
|
|
@click="clickTab($event, $options.rightSidebarViews.mergeRequestInfo)"
|
|
>
|
|
<icon
|
|
:size="16"
|
|
name="text-description"
|
|
/>
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button
|
|
v-tooltip
|
|
:title="__('Pipelines')"
|
|
:aria-label="__('Pipelines')"
|
|
:class="{
|
|
active: pipelinesActive
|
|
}"
|
|
data-container="body"
|
|
data-placement="left"
|
|
class="ide-sidebar-link is-right"
|
|
type="button"
|
|
@click="clickTab($event, $options.rightSidebarViews.pipelines)"
|
|
>
|
|
<icon
|
|
:size="16"
|
|
name="rocket"
|
|
/>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</template>
|