1649 Commits

Author SHA1 Message Date
Yanzhen Yu
0eb9f2bdb8 fix: debug params 2022-09-05 17:14:05 +08:00
Yanzhen Yu
bfc3aeb288 chore: trigger build 2022-09-05 14:57:24 +08:00
Yanzhen Yu
1f65bcba1e fix(runtime): fix #590, use an init set to check first time render
This patch use a more solid way to check init state setup, instead of render count.
2022-09-05 14:37:32 +08:00
MrWindlike
6b8dce1be5 fix(slot): fix fallback disappearing when remounted 2022-09-05 10:00:20 +08:00
Yanzhen Yu
4e4e835325 fix: skip non validate field 2022-09-05 01:56:46 +08:00
Yanzhen Yu
72c9dcf528 fix(runtime): fix #590, use an init set to check first time render
This patch use a more solid way to check init state setup, instead of render count.
2022-09-04 23:11:40 +08:00
Bowen Tan
35835eef11 chore(*): publish
- @sunmao-ui/arco-lib@0.3.5-alpha.4
 - @sunmao-ui/chakra-ui-lib@0.5.5-alpha.4
 - @sunmao-ui/editor-sdk@0.3.5-alpha.4
 - @sunmao-ui/editor@0.7.5-alpha.4
 - @sunmao-ui/runtime@0.7.4-alpha.3
@sunmao-ui/arco-lib@0.3.5-alpha.4 @sunmao-ui/chakra-ui-lib@0.5.5-alpha.4 @sunmao-ui/editor-sdk@0.3.5-alpha.4 @sunmao-ui/editor@0.7.5-alpha.4 @sunmao-ui/runtime@0.7.4-alpha.3
2022-08-26 17:24:50 +08:00
Bowen Tan
4f301b7db7 Merge branch 'develop' into publish
* develop:
  fix(StateManager): fix the can't deep eval the nest array issues
  feat(runtime): add style for ErrorBoundary
  feat(runtime): add ErrorBoundary to ImplWrapper
  refactor(runtime): add slot receiver to app services
  refactor(runtime): temporary hack the list component with the new slot system
  refactor(runtime): remove slot props from event trait
  perf(runtime): implement slot receiver to avoid of re-render when passing fallback elements
  perf(runtime): refactor the slot's props and fallback implementation
  fix(SpaceWidget): fix padding display misalignment
2022-08-26 17:22:59 +08:00
yz-yu
e05407f653
Merge pull request #577 from smartxworks/feat/runtime-error-boundary
feat(runtime): add ErrorBoundary to ImplWrapper
2022-08-26 13:01:22 +08:00
yz-yu
a17f92aaa3
Merge pull request #578 from smartxworks/fix/windlike-dev
fix(StateManager): fix the can't deep eval the nest array issues
2022-08-26 13:01:04 +08:00
MrWindlike
c72e29b467 fix(StateManager): fix the can't deep eval the nest array issues 2022-08-26 11:38:19 +08:00
Bowen Tan
7ea0acea20 feat(runtime): add style for ErrorBoundary 2022-08-25 11:02:49 +08:00
Bowen Tan
5d2a64f575 feat(runtime): add ErrorBoundary to ImplWrapper 2022-08-25 10:48:04 +08:00
tanbowensg
dcd7dd6424
Merge pull request #553 from smartxworks/slot-fallback
use the new data path to pass slot props and fallback elements
2022-08-23 18:28:58 +08:00
Yanzhen Yu
5b01477c62 refactor(runtime): add slot receiver to app services 2022-08-23 10:41:04 +08:00
Yanzhen Yu
1c505334c7 refactor(runtime): temporary hack the list component with the new slot system 2022-08-23 10:28:08 +08:00
Yanzhen Yu
b1012217ee refactor(runtime): remove slot props from event trait 2022-08-23 10:28:08 +08:00
Yanzhen Yu
ef2669992f perf(runtime): implement slot receiver to avoid of re-render when passing fallback elements
The slot receiver is a magic hole of sunmao's runtime.
In sunmao, we support pass props and fallback elements to a slot.
But if we pass them as React component's props,
it will cause re-render since most of them could not use a shallow equal checker.

Also, in sunmao's runtime, we are not using a traditional React render mechanism.
Instead, we keep most of the components not be rendered and only subscribe to related state updates.

To continue with our design,
we need a way to render slot's fallback elements without passing the elements as props.
This is where the slot receiver comes.
It contains a map and an event emitter, when a slot need render,
it will attach the fallback elements to the map and send a signal via the emitter.
When the Receiver component receive a signal, it will force render the fallback elements.

related: #388
2022-08-23 10:28:06 +08:00
Yanzhen Yu
b5df69f21c perf(runtime): refactor the slot's props and fallback implementation
The main idea of this patch is to set slot props to a reactive store
instead of passing them as React props to the slot children elements.

Same as other state management in sunmao, the component will subscribe
to the slot store to get the latest value of slot props.

Same as component id, we need a way to identify every slot props in the store.
So we add a new parameter key to the `getSlot` function,
where [component id, slot name, key] will be a unique identifier.

Another challenge is to subscribe the slot store in a efficient way.
Currently we are using vue's reactivity system, which need set `deep: true`
to observe multiple value during effect.

By setting `deep: true`, if we write code like `const $slot = slotStore[slotKey]`,
it will subscribe all the sub-fields of this slot key be cause we 'access' the property.

The solution is to implement a redirector Proxy.
With the redirector, expression `$slot.a.b` will be redirect to `slotStore[slotKey].a.b`.

related to: #388
2022-08-23 10:26:18 +08:00
tanbowensg
dd5aae9932
Merge pull request #574 from smartxworks/fix/dry
fix(SpaceWidget): fix padding display misalignment
2022-08-19 11:14:17 +08:00
Bowen Tan
40b662db94 chore(*): publish
- @sunmao-ui/arco-lib@0.3.5-alpha.3
 - @sunmao-ui/chakra-ui-lib@0.5.5-alpha.3
 - @sunmao-ui/core@0.7.4-alpha.1
 - @sunmao-ui/editor-sdk@0.3.5-alpha.3
 - @sunmao-ui/editor@0.7.5-alpha.3
 - @sunmao-ui/runtime@0.7.4-alpha.2
 - @sunmao-ui/shared@0.2.4-alpha.2
@sunmao-ui/arco-lib@0.3.5-alpha.3 @sunmao-ui/chakra-ui-lib@0.5.5-alpha.3 @sunmao-ui/core@0.7.4-alpha.1 @sunmao-ui/editor-sdk@0.3.5-alpha.3 @sunmao-ui/editor@0.7.5-alpha.3 @sunmao-ui/runtime@0.7.4-alpha.2 @sunmao-ui/shared@0.2.4-alpha.2
2022-08-18 14:53:50 +08:00
Bowen Tan
edbf71ffee Merge branch 'develop' into publish
* develop:
  fix: fix selecting component would change the properties' values issue
  refactor: remove the shared package from core
  fix: fix the `exampleProperties` type errors
  refactor(runtime): remove full import of lodash
  fix: fix clicking outside can't close the popover widget
  fix(PopoverWidget): compatible with the React 16
  feat(Select): add title to select option
  fix(mask): fix wrong mask position
  fix(stateManager): don't console.error expression errors by default
  feat(booleanWidget): auto convert non-boolean value to boolean
  feat(numberWidget): auto convert non-number value to number
  feat(expressionWidget): don't auto convert string to other type
  feat(stateManager): don't auto convert string to number or boolean
  feat(ArrayWidget): arrayWidget will try to eval value before render it
2022-08-18 14:47:33 +08:00
xzdry
cd71cf74d2 fix(SpaceWidget): fix padding display misalignment 2022-08-17 17:50:40 +08:00
tanbowensg
bd451fec39
Merge pull request #573 from smartxworks/fix/windlike-dev
fix: fix selecting component would change the properties' values issue
2022-08-17 10:30:42 +08:00
MrWindlike
a3f0c24e48 fix: fix selecting component would change the properties' values issue 2022-08-17 10:09:24 +08:00
tanbowensg
87074162c9
Merge pull request #568 from smartxworks/fix/windlike-dev
fix: fix the `exampleProperties` type errors
2022-08-16 15:39:06 +08:00
MrWindlike
c718e0ca22 refactor: remove the shared package from core 2022-08-16 14:53:41 +08:00
yz-yu
3094e7e90c
Merge pull request #570 from smartxworks/build/lodash
refactor(runtime): remove full import of lodash
2022-08-16 11:57:51 +08:00
MrWindlike
5216fd1e3c fix: fix the exampleProperties type errors 2022-08-16 11:52:16 +08:00
Bowen Tan
789058e1e3 refactor(runtime): remove full import of lodash 2022-08-15 18:30:04 +08:00
yz-yu
1ecbb7ff64
Merge pull request #567 from smartxworks/fix/windlike-dev
fix: fix clicking outside can't close the popover widget
2022-08-12 10:57:40 +08:00
MrWindlike
08bec57287 fix: fix clicking outside can't close the popover widget
when clicking the outside node which would stop propagation, it can't close the popover widget
2022-08-11 10:28:00 +08:00
tanbowensg
dc9c921838
Merge pull request #565 from smartxworks/arco/select
feat(Select): add title to select option
2022-08-10 10:33:59 +08:00
yz-yu
97ee05f0fd
Merge pull request #566 from smartxworks/fix/windlike-dev
fix(PopoverWidget): compatible with the React 16
2022-08-09 09:50:51 +08:00
MrWindlike
01b1ba14d4 fix(PopoverWidget): compatible with the React 16 2022-08-09 09:31:52 +08:00
yz-yu
9e80727540
Merge pull request #564 from smartxworks/fix/mask
fix(mask): fix wrong mask position
2022-08-08 21:59:17 +08:00
tanbowensg
15c9176f68
Merge pull request #559 from smartxworks/fix/expression-problems
Refactor some expressions logics
2022-08-08 18:01:35 +08:00
xzdry
55dd952d0e feat(Select): add title to select option 2022-08-08 17:56:17 +08:00
Bowen Tan
41c0d0e7ae fix(mask): fix wrong mask position 2022-08-08 14:37:01 +08:00
Yanzhen Yu
f95c909ecf Publish
- @sunmao-ui/arco-lib@0.3.5-alpha.2
 - @sunmao-ui/chakra-ui-lib@0.5.5-alpha.2
 - @sunmao-ui/editor-sdk@0.3.5-alpha.2
 - @sunmao-ui/editor@0.7.5-alpha.2
@sunmao-ui/arco-lib@0.3.5-alpha.2 @sunmao-ui/chakra-ui-lib@0.5.5-alpha.2 @sunmao-ui/editor-sdk@0.3.5-alpha.2 @sunmao-ui/editor@0.7.5-alpha.2
2022-08-05 14:20:59 +08:00
yz-yu
e403525865
Merge pull request #561 from smartxworks/develop
develop -> publish
2022-08-05 14:10:05 +08:00
yz-yu
6304215a8b
Merge pull request #560 from smartxworks/fix/mask-container-resize
observe mask container resize
2022-08-04 18:58:47 +08:00
Bowen Tan
7b47bbe475 fix(mask): observe mask container resize
Mask container size will change when left panel resizes.
So when it happens, the maskContainerRect needs to update.
2022-08-04 14:12:50 +08:00
yz-yu
d1a147f118
Merge pull request #552 from smartxworks/feat/windlike-dev
feat(RecordWidget): allow use the widget for object
2022-08-03 08:29:41 +08:00
Bowen Tan
961a657aa4 chore(*): publish
- @sunmao-ui/arco-lib@0.3.5-alpha.1
 - @sunmao-ui/chakra-ui-lib@0.5.5-alpha.1
 - @sunmao-ui/editor-sdk@0.3.5-alpha.1
 - @sunmao-ui/editor@0.7.5-alpha.1
 - @sunmao-ui/runtime@0.7.4-alpha.1
 - @sunmao-ui/shared@0.2.4-alpha.1
@sunmao-ui/arco-lib@0.3.5-alpha.1 @sunmao-ui/chakra-ui-lib@0.5.5-alpha.1 @sunmao-ui/editor-sdk@0.3.5-alpha.1 @sunmao-ui/editor@0.7.5-alpha.1 @sunmao-ui/runtime@0.7.4-alpha.1 @sunmao-ui/shared@0.2.4-alpha.1
2022-08-02 18:23:45 +08:00
Bowen Tan
133c590343 Merge branch 'develop' into publish
* develop: (36 commits)
  fix(stateManager): add toRaw in maskEval move toRaw logic to maskEval to make sure component will not receive Proxy
  fix(editor): add a dependency array on a effect hook
  fix(editor-sdk): remove a wrong attribute
  fix(editor): fix the bug of chakra/checkbox with correct way
  feat: watch the expression string change
  chore: change the commit rules
  refactor: let the \`deepEval\` support eval the expression string
  fix(editor): fix a bug which will cause the mask of chakra-ui/checkbox render incorrectly
  fix(validator): ignore error if event trait parameter is expression
  fix(validator): don't count keys of array destructuring assignment in property refs
  fix(validator): don't count keys of object destructuring assignment in property refs
  fix(validator): fieldModel should not count object keys in property ref
  fix(validator): fix the bug that property reference is wrong in complex expression
  chore(validator): remove a log-line
  chore(validator): comment out a log-line
  fix(validator): if a object json schema does not have specific properties, treat it as any type
  fix(validator): validator will crash when it fails to find util method
  fix(validator): allow using question mask in expression
  fix(ImplWrapper): deep compare slotContext in memo
  fix(editor): import chakra arco widgets correctly
  ...
2022-08-02 18:22:48 +08:00
Bowen Tan
28e0a752e0 fix(stateManager): don't console.error expression errors by default 2022-08-02 17:39:39 +08:00
Bowen Tan
f7a68d2447 feat(booleanWidget): auto convert non-boolean value to boolean 2022-08-02 17:38:18 +08:00
Bowen Tan
efe6865ecc feat(numberWidget): auto convert non-number value to number 2022-08-02 17:38:18 +08:00
Bowen Tan
2e1f012698 feat(expressionWidget): don't auto convert string to other type 2022-08-02 17:38:18 +08:00