Skip to content

Commit

Permalink
replace Edit button with Import on WorkflowInvocationHeader
Browse files Browse the repository at this point in the history
Fixes #18896
  • Loading branch information
ahmedhamidawan authored and mvdbeek committed Oct 3, 2024
1 parent 3b360f0 commit f746379
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
<script setup lang="ts">
import { faClock } from "@fortawesome/free-regular-svg-icons";
import { faArrowLeft, faEdit, faHdd, faSitemap } from "@fortawesome/free-solid-svg-icons";
import { faArrowLeft, faEdit, faHdd, faSitemap, faUpload } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { BButton, BButtonGroup } from "bootstrap-vue";
import { computed } from "vue";
import type { WorkflowInvocationElementView } from "@/api/invocations";
import { Toast } from "@/composables/toast";
import { useWorkflowInstance } from "@/composables/useWorkflowInstance";
import { getAppRoot } from "@/onload";
import { useUserStore } from "@/stores/userStore";
import localize from "@/utils/localization";
import { errorMessageAsString } from "@/utils/simple-error";
import { copyWorkflow } from "../Workflow/workflows.services";
import AsyncButton from "../Common/AsyncButton.vue";
import Heading from "../Common/Heading.vue";
import SwitchToHistoryLink from "../History/SwitchToHistoryLink.vue";
import UtcDate from "../UtcDate.vue";
Expand All @@ -23,6 +31,31 @@ const props = defineProps<Props>();
const { workflow } = useWorkflowInstance(props.invocation.workflow_id);
const userStore = useUserStore();
const owned = computed(() => {
if (userStore.currentUser && workflow.value) {
return userStore.currentUser.username === workflow.value.owner;
} else {
return false;
}
});
async function onImport() {
if (!workflow.value || !workflow.value.owner) {
return;
}
try {
await copyWorkflow(workflow.value.id, workflow.value.owner);
Toast.success(
localize("Click here to view the imported workflow in the workflows list"),
localize("Workflow imported successfully"),
`${getAppRoot()}workflows/list`
);
} catch (error) {
Toast.error(errorMessageAsString(error), localize("Failed to import workflow"));
}
}
function getWorkflowName(): string {
return workflow.value?.name || "...";
}
Expand Down Expand Up @@ -69,6 +102,7 @@ function getWorkflowName(): string {
</div>
<BButtonGroup vertical>
<BButton
v-if="owned"
v-b-tooltip.hover.noninteractive.html
:title="
!workflow.deleted
Expand All @@ -82,6 +116,17 @@ function getWorkflowName(): string {
<FontAwesomeIcon :icon="faEdit" />
<span v-localize>Edit</span>
</BButton>
<AsyncButton
v-else
v-b-tooltip.hover.noninteractive
size="sm"
:disabled="userStore.isAnonymous"
:title="localize('Import this workflow')"
:icon="faUpload"
variant="outline-primary"
:action="onImport">
<span v-localize>Import</span>
</AsyncButton>
<WorkflowRunButton
:id="workflow.id || ''"
:title="
Expand Down
1 change: 1 addition & 0 deletions client/src/stores/workflowStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export interface Workflow {
latest_id?: string;
version: number;
deleted?: boolean;
owner?: string;
}

export const useWorkflowStore = defineStore("workflowStore", () => {
Expand Down

0 comments on commit f746379

Please sign in to comment.