Skip to content

Flow definition #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
208 changes: 208 additions & 0 deletions docs/flow-definition.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,208 @@
enum EDataType {
PRIMITIVE, //number, boolean, text
TYPE,
OBJECT,
DATATYPE,
ARRAY,
GENERIC,
NODE
}

enum EDataTypeRuleType {
REGEX,
NUMBER_RANGE,
ITEM_OF_COLLECTION,
CONTAINS_TYPE,
CONTAINS_KEY,
LOCK_KEY,
//etc
}

interface Translation {
code: string //de_DE
text: string
}

interface DataTypeRule {
type: EDataTypeRuleType
config: object
}

interface DataType {
name: Translation[]
type: EDataType
rules?: DataTypeRule[]
inputTypes?: DataType[]
returnType?: DataType
parent?: DataType
}


interface RuntimeFunctionDefinition {
runtime_id: string //standard::math::add
parameters?: RuntimeParameterDefinition[]
return_type?: DataType
}


interface RuntimeParameterDefinition {
type: DataType
name: string
}


interface FunctionDefinition {
runtime_function: RuntimeFunctionDefinition
return_type?: DataType
parameters?: ParameterDefinition[]
name: Translation[]
description: Translation[]
documentation: Translation[] //as markdown

}

interface ParameterDefinition {
type: DataType
name: Translation[] // overrides the runtime parameter name and ref to language entry
description: Translation[]
default_value?: object
}

interface FlowType {
name: Translation[]
definition: FlowDefinition
}

interface FlowDefinition {
settings: FlowDefinitionSetting[]
input_type: DataType
editable: boolean
}

interface FlowDefinitionSetting {
name: Translation[]
unique: boolean
description: Translation[]
type: DataType
default_value?: object
}

interface Flow {
type: FlowType | string //in the actual implementation we will just link the name or id
settings: FlowSetting[]
starting_node: NodeFunction
input_value?: object
}

interface FlowSetting {
definition: FlowDefinitionSetting | string
value: object
}

interface NodeFunction {
function: Partial<FunctionDefinition> | string
parameters?: Parameter[]
next_node?: NodeFunction
}

interface Parameter {
definition: ParameterDefinition | string
value?: object
sub_node?: NodeFunction
}



const userObject: DataType = {
name: [{
code: "en_US",
text: "User"
}],
type: EDataType.OBJECT,
rules: [{
type: EDataTypeRuleType.CONTAINS_KEY,
config: {name: "firstname", type: "text", required: true}
}, {
type: EDataTypeRuleType.CONTAINS_KEY,
config: {name: "lastname", type: "text"}
}, {
type: EDataTypeRuleType.CONTAINS_KEY,
config: {name: "email", type: "text"}
}, {
type: EDataTypeRuleType.CONTAINS_KEY,
config: {name: "age", type: "PositiveNumber"}
}]

}

const integerArrayType: DataType = {
name: [{
code: "en_US",
text: "IntegerArray"
}],
type: EDataType.ARRAY,
rules: [{
type: EDataTypeRuleType.CONTAINS_TYPE,
config: {type: "Number"}
}]
}


const forLoopFunctionParameterType: DataType = {
name: [{
code: "en_US",
text: "Function"
}],
type: EDataType.NODE,
inputTypes: [{
name: [{
code: "en_US",
text: "item"
}],
type: EDataType.GENERIC
}]
}

const flow: Flow = {
type: "",
settings: [{
definition: "",
value: {}
}],
starting_node: {
function: "function::user::add", //-> standard::database::add
parameters: [{
definition: "function::user::add__user", // -> standard::database::add_object
value: {
firstname: "Nico",
lastname: "Sammito",
email: "[email protected]",
age: 20
}
}]
}


}

const flow1: Flow = {
type: "",
settings: [{
definition: "",
value: {}
}],
starting_node: {
function: "function::user::add", //-> standard::database::add
parameters: [{
definition: "function::user::add__user", // -> standard::database::add_object
sub_node: {
function: "function::user::get", //-> standard::database::get
parameters: [{
definition: "function::user::get__id", //-> standard::database::get_key
value: {id: 123456789}
}]
}
}]
}

}
Loading