feat: Workflows v1

This commit is contained in:
Pranav
2026-02-27 21:05:26 -08:00
parent c08fa631a9
commit c0490794d1
52 changed files with 1903 additions and 33 deletions
@@ -0,0 +1,81 @@
import CaptainWorkflows from 'dashboard/api/captain/workflows';
import { createStore } from '../storeFactory';
import { throwErrorMessage } from 'dashboard/store/utils/api';
export default createStore({
name: 'CaptainWorkflow',
API: CaptainWorkflows,
actions: mutations => ({
get: async ({ commit }, { assistantId, page = 1 } = {}) => {
commit(mutations.SET_UI_FLAG, { fetchingList: true });
try {
const response = await CaptainWorkflows.get({ assistantId, page });
commit(mutations.SET, response.data.payload);
commit(mutations.SET_META, response.data.meta);
commit(mutations.SET_UI_FLAG, { fetchingList: false });
return response.data;
} catch (error) {
commit(mutations.SET_UI_FLAG, { fetchingList: false });
return throwErrorMessage(error);
}
},
show: async ({ commit }, { assistantId, id }) => {
commit(mutations.SET_UI_FLAG, { fetchingItem: true });
try {
const response = await CaptainWorkflows.show({ assistantId, id });
commit(mutations.ADD, response.data);
commit(mutations.SET_UI_FLAG, { fetchingItem: false });
return response.data;
} catch (error) {
commit(mutations.SET_UI_FLAG, { fetchingItem: false });
return throwErrorMessage(error);
}
},
create: async ({ commit }, { assistantId, ...data }) => {
commit(mutations.SET_UI_FLAG, { creatingItem: true });
try {
const response = await CaptainWorkflows.create({
assistantId,
...data,
});
commit(mutations.ADD, response.data);
commit(mutations.SET_UI_FLAG, { creatingItem: false });
return response.data;
} catch (error) {
commit(mutations.SET_UI_FLAG, { creatingItem: false });
return throwErrorMessage(error);
}
},
update: async ({ commit }, { id, assistantId, ...updateObj }) => {
commit(mutations.SET_UI_FLAG, { updatingItem: true });
try {
const response = await CaptainWorkflows.update(
{ id, assistantId },
updateObj
);
commit(mutations.EDIT, response.data);
commit(mutations.SET_UI_FLAG, { updatingItem: false });
return response.data;
} catch (error) {
commit(mutations.SET_UI_FLAG, { updatingItem: false });
return throwErrorMessage(error);
}
},
delete: async ({ commit }, { id, assistantId }) => {
commit(mutations.SET_UI_FLAG, { deletingItem: true });
try {
await CaptainWorkflows.delete({ id, assistantId });
commit(mutations.DELETE, id);
commit(mutations.SET_UI_FLAG, { deletingItem: false });
return id;
} catch (error) {
commit(mutations.SET_UI_FLAG, { deletingItem: false });
return throwErrorMessage(error);
}
},
}),
});
+2
View File
@@ -58,6 +58,7 @@ import copilotMessages from './captain/copilotMessages';
import captainScenarios from './captain/scenarios';
import captainTools from './captain/tools';
import captainCustomTools from './captain/customTools';
import captainWorkflows from './captain/workflows';
const plugins = [];
@@ -121,6 +122,7 @@ export default createStore({
captainScenarios,
captainTools,
captainCustomTools,
captainWorkflows,
},
plugins,
});