- remove asynchronous serverless function build - build serverless function synchronously instead on activate workflow or execute - add a loader on workflow code step test tab test button - add a new `ServerlessFunctionSyncStatus` `BUILDING` - add a new route to build a serverless function draft version - delay artificially execution to avoid UI flashing https://github.com/user-attachments/assets/8d958d9a-ef41-4261-999e-6ea374191e33
33 lines
850 B
TypeScript
33 lines
850 B
TypeScript
import { createFamilyState } from '@/ui/utilities/state/utils/createFamilyState';
|
|
import { ServerlessFunctionExecutionStatus } from '~/generated-metadata/graphql';
|
|
|
|
export type ServerlessFunctionTestData = {
|
|
input: { [field: string]: any };
|
|
output: {
|
|
data?: string;
|
|
duration?: number;
|
|
status?: ServerlessFunctionExecutionStatus;
|
|
error?: string;
|
|
};
|
|
language: 'plaintext' | 'json';
|
|
height: number;
|
|
};
|
|
|
|
export const DEFAULT_OUTPUT_VALUE = {
|
|
data: 'Enter an input above then press "Test"',
|
|
status: ServerlessFunctionExecutionStatus.IDLE,
|
|
};
|
|
|
|
export const serverlessFunctionTestDataFamilyState = createFamilyState<
|
|
ServerlessFunctionTestData,
|
|
string
|
|
>({
|
|
key: 'serverlessFunctionTestDataFamilyState',
|
|
defaultValue: {
|
|
language: 'plaintext',
|
|
height: 64,
|
|
input: {},
|
|
output: DEFAULT_OUTPUT_VALUE,
|
|
},
|
|
});
|