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

Make queryUI on ViewV2 something you can write on its own, and query gets filled in for you #14818

Merged
merged 27 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
31c0ed6
wip
samwho Oct 16, 2024
cb41861
Making progress toward testing buildCondition and friends.
samwho Oct 17, 2024
17e9468
Get existing tests passing.
samwho Oct 17, 2024
b3b7069
Merge branch 'master' of github.com:budibase/budibase into queryui-de…
samwho Oct 17, 2024
714029b
Making more progress on testing view searching.
samwho Oct 17, 2024
b7979f4
Refactor SearchFilterGroup type to be less verbose and more clearly n…
samwho Oct 18, 2024
3981cec
Remove buildQueryLegacy
samwho Oct 18, 2024
0fce17c
Fix allOr for everything except SQS.
samwho Oct 18, 2024
f53e68f
Fix allOr test
samwho Oct 18, 2024
4b6a666
More view search tests.
samwho Oct 18, 2024
80875fd
More tests.
samwho Oct 18, 2024
915202b
More tests.
samwho Oct 21, 2024
0c6afda
Merge branch 'master' of github.com:budibase/budibase into queryui-de…
samwho Oct 21, 2024
064721c
Make sure you can still create views with a query but no queryUI
samwho Oct 21, 2024
205d6d0
Re-enable tests.
samwho Oct 21, 2024
67b814a
Yet more tests.
samwho Oct 21, 2024
4395654
Fix lint.
samwho Oct 21, 2024
d0642fb
Merge master.
samwho Oct 21, 2024
f0fd81b
Update pro reference.
samwho Oct 21, 2024
4947733
Fix broken frontend test.
samwho Oct 21, 2024
50c3f2c
Merge branches 'queryui-default' and 'master' of github.com:budibase/…
samwho Oct 22, 2024
2cd3ab6
Respond to PR comments.
samwho Oct 22, 2024
d56ca8e
Merge branches 'master' and 'queryui-default' of github.com:budibase/…
samwho Oct 23, 2024
6f4e1dd
Respond to PR comment.
samwho Oct 23, 2024
da2b2e5
Merge v3-ui.
samwho Oct 23, 2024
17c9d9f
Merge branch 'v3-ui' into queryui-default
samwho Oct 23, 2024
ff48773
Update frontend type names to match changes I've made.
samwho Oct 23, 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
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ describe("Export Modal", () => {
props: propsCfg,
})

expect(propsCfg.filters[0].field).toBe("1:Cost")

expect(screen.getByTestId("filters-applied")).toBeVisible()
expect(screen.getByTestId("filters-applied").textContent).toBe(
"Filters applied"
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/api/routes/tests/search.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ describe.each([
})
})

describe.each([FieldType.ARRAY, FieldType.OPTIONS])("%s", () => {
describe("arrays", () => {
adrinr marked this conversation as resolved.
Show resolved Hide resolved
beforeAll(async () => {
tableOrViewId = await createTableOrView({
numbers: {
Expand Down
Loading
Loading