Skip to content
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

activity #282

Merged
merged 27 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9751ee9
feat: save oneline feature design model
cubxxw Jun 7, 2024
279b3c1
feat: optimize engineering construction
cubxxw Jun 7, 2024
0f3e222
feat: optimize builder
cubxxw Jun 7, 2024
3671dfc
fix: remove idea catalogue
cubxxw Jun 7, 2024
21bb8e5
feat: optimize timeline data catalogue
cubxxw Jun 7, 2024
313675d
feat: optimize projects
cubxxw Jun 10, 2024
8bd2cd1
feat: Fix some overlooked errors
cubxxw Jun 11, 2024
f05ff0d
feat: go use builder wrapfunc
cubxxw Jun 11, 2024
07f32a5
feat: add example test
cubxxw Jun 11, 2024
99f189d
feat: review code
cubxxw Jun 12, 2024
3d32ae8
feat: add deleteNoteAction feat
cubxxw Jun 13, 2024
7425988
feat: add node action
cubxxw Jun 13, 2024
e06906f
feat: Fully merged note and activity, database insert null error
cubxxw Jun 17, 2024
fa2e228
fix: Remove the ActivityLogInterface interface and update the corresp…
cubxxw Jun 17, 2024
5bbdd00
feat: the interface was removed, and the details and code were optimized
cubxxw Jun 18, 2024
cb1dff2
feat: save presets utils
cubxxw Jun 19, 2024
8eb64bb
fix: activity debug test
cubxxw Jun 19, 2024
6d6a8c9
save log builder test:
cubxxw Jun 19, 2024
485ff63
fix: fix all util test bug
cubxxw Jun 19, 2024
b5a2b3f
Merge branch 'main' into feat/oneline-activity
sunfmin Jun 25, 2024
3313191
Remove many not need funcs
sunfmin Jun 25, 2024
ec3e7bb
Merge branch 'main' into feat/oneline-activity
sunfmin Jun 26, 2024
da40ddd
Can translate now
sunfmin Jun 27, 2024
97011d5
Remove not used files
sunfmin Jun 27, 2024
c3e80a7
Merge branch 'main' into feat/oneline-activity
sunfmin Jul 5, 2024
2171687
Update main, clean up and make all tests pass
sunfmin Jul 5, 2024
fb7fb99
Merge branch 'main' into feat/oneline-activity
sunfmin Jul 5, 2024
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
File renamed without changes.
416 changes: 414 additions & 2 deletions .gitignore

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
- It maximize the reusability of Components. since it uses Go to write components, You can abstract component very easy, and use component from a third party Go package is also like using normal Go packages.

## Documentation

[Documentation](https://docs.qor5.com/)
2 changes: 1 addition & 1 deletion activity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
activity.RegisterModel(presetModel).AddIgnoredFields("UpdateAt") // will ignore the UpdateAt field when recording activity log for update operation
activity.RegisterModel(presetModel).AddTypeHanders(
time.Time{},
func(old, now interface{}, prefixField string) []Diff {
func(old, now any, prefixField string) []Diff {
oldString := old.(time.Time).Format(time.RFC3339)
nowString := now.(time.Time).Format(time.RFC3339)
if oldString != nowString {
Expand Down
Loading
Loading