2022-11-15 04:25:04 -08:00
|
|
|
<template>
|
|
|
|
<Modal
|
|
|
|
width="460px"
|
2022-12-21 07:42:07 -08:00
|
|
|
:title="modalTitle"
|
2022-11-15 04:25:04 -08:00
|
|
|
:eventBus="modalBus"
|
|
|
|
:name="WORKFLOW_SHARE_MODAL_KEY"
|
|
|
|
:center="true"
|
2022-11-22 03:03:15 -08:00
|
|
|
:beforeClose="onCloseModal"
|
2022-11-15 04:25:04 -08:00
|
|
|
>
|
2022-11-18 05:59:31 -08:00
|
|
|
<template #content>
|
2022-12-21 07:42:07 -08:00
|
|
|
<div v-if="!isSharingEnabled" :class="$style.container">
|
|
|
|
<n8n-text>
|
|
|
|
{{
|
|
|
|
$locale.baseText(
|
2023-01-05 07:10:08 -08:00
|
|
|
uiStore.contextBasedTranslationKeys.workflows.sharing.unavailable.description.modal,
|
2022-12-21 07:42:07 -08:00
|
|
|
)
|
|
|
|
}}
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="isDefaultUser" :class="$style.container">
|
2022-12-12 01:53:02 -08:00
|
|
|
<n8n-text>
|
|
|
|
{{ $locale.baseText('workflows.shareModal.isDefaultUser.description') }}
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
<div v-else :class="$style.container">
|
2022-12-14 01:04:10 -08:00
|
|
|
<n8n-info-tip v-if="!workflowPermissions.isOwner" :bold="false" class="mb-s">
|
|
|
|
{{
|
|
|
|
$locale.baseText('workflows.shareModal.info.sharee', {
|
|
|
|
interpolate: { workflowOwnerName },
|
|
|
|
})
|
|
|
|
}}
|
2022-12-12 04:46:34 -08:00
|
|
|
</n8n-info-tip>
|
2022-12-21 07:42:07 -08:00
|
|
|
<enterprise-edition :features="[EnterpriseEditionFeature.Sharing]">
|
2022-11-15 04:25:04 -08:00
|
|
|
<n8n-user-select
|
|
|
|
v-if="workflowPermissions.updateSharing"
|
2022-11-28 05:14:43 -08:00
|
|
|
class="mb-s"
|
2022-11-15 04:25:04 -08:00
|
|
|
size="large"
|
|
|
|
:users="usersList"
|
|
|
|
:currentUserId="currentUser.id"
|
|
|
|
:placeholder="$locale.baseText('workflows.shareModal.select.placeholder')"
|
|
|
|
@input="onAddSharee"
|
|
|
|
>
|
|
|
|
<template #prefix>
|
|
|
|
<n8n-icon icon="search" />
|
|
|
|
</template>
|
|
|
|
</n8n-user-select>
|
|
|
|
<n8n-users-list
|
|
|
|
:actions="[]"
|
|
|
|
:users="sharedWithList"
|
|
|
|
:currentUserId="currentUser.id"
|
|
|
|
:delete-label="$locale.baseText('workflows.shareModal.list.delete')"
|
|
|
|
:readonly="!workflowPermissions.updateSharing"
|
|
|
|
>
|
2022-11-18 05:59:31 -08:00
|
|
|
<template #actions="{ user }">
|
2022-11-15 04:25:04 -08:00
|
|
|
<n8n-select
|
|
|
|
:class="$style.roleSelect"
|
|
|
|
value="editor"
|
|
|
|
size="small"
|
|
|
|
@change="onRoleAction(user, $event)"
|
|
|
|
>
|
2022-12-14 01:04:10 -08:00
|
|
|
<n8n-option :label="$locale.baseText('workflows.roles.editor')" value="editor" />
|
|
|
|
<n8n-option :class="$style.roleSelectRemoveOption" value="remove">
|
|
|
|
<n8n-text color="danger">{{
|
|
|
|
$locale.baseText('workflows.shareModal.list.delete')
|
|
|
|
}}</n8n-text>
|
2022-11-15 04:25:04 -08:00
|
|
|
</n8n-option>
|
|
|
|
</n8n-select>
|
|
|
|
</template>
|
|
|
|
</n8n-users-list>
|
|
|
|
<template #fallback>
|
|
|
|
<n8n-text>
|
2022-12-14 01:04:10 -08:00
|
|
|
<i18n
|
2023-01-05 07:10:08 -08:00
|
|
|
:path="
|
|
|
|
uiStore.contextBasedTranslationKeys.workflows.sharing.unavailable.description
|
|
|
|
"
|
2022-12-14 01:04:10 -08:00
|
|
|
tag="span"
|
|
|
|
>
|
2022-11-29 05:13:10 -08:00
|
|
|
<template #action />
|
|
|
|
</i18n>
|
2022-11-15 04:25:04 -08:00
|
|
|
</n8n-text>
|
|
|
|
</template>
|
|
|
|
</enterprise-edition>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-11-18 05:59:31 -08:00
|
|
|
<template #footer>
|
2022-12-21 07:42:07 -08:00
|
|
|
<div v-if="!isSharingEnabled" :class="$style.actionButtons">
|
|
|
|
<n8n-button @click="goToUpgrade">
|
2023-01-05 07:10:08 -08:00
|
|
|
{{
|
|
|
|
$locale.baseText(
|
|
|
|
uiStore.contextBasedTranslationKeys.workflows.sharing.unavailable.button,
|
|
|
|
)
|
|
|
|
}}
|
2022-12-21 07:42:07 -08:00
|
|
|
</n8n-button>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="isDefaultUser" :class="$style.actionButtons">
|
2022-12-12 01:53:02 -08:00
|
|
|
<n8n-button @click="goToUsersSettings">
|
|
|
|
{{ $locale.baseText('workflows.shareModal.isDefaultUser.button') }}
|
|
|
|
</n8n-button>
|
|
|
|
</div>
|
2022-12-14 01:04:10 -08:00
|
|
|
<enterprise-edition
|
|
|
|
v-else
|
2022-12-21 07:42:07 -08:00
|
|
|
:features="[EnterpriseEditionFeature.Sharing]"
|
2022-12-14 01:04:10 -08:00
|
|
|
:class="$style.actionButtons"
|
|
|
|
>
|
|
|
|
<n8n-text v-show="isDirty" color="text-light" size="small" class="mr-xs">
|
2022-11-15 04:25:04 -08:00
|
|
|
{{ $locale.baseText('workflows.shareModal.changesHint') }}
|
|
|
|
</n8n-text>
|
|
|
|
<n8n-button
|
|
|
|
v-show="workflowPermissions.updateSharing"
|
|
|
|
@click="onSave"
|
|
|
|
:loading="loading"
|
|
|
|
:disabled="!isDirty"
|
|
|
|
size="medium"
|
|
|
|
>
|
|
|
|
{{ $locale.baseText('workflows.shareModal.save') }}
|
|
|
|
</n8n-button>
|
|
|
|
</enterprise-edition>
|
|
|
|
</template>
|
|
|
|
</Modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Modal from './Modal.vue';
|
|
|
|
import {
|
|
|
|
EnterpriseEditionFeature,
|
|
|
|
PLACEHOLDER_EMPTY_WORKFLOW_ID,
|
2022-12-12 01:53:02 -08:00
|
|
|
VIEWS,
|
2022-11-15 09:20:54 -08:00
|
|
|
WORKFLOW_SHARE_MODAL_KEY,
|
2022-11-15 04:25:04 -08:00
|
|
|
} from '../constants';
|
2022-12-21 07:42:07 -08:00
|
|
|
import { IUser, IWorkflowDb, UIState } from '@/Interface';
|
2022-12-14 01:04:10 -08:00
|
|
|
import { getWorkflowPermissions, IPermissions } from '@/permissions';
|
|
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
import { showMessage } from '@/mixins/showMessage';
|
|
|
|
import { nodeViewEventBus } from '@/event-bus/node-view-event-bus';
|
|
|
|
import { mapStores } from 'pinia';
|
|
|
|
import { useSettingsStore } from '@/stores/settings';
|
|
|
|
import { useUIStore } from '@/stores/ui';
|
|
|
|
import { useUsersStore } from '@/stores/users';
|
|
|
|
import { useWorkflowsStore } from '@/stores/workflows';
|
2022-12-15 00:05:54 -08:00
|
|
|
import { useWorkflowsEEStore } from '@/stores/workflows.ee';
|
|
|
|
import { ITelemetryTrackProperties } from 'n8n-workflow';
|
2022-12-21 07:42:07 -08:00
|
|
|
import { useUsageStore } from '@/stores/usage';
|
2023-01-26 23:51:32 -08:00
|
|
|
import { BaseTextKey } from '@/plugins/i18n';
|
2023-01-30 00:32:04 -08:00
|
|
|
import { isNavigationFailure } from 'vue-router';
|
2022-11-15 04:25:04 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
export default mixins(showMessage).extend({
|
2022-11-15 04:25:04 -08:00
|
|
|
name: 'workflow-share-modal',
|
|
|
|
components: {
|
|
|
|
Modal,
|
|
|
|
},
|
2022-11-22 02:33:40 -08:00
|
|
|
props: {
|
|
|
|
data: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
data() {
|
|
|
|
const workflowsStore = useWorkflowsStore();
|
2022-12-14 01:04:10 -08:00
|
|
|
const workflow =
|
|
|
|
this.data.id === PLACEHOLDER_EMPTY_WORKFLOW_ID
|
|
|
|
? workflowsStore.workflow
|
|
|
|
: workflowsStore.workflowsById[this.data.id];
|
2022-11-15 04:25:04 -08:00
|
|
|
|
|
|
|
return {
|
|
|
|
WORKFLOW_SHARE_MODAL_KEY,
|
2023-01-26 23:51:32 -08:00
|
|
|
loading: true,
|
2022-11-15 04:25:04 -08:00
|
|
|
modalBus: new Vue(),
|
2022-11-22 02:33:40 -08:00
|
|
|
sharedWith: [...(workflow.sharedWith || [])] as Array<Partial<IUser>>,
|
2022-11-15 04:25:04 -08:00
|
|
|
EnterpriseEditionFeature,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2022-12-14 01:04:10 -08:00
|
|
|
...mapStores(
|
|
|
|
useSettingsStore,
|
|
|
|
useUIStore,
|
|
|
|
useUsersStore,
|
2022-12-21 07:42:07 -08:00
|
|
|
useUsageStore,
|
2022-12-14 01:04:10 -08:00
|
|
|
useWorkflowsStore,
|
|
|
|
useWorkflowsEEStore,
|
|
|
|
),
|
2022-12-12 01:53:02 -08:00
|
|
|
isDefaultUser(): boolean {
|
|
|
|
return this.usersStore.isDefaultUser;
|
|
|
|
},
|
2022-12-21 07:42:07 -08:00
|
|
|
isSharingEnabled(): boolean {
|
|
|
|
return this.settingsStore.isEnterpriseFeatureEnabled(EnterpriseEditionFeature.Sharing);
|
|
|
|
},
|
2023-02-08 01:42:22 -08:00
|
|
|
fallbackLinkUrl(): string {
|
|
|
|
return `${this.$locale.baseText(
|
|
|
|
this.uiStore.contextBasedTranslationKeys.upgradeLinkUrl as BaseTextKey,
|
|
|
|
)}${true ? '&utm_campaign=upgrade-workflow-sharing' : ''}`;
|
|
|
|
},
|
2022-12-21 07:42:07 -08:00
|
|
|
modalTitle(): string {
|
|
|
|
return this.$locale.baseText(
|
|
|
|
this.isSharingEnabled
|
2023-01-26 23:51:32 -08:00
|
|
|
? (this.uiStore.contextBasedTranslationKeys.workflows.sharing.title as BaseTextKey)
|
|
|
|
: (this.uiStore.contextBasedTranslationKeys.workflows.sharing.unavailable
|
|
|
|
.title as BaseTextKey),
|
2022-12-21 07:42:07 -08:00
|
|
|
{
|
|
|
|
interpolate: { name: this.workflow.name },
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
usersList(): IUser[] {
|
|
|
|
return this.usersStore.allUsers.filter((user: IUser) => {
|
|
|
|
const isCurrentUser = user.id === this.usersStore.currentUser?.id;
|
2022-12-14 01:04:10 -08:00
|
|
|
const isAlreadySharedWithUser = (this.sharedWith || []).find(
|
|
|
|
(sharee) => sharee.id === user.id,
|
|
|
|
);
|
2022-11-15 04:25:04 -08:00
|
|
|
|
|
|
|
return !isCurrentUser && !isAlreadySharedWithUser;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
sharedWithList(): Array<Partial<IUser>> {
|
2022-12-14 01:04:10 -08:00
|
|
|
return (
|
|
|
|
[
|
|
|
|
{
|
|
|
|
...(this.workflow && this.workflow.ownedBy
|
|
|
|
? this.workflow.ownedBy
|
|
|
|
: this.usersStore.currentUser),
|
|
|
|
isOwner: true,
|
|
|
|
},
|
|
|
|
] as Array<Partial<IUser>>
|
|
|
|
).concat(this.sharedWith || []);
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
workflow(): IWorkflowDb {
|
2022-11-22 02:33:40 -08:00
|
|
|
return this.data.id === PLACEHOLDER_EMPTY_WORKFLOW_ID
|
|
|
|
? this.workflowsStore.workflow
|
|
|
|
: this.workflowsStore.workflowsById[this.data.id];
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
currentUser(): IUser | null {
|
|
|
|
return this.usersStore.currentUser;
|
|
|
|
},
|
|
|
|
workflowPermissions(): IPermissions {
|
|
|
|
return getWorkflowPermissions(this.usersStore.currentUser, this.workflow);
|
|
|
|
},
|
2022-12-12 04:46:34 -08:00
|
|
|
workflowOwnerName(): string {
|
|
|
|
return this.workflowsEEStore.getWorkflowOwnerName(`${this.workflow.id}`);
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
isDirty(): boolean {
|
|
|
|
const previousSharedWith = this.workflow.sharedWith || [];
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return (
|
|
|
|
this.sharedWith.length !== previousSharedWith.length ||
|
2022-11-15 04:25:04 -08:00
|
|
|
this.sharedWith.some(
|
|
|
|
(sharee) => !previousSharedWith.find((previousSharee) => sharee.id === previousSharee.id),
|
2022-12-14 01:04:10 -08:00
|
|
|
)
|
|
|
|
);
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async onSave() {
|
|
|
|
if (this.loading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
const saveWorkflowPromise = () => {
|
|
|
|
return new Promise<string>((resolve) => {
|
|
|
|
if (this.workflow.id === PLACEHOLDER_EMPTY_WORKFLOW_ID) {
|
|
|
|
nodeViewEventBus.$emit('saveWorkflow', () => {
|
2022-12-21 07:42:07 -08:00
|
|
|
resolve(this.workflow.id);
|
2022-11-15 04:25:04 -08:00
|
|
|
});
|
|
|
|
} else {
|
2022-12-21 07:42:07 -08:00
|
|
|
resolve(this.workflow.id);
|
2022-11-15 04:25:04 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-11-22 03:26:03 -08:00
|
|
|
try {
|
2022-12-15 00:05:54 -08:00
|
|
|
const shareesAdded = this.sharedWith.filter(
|
|
|
|
(sharee) =>
|
|
|
|
!this.workflow.sharedWith?.find((previousSharee) => sharee.id === previousSharee.id),
|
|
|
|
);
|
|
|
|
const shareesRemoved =
|
|
|
|
this.workflow.sharedWith?.filter(
|
|
|
|
(previousSharee) => !this.sharedWith.find((sharee) => sharee.id === previousSharee.id),
|
|
|
|
) || [];
|
|
|
|
|
2022-11-22 03:26:03 -08:00
|
|
|
const workflowId = await saveWorkflowPromise();
|
2022-12-14 01:04:10 -08:00
|
|
|
await this.workflowsEEStore.saveWorkflowSharedWith({
|
|
|
|
workflowId,
|
|
|
|
sharedWith: this.sharedWith,
|
|
|
|
});
|
2022-11-22 03:26:03 -08:00
|
|
|
|
2022-12-15 00:05:54 -08:00
|
|
|
this.trackTelemetry({
|
|
|
|
user_ids_sharees_added: shareesAdded.map((sharee) => sharee.id),
|
|
|
|
sharees_removed: shareesRemoved.length,
|
|
|
|
});
|
|
|
|
|
2022-11-22 03:26:03 -08:00
|
|
|
this.$showMessage({
|
|
|
|
title: this.$locale.baseText('workflows.shareModal.onSave.success.title'),
|
|
|
|
type: 'success',
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
this.$showError(error, this.$locale.baseText('workflows.shareModal.onSave.error.title'));
|
|
|
|
} finally {
|
|
|
|
this.modalBus.$emit('close');
|
|
|
|
this.loading = false;
|
|
|
|
}
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
async onAddSharee(userId: string) {
|
|
|
|
const { id, firstName, lastName, email } = this.usersStore.getUserById(userId)!;
|
|
|
|
const sharee = { id, firstName, lastName, email };
|
|
|
|
|
|
|
|
this.sharedWith = this.sharedWith.concat(sharee);
|
2022-12-15 00:05:54 -08:00
|
|
|
|
|
|
|
this.trackTelemetry({
|
|
|
|
user_id_sharee: userId,
|
|
|
|
});
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
async onRemoveSharee(userId: string) {
|
|
|
|
const user = this.usersStore.getUserById(userId)!;
|
|
|
|
const isNewSharee = !(this.workflow.sharedWith || []).find((sharee) => sharee.id === userId);
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const isLastUserWithAccessToCredentialsById = (this.workflow.usedCredentials || []).reduce<
|
|
|
|
Record<string, boolean>
|
|
|
|
>((acc, credential) => {
|
|
|
|
if (
|
|
|
|
!credential.id ||
|
|
|
|
!credential.ownedBy ||
|
|
|
|
!credential.sharedWith ||
|
|
|
|
!this.workflow.sharedWith
|
|
|
|
) {
|
|
|
|
return acc;
|
|
|
|
}
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
// if is credential owner, and no credential sharees have access to workflow => NOT OK
|
|
|
|
// if is credential owner, and credential sharees have access to workflow => OK
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
// if is credential sharee, and no credential sharees have access to workflow or owner does not have access to workflow => NOT OK
|
|
|
|
// if is credential sharee, and credential owner has access to workflow => OK
|
|
|
|
// if is credential sharee, and other credential sharees have access to workflow => OK
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
let isLastUserWithAccess = false;
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const isCredentialOwner = credential.ownedBy.id === user.id;
|
|
|
|
const isCredentialSharee = !!credential.sharedWith.find((sharee) => sharee.id === user.id);
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (isCredentialOwner) {
|
|
|
|
isLastUserWithAccess = !credential.sharedWith.some((sharee) => {
|
|
|
|
return this.workflow.sharedWith!.find(
|
|
|
|
(workflowSharee) => workflowSharee.id === sharee.id,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
} else if (isCredentialSharee) {
|
|
|
|
isLastUserWithAccess =
|
|
|
|
!credential.sharedWith.some((sharee) => {
|
|
|
|
return this.workflow.sharedWith!.find(
|
|
|
|
(workflowSharee) => workflowSharee.id === sharee.id,
|
|
|
|
);
|
|
|
|
}) &&
|
|
|
|
!this.workflow.sharedWith!.find(
|
|
|
|
(workflowSharee) => workflowSharee.id === credential.ownedBy!.id,
|
|
|
|
);
|
|
|
|
}
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
acc[credential.id] = isLastUserWithAccess;
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return acc;
|
|
|
|
}, {});
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const isLastUserWithAccessToCredentials = Object.values(
|
|
|
|
isLastUserWithAccessToCredentialsById,
|
|
|
|
).some((value) => value);
|
2022-12-07 04:49:55 -08:00
|
|
|
|
2022-11-15 04:25:04 -08:00
|
|
|
let confirm = true;
|
2022-12-12 04:44:29 -08:00
|
|
|
if (!isNewSharee && isLastUserWithAccessToCredentials) {
|
2022-11-15 04:25:04 -08:00
|
|
|
confirm = await this.confirmMessage(
|
2022-12-14 01:04:10 -08:00
|
|
|
this.$locale.baseText(
|
2022-12-29 03:20:43 -08:00
|
|
|
'workflows.shareModal.list.delete.confirm.lastUserWithAccessToCredentials.message',
|
2022-12-14 01:04:10 -08:00
|
|
|
{
|
|
|
|
interpolate: { name: user.fullName as string, workflow: this.workflow.name },
|
|
|
|
},
|
|
|
|
),
|
|
|
|
this.$locale.baseText('workflows.shareModal.list.delete.confirm.title', {
|
2023-01-26 23:51:32 -08:00
|
|
|
interpolate: { name: user.fullName as string },
|
2022-11-15 04:25:04 -08:00
|
|
|
}),
|
|
|
|
null,
|
|
|
|
this.$locale.baseText('workflows.shareModal.list.delete.confirm.confirmButtonText'),
|
|
|
|
this.$locale.baseText('workflows.shareModal.list.delete.confirm.cancelButtonText'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (confirm) {
|
2022-11-22 02:33:40 -08:00
|
|
|
this.sharedWith = this.sharedWith.filter((sharee: Partial<IUser>) => {
|
2022-11-15 04:25:04 -08:00
|
|
|
return sharee.id !== user.id;
|
|
|
|
});
|
2022-12-15 00:05:54 -08:00
|
|
|
|
|
|
|
this.trackTelemetry({
|
|
|
|
user_id_sharee: userId,
|
|
|
|
warning_orphan_credentials: isLastUserWithAccessToCredentials,
|
|
|
|
});
|
2022-11-15 04:25:04 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onRoleAction(user: IUser, action: string) {
|
|
|
|
if (action === 'remove') {
|
|
|
|
this.onRemoveSharee(user.id);
|
|
|
|
}
|
|
|
|
},
|
2022-11-22 03:03:15 -08:00
|
|
|
async onCloseModal() {
|
|
|
|
if (this.isDirty) {
|
|
|
|
const shouldSave = await this.confirmMessage(
|
2022-12-14 01:04:10 -08:00
|
|
|
this.$locale.baseText('workflows.shareModal.saveBeforeClose.message'),
|
2022-11-22 03:03:15 -08:00
|
|
|
this.$locale.baseText('workflows.shareModal.saveBeforeClose.title'),
|
|
|
|
'warning',
|
|
|
|
this.$locale.baseText('workflows.shareModal.saveBeforeClose.confirmButtonText'),
|
|
|
|
this.$locale.baseText('workflows.shareModal.saveBeforeClose.cancelButtonText'),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (shouldSave) {
|
|
|
|
return await this.onSave();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
async loadUsers() {
|
|
|
|
await this.usersStore.fetchUsers();
|
|
|
|
},
|
2022-12-12 01:53:02 -08:00
|
|
|
goToUsersSettings() {
|
2023-01-30 00:32:04 -08:00
|
|
|
this.$router.push({ name: VIEWS.USERS_SETTINGS }).catch((failure) => {
|
|
|
|
if (!isNavigationFailure(failure)) {
|
|
|
|
console.error(failure);
|
|
|
|
}
|
|
|
|
});
|
2022-12-12 01:53:02 -08:00
|
|
|
this.modalBus.$emit('close');
|
|
|
|
},
|
2022-12-15 00:05:54 -08:00
|
|
|
trackTelemetry(data: ITelemetryTrackProperties) {
|
|
|
|
this.$telemetry.track('User selected sharee to remove', {
|
|
|
|
workflow_id: this.workflow.id,
|
|
|
|
user_id_sharer: this.currentUser?.id,
|
|
|
|
sub_view: this.$route.name === VIEWS.WORKFLOWS ? 'Workflows listing' : 'Workflow editor',
|
|
|
|
...data,
|
|
|
|
});
|
|
|
|
},
|
2022-12-21 07:42:07 -08:00
|
|
|
goToUpgrade() {
|
2023-02-08 01:42:22 -08:00
|
|
|
const linkUrlTranslationKey = this.uiStore.contextBasedTranslationKeys
|
|
|
|
.upgradeLinkUrl as BaseTextKey;
|
|
|
|
let linkUrl = this.$locale.baseText(linkUrlTranslationKey);
|
|
|
|
|
|
|
|
if (linkUrlTranslationKey.endsWith('.upgradeLinkUrl')) {
|
2023-01-09 04:57:51 -08:00
|
|
|
linkUrl = `${this.usageStore.viewPlansUrl}&source=workflow_sharing`;
|
2023-02-08 01:42:22 -08:00
|
|
|
} else if (linkUrlTranslationKey.endsWith('.desktop')) {
|
|
|
|
linkUrl = `${linkUrl}&utm_campaign=upgrade-workflow-sharing`;
|
2022-12-21 07:42:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
window.open(linkUrl, '_blank');
|
|
|
|
},
|
2023-01-26 23:51:32 -08:00
|
|
|
async initialize() {
|
|
|
|
if (this.isSharingEnabled) {
|
|
|
|
await this.loadUsers();
|
|
|
|
|
|
|
|
if (
|
|
|
|
this.workflow.id !== PLACEHOLDER_EMPTY_WORKFLOW_ID &&
|
|
|
|
!this.workflow.sharedWith?.length // Sharing info already loaded
|
|
|
|
) {
|
|
|
|
await this.workflowsStore.fetchWorkflow(this.workflow.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
mounted() {
|
2023-01-26 23:51:32 -08:00
|
|
|
this.initialize();
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
workflow(workflow) {
|
|
|
|
this.sharedWith = workflow.sharedWith;
|
|
|
|
},
|
2022-11-15 04:25:04 -08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style module lang="scss">
|
|
|
|
.container > * {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actionButtons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roleSelect {
|
|
|
|
max-width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roleSelectRemoveOption {
|
|
|
|
border-top: 1px solid var(--color-foreground-base);
|
|
|
|
}
|
|
|
|
</style>
|