-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
304 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 2019 | ||
"ecmaVersion": 2022 | ||
}, | ||
"extends": [ | ||
"plugin:bpmn-io/browser", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"components": [ | ||
{ | ||
"label": "Text field", | ||
"type": "textfield", | ||
"id": "field_1knwu16", | ||
"key": "aTextField" | ||
}, | ||
{ | ||
"label": "first_checkbox", | ||
"type": "checkbox", | ||
"id": "field_0zbcir4", | ||
"key": "first_checkbox", | ||
"conditional": { | ||
"hide": "=second_checkbox" | ||
} | ||
}, | ||
{ | ||
"label": "second_checkbox", | ||
"type": "checkbox", | ||
"id": "field_06pzj62", | ||
"key": "second_checkbox" | ||
} | ||
], | ||
"type": "default" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
packages/form-js-viewer-core/src/form-js-viewer-core.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
import { evaluate } from 'feelin'; | ||
import { get } from 'min-dash'; | ||
|
||
const EXPRESSION_PROPERTIES = ['key', 'conditional.hide']; | ||
|
||
class Core { | ||
initialContext = null; | ||
context = null; | ||
schema = null; | ||
subscribers = new Map(); | ||
|
||
constructor(options = {}) { | ||
const { context = {}, schema } = options; | ||
|
||
if (!schema || !Array.isArray(schema?.components)) { | ||
throw new Error('Invalid schema'); | ||
} | ||
|
||
const parsedSchema = schema.components.reduce((acc, component) => { | ||
const { id, value } = component; | ||
|
||
return { ...acc, [id]: value }; | ||
}, {}); | ||
|
||
this.initialContext = context; | ||
this.context = { | ||
...context, | ||
...parsedSchema, | ||
}; | ||
this.schema = schema; | ||
} | ||
|
||
parseSchema(schema, context) { | ||
const components = []; | ||
|
||
schema.components.forEach((component) => { | ||
const { type, key, ...rest } = component; | ||
const hideProperty = get(component, ['conditional', 'hide']); | ||
|
||
if (hideProperty !== undefined && evaluate(hideProperty.replace(/^=/, ''), context)) { | ||
return; | ||
} | ||
|
||
if (type === 'textfield') { | ||
components.push({ | ||
type, | ||
key, | ||
value: evaluate(key, context), | ||
...rest, | ||
}); | ||
} | ||
|
||
if (type === 'checkbox') { | ||
components.push({ | ||
type, | ||
key, | ||
value: evaluate(key, context), | ||
...rest, | ||
}); | ||
} | ||
}); | ||
|
||
return components; | ||
} | ||
|
||
subscribe(fieldPath, callback) { | ||
const field = get(this.schema.components, fieldPath); | ||
|
||
if (!field) { | ||
throw new Error(`Field ${fieldPath} not found`); | ||
} | ||
|
||
if (!this.subscribers.has(fieldPath)) { | ||
this.subscribers.set(fieldPath, []); | ||
} | ||
|
||
this.subscribers.get(fieldPath).push(callback); | ||
} | ||
|
||
unsubscribe(fieldPath, callback) { | ||
const field = get(this.schema.components, fieldPath); | ||
|
||
if (!field) { | ||
throw new Error(`Field ${fieldPath} not found`); | ||
} | ||
|
||
if (!this.subscribers.has(fieldPath)) { | ||
return; | ||
} | ||
|
||
const subscribers = this.subscribers.get(fieldPath); | ||
|
||
subscribers.splice(subscribers.indexOf(callback), 1); | ||
} | ||
|
||
change(fieldPath, value) { | ||
const field = get(this.schema.components, fieldPath); | ||
|
||
if (!field) { | ||
throw new Error(`Field ${fieldPath} not found`); | ||
} | ||
|
||
field.value = value; | ||
|
||
this.subscribers.forEach((subscribers, fieldPath) => { | ||
if (fieldPath === [field.id].toString()) { | ||
console.log('called', fieldPath); | ||
subscribers.forEach((callback) => { | ||
callback(field); | ||
}); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
export { Core }; |
80 changes: 80 additions & 0 deletions
80
packages/form-js-viewer-core/src/form-js-viewer-preact.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { createContext } from 'preact'; | ||
import { useContext, useEffect, useState } from 'preact/hooks'; | ||
import { Core } from './form-js-viewer-core'; | ||
import { get } from 'min-dash'; | ||
|
||
const FormContext = createContext(null); | ||
|
||
function useField(fieldPath) { | ||
const form = useContext(FormContext); | ||
const [field, setField] = useState(get(form.schema.components, fieldPath)); | ||
|
||
if (!form || !field) { | ||
throw new Error('Form not initialized'); | ||
} | ||
|
||
useEffect(() => { | ||
const subscriber = (field) => { | ||
setField(field); | ||
}; | ||
|
||
form.subscribe(fieldPath.toString(), subscriber); | ||
|
||
return () => { | ||
form.unsubscribe(fieldPath.toString(), subscriber); | ||
}; | ||
}, [fieldPath, form]); | ||
|
||
return field; | ||
} | ||
|
||
function Form(props = {}) { | ||
const { context, schema } = props; | ||
|
||
return ( | ||
<FormContext.Provider value={new Core({ context, schema })}> | ||
<Components /> | ||
</FormContext.Provider> | ||
); | ||
} | ||
|
||
function Components(props = {}) { | ||
const form = useContext(FormContext); | ||
|
||
return ( | ||
<> | ||
{form.schema.components.map((component, index) => ( | ||
<Field fieldPath={[index]} /> | ||
))} | ||
</> | ||
); | ||
} | ||
|
||
function Field(props = {}) { | ||
const field = useField(props.fieldPath); | ||
|
||
if (field.type === 'textfield') { | ||
return ( | ||
<Textfield | ||
value={field.value} | ||
onChange={(event) => { | ||
field.change(props.fieldPath, event.target.value); | ||
}} | ||
/> | ||
); | ||
} | ||
|
||
if (field.type === 'checkbox') { | ||
return <input type="checkbox" checked={field.value} />; | ||
} | ||
|
||
return <>{field}</>; | ||
} | ||
|
||
function Textfield(props = {}) { | ||
const { value } = props; | ||
|
||
return <input value={value} />; | ||
} | ||
|
||
export { Form, useField }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { render } from 'preact'; | ||
import { Form } from './form-js-viewer-preact'; | ||
|
||
function renderForm(options = {}) { | ||
const { container, context, schema } = options; | ||
|
||
if (container === null) { | ||
return; | ||
} | ||
|
||
console.log({ context, schema }); | ||
|
||
render(<Form schema={schema} context={context} />, container); | ||
} | ||
|
||
export { renderForm }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
function foo() { | ||
return 'foo'; | ||
} | ||
|
||
export { foo }; | ||
export { Core } from './form-js-viewer-core'; | ||
export { renderForm } from './form-js-viewer'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters