Skip to content

Commit

Permalink
Added Next.js app (#866)
Browse files Browse the repository at this point in the history
* added next.js app

* .

* .

* sandbox_simple - remove complex config

* todo: why complex ?

* doc

* .

* .

* .

* .

* lint fix

* reuse funcs

* serialize export funcs

* render from context

* tmp!!!!

* Revert "tmp!!!!"

This reverts commit 290487a.

* fix sanitizeTree

* .

* wip

* .

* .

* .

* .

* ctx  better shape

* ssr antd

* all components converted to use ctx

* todo: session in cookie is bad

* sid

* test app

* config mixins

* .

* lint fix

* cs ci

* tests fix

* jsx fix

* cs ci fix

* new session approach

* .
.

* .

* .

* patch version

* body len

* node-fetch

* throttle

* Revert "node-fetch"

This reverts commit 6990f0b.

* redis vs file

* lint fix

* redis

* .

* 6.2.0

* readme

* fix onChange 2nd param - return basic config, not extended

* fix compress for []

* readme

* .

* .

* typo

* .

* .

* .

* .

* not working

* sanitizeTree?

* ?

* .

* readme

* tests

* tests

* fix types

* tests

* delete @mui/lab

* applyJsonLogic

* tree funcs

* fixed & added tests

* more tests

* typo

* try to fix
fix time
test1
test2
test3
test4
test5
test6
upd test packages
codecov for pr
.
node 16
codecov
log
.
test
.
enable cache
FIX TESTS
SKIP TEST
Revert "test1"

This reverts commit cdb9a35d0b62c5fa6459b95d2b38357825fa5e51.

* throw

* cov

* .

* ?

* .

* .

* log

* .

* 1111

* clean time

* clean

* lint fix

* upd @mui

* .

* wip #912 todo

* Revert "wip #912 todo"

This reverts commit 62289bd.

* test: can use reversed op

* more doc

* .

* .

* urls

* .
.
.
.
.

* .

* .

* .

* .
  • Loading branch information
ukrbublik authored May 9, 2023
1 parent eeae6b7 commit d0a452c
Show file tree
Hide file tree
Showing 145 changed files with 6,190 additions and 2,904 deletions.
19 changes: 19 additions & 0 deletions .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"packages": [
"packages/core",
"packages/ui",
"packages/antd",
"packages/mui",
"packages/material",
"packages/bootstrap",
"packages/fluent"
],
"sandboxes": [
"/packages/examples",
"/packages/sandbox",
"/packages/sandbox_simple",
"/packages/sandbox_next"
],
"node": "18",
"buildCommand": "build-libs"
}
1 change: 1 addition & 0 deletions .deepsource.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ test_patterns = ["tests/**"]
exclude_patterns = [
"packages/sandbox/**",
"packages/sandbox_simple/**",
"packages/sandbox_next/**",
"scripts/**"
]

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codecov-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: CodeCov Report

on:
release:
types: [published]
types: [ published ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ coverage/
junit/
/package/
*.log
.next/

package-lock.json
yarn.lock
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ coverage/
junit/
/package/
*.log
.next/

package-lock.json
yarn.lock
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
- 6.3.0
- Allow saving and loading config from server (PR #866) (issue #817)
- New utils: `compressConfig()`, `decompressConfig()`
- New `settings.useConfigCompress`
- Config now has `ctx` property
- Added new test app `sandbox_next` to demonstrate new server-side features
- Export utils (like `mongoFormatOp1`, `mongoFormatOp2`) in `CoreConfig.ctx.utils` (PR #866) (issue #890)
- 2nd parameter of `onChange` callback now equals original config, not extended config (PR #866) (issue #364)
- 6.2.0
- Fixed type `Config`: should have render settings like `renderSize` (PR #909) (issue #879)
- Fixed type for `renderBeforeWidget`: `RuleProps` instead of wrong `FieldProps` (PR #909) (issue #879)
Expand Down
Loading

3 comments on commit d0a452c

@vercel
Copy link

@vercel vercel bot commented on d0a452c May 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d0a452c May 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d0a452c May 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.