mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
239 lines
6.6 KiB
Vue
239 lines
6.6 KiB
Vue
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue';
|
|
import { createEventBus } from '@n8n/utils/event-bus';
|
|
import { useI18n } from '@n8n/i18n';
|
|
import { hasPermission } from '@/utils/rbac/permissions';
|
|
import { getResourcePermissions } from '@n8n/permissions';
|
|
import { useToast } from '@/composables/useToast';
|
|
import { useLoadingService } from '@/composables/useLoadingService';
|
|
import { useUIStore } from '@/stores/ui.store';
|
|
import { useSourceControlStore } from '@/stores/sourceControl.store';
|
|
import { SOURCE_CONTROL_PULL_MODAL_KEY, SOURCE_CONTROL_PUSH_MODAL_KEY } from '@/constants';
|
|
import { sourceControlEventBus } from '@/event-bus/source-control';
|
|
import { notifyUserAboutPullWorkFolderOutcome } from '@/utils/sourceControlUtils';
|
|
import { useProjectsStore } from '@/stores/projects.store';
|
|
|
|
defineProps<{
|
|
isCollapsed: boolean;
|
|
}>();
|
|
|
|
const responseStatuses = {
|
|
CONFLICT: 409,
|
|
};
|
|
|
|
const loadingService = useLoadingService();
|
|
const uiStore = useUIStore();
|
|
const sourceControlStore = useSourceControlStore();
|
|
const projectStore = useProjectsStore();
|
|
const toast = useToast();
|
|
const i18n = useI18n();
|
|
|
|
const eventBus = createEventBus();
|
|
const tooltipOpenDelay = ref(300);
|
|
|
|
const currentBranch = computed(() => {
|
|
return sourceControlStore.preferences.branchName;
|
|
});
|
|
|
|
// Check if the user has permission to push for at least one project
|
|
const hasPushPermission = computed(() => {
|
|
return (
|
|
hasPermission(['rbac'], { rbac: { scope: 'sourceControl:push' } }) ||
|
|
projectStore.myProjects.some(
|
|
(project) =>
|
|
project.type === 'team' && getResourcePermissions(project?.scopes)?.sourceControl?.push,
|
|
)
|
|
);
|
|
});
|
|
|
|
const hasPullPermission = computed(() => {
|
|
return hasPermission(['rbac'], { rbac: { scope: 'sourceControl:pull' } });
|
|
});
|
|
|
|
const sourceControlAvailable = computed(
|
|
() =>
|
|
sourceControlStore.isEnterpriseSourceControlEnabled &&
|
|
(hasPullPermission.value || hasPushPermission.value),
|
|
);
|
|
|
|
async function pushWorkfolder() {
|
|
loadingService.startLoading();
|
|
loadingService.setLoadingText(i18n.baseText('settings.sourceControl.loading.checkingForChanges'));
|
|
try {
|
|
const status = await sourceControlStore.getAggregatedStatus();
|
|
|
|
if (!status.length) {
|
|
toast.showMessage({
|
|
title: 'No changes to commit',
|
|
message: 'Everything is up to date',
|
|
type: 'info',
|
|
});
|
|
return;
|
|
}
|
|
|
|
uiStore.openModalWithData({
|
|
name: SOURCE_CONTROL_PUSH_MODAL_KEY,
|
|
data: { eventBus, status },
|
|
});
|
|
} catch (error) {
|
|
toast.showError(error, i18n.baseText('error'));
|
|
} finally {
|
|
loadingService.stopLoading();
|
|
loadingService.setLoadingText(i18n.baseText('genericHelpers.loading'));
|
|
}
|
|
}
|
|
|
|
async function pullWorkfolder() {
|
|
loadingService.startLoading();
|
|
loadingService.setLoadingText(i18n.baseText('settings.sourceControl.loading.pull'));
|
|
|
|
try {
|
|
const status = await sourceControlStore.pullWorkfolder(false);
|
|
|
|
await notifyUserAboutPullWorkFolderOutcome(status, toast);
|
|
|
|
sourceControlEventBus.emit('pull');
|
|
} catch (error) {
|
|
const errorResponse = error.response;
|
|
|
|
if (errorResponse?.status === responseStatuses.CONFLICT) {
|
|
uiStore.openModalWithData({
|
|
name: SOURCE_CONTROL_PULL_MODAL_KEY,
|
|
data: { eventBus, status: errorResponse.data.data },
|
|
});
|
|
} else {
|
|
toast.showError(error, 'Error');
|
|
}
|
|
} finally {
|
|
loadingService.stopLoading();
|
|
loadingService.setLoadingText(i18n.baseText('genericHelpers.loading'));
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-if="sourceControlAvailable"
|
|
:class="{
|
|
[$style.sync]: true,
|
|
[$style.collapsed]: isCollapsed,
|
|
[$style.isConnected]: sourceControlStore.isEnterpriseSourceControlEnabled,
|
|
}"
|
|
:style="{ borderLeftColor: sourceControlStore.preferences.branchColor }"
|
|
data-test-id="main-sidebar-source-control"
|
|
>
|
|
<div
|
|
v-if="sourceControlStore.preferences.connected && sourceControlStore.preferences.branchName"
|
|
:class="$style.connected"
|
|
data-test-id="main-sidebar-source-control-connected"
|
|
>
|
|
<span :class="$style.branchName">
|
|
<n8n-icon icon="code-branch" />
|
|
{{ currentBranch }}
|
|
</span>
|
|
<div :class="{ 'pt-xs': !isCollapsed }">
|
|
<n8n-tooltip
|
|
:disabled="!isCollapsed && hasPullPermission"
|
|
:show-after="tooltipOpenDelay"
|
|
:placement="isCollapsed ? 'right' : 'top'"
|
|
>
|
|
<template #content>
|
|
<div>
|
|
{{
|
|
!hasPullPermission
|
|
? i18n.baseText('settings.sourceControl.button.pull.forbidden')
|
|
: i18n.baseText('settings.sourceControl.button.pull')
|
|
}}
|
|
</div>
|
|
</template>
|
|
<n8n-button
|
|
:class="{
|
|
'mr-2xs': !isCollapsed,
|
|
'mb-2xs': isCollapsed,
|
|
}"
|
|
:disabled="!hasPullPermission"
|
|
data-test-id="main-sidebar-source-control-pull"
|
|
icon="arrow-down"
|
|
type="tertiary"
|
|
size="mini"
|
|
:square="isCollapsed"
|
|
:label="isCollapsed ? '' : i18n.baseText('settings.sourceControl.button.pull')"
|
|
@click="pullWorkfolder"
|
|
/>
|
|
</n8n-tooltip>
|
|
<n8n-tooltip
|
|
:disabled="
|
|
!isCollapsed && !sourceControlStore.preferences.branchReadOnly && hasPushPermission
|
|
"
|
|
:show-after="tooltipOpenDelay"
|
|
:placement="isCollapsed ? 'right' : 'top'"
|
|
>
|
|
<template #content>
|
|
<div>
|
|
{{
|
|
sourceControlStore.preferences.branchReadOnly || !hasPushPermission
|
|
? i18n.baseText('settings.sourceControl.button.push.forbidden')
|
|
: i18n.baseText('settings.sourceControl.button.push')
|
|
}}
|
|
</div>
|
|
</template>
|
|
<n8n-button
|
|
:square="isCollapsed"
|
|
:label="isCollapsed ? '' : i18n.baseText('settings.sourceControl.button.push')"
|
|
:disabled="sourceControlStore.preferences.branchReadOnly || !hasPushPermission"
|
|
data-test-id="main-sidebar-source-control-push"
|
|
icon="arrow-up"
|
|
type="tertiary"
|
|
size="mini"
|
|
@click="pushWorkfolder"
|
|
/>
|
|
</n8n-tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.sync {
|
|
padding: var(--spacing-s) var(--spacing-s) var(--spacing-s) var(--spacing-l);
|
|
margin: var(--spacing-2xs) 0 calc(var(--spacing-2xs) * -1);
|
|
background: var(--color-background-light);
|
|
border-top: var(--border-width-base) var(--border-style-base) var(--color-foreground-base);
|
|
font-size: var(--font-size-2xs);
|
|
|
|
&.isConnected {
|
|
padding-left: var(--spacing-m);
|
|
border-left: var(--spacing-3xs) var(--border-style-base) var(--color-foreground-base);
|
|
|
|
&.collapsed {
|
|
padding-left: var(--spacing-xs);
|
|
}
|
|
}
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
button {
|
|
font-size: var(--font-size-3xs);
|
|
}
|
|
}
|
|
|
|
.branchName {
|
|
white-space: normal;
|
|
line-break: anywhere;
|
|
}
|
|
|
|
.collapsed {
|
|
text-align: center;
|
|
padding-left: var(--spacing-s);
|
|
padding-right: var(--spacing-s);
|
|
|
|
.connected {
|
|
> span {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|