il3ven
3d45e340ae
disable row selection for array sub table page
...
Row selection has been disabled because bulk delete functionality
cannot work for array sub table according to the current implementation.
Bulk delete problem:
Suppose we have an array with values `[a, b, c]`. Suppose, the indexes
to be removed are [1, 2]. The UI asks firebase function to remove index
1. After 1, the UI asks index 2 to be deleted but index 2 doesn't exist.
After deletion of index 1, the array is `[a, c]`.
2023-08-22 19:46:11 +00:00
il3ven
9b5c2e34b8
fix re-ordering of columns when row selection is enabled
2023-08-22 19:46:11 +00:00
il3ven
febe46c14b
fix ui issue when a column is frozen
2023-08-22 19:46:11 +00:00
il3ven
9ca59c8762
re-add memo and headerGroup as per suggestion
2023-08-22 19:46:11 +00:00
Vaibhav C
17369b47cf
add support for bulk deletion of rows
2023-08-22 19:46:11 +00:00
il3ven
1e07684df2
fix a bug with clear button
...
it shouldn't be disabled if tableFilters are present but userFilters
are active.
2023-08-22 19:43:41 +00:00
Rishi Raj Jain
b28c754299
fix: button conditional
2023-08-22 02:37:24 +05:30
Rishi Raj Jain
8f9fb7e052
Update index.tsx
2023-08-22 02:16:13 +05:30
Rishi Raj Jain
6d7d85392c
Update src/components/fields/Array/index.tsx
...
Co-authored-by: il3ven <vaibhavchanana@yahoo.co.in >
2023-08-22 02:13:58 +05:30
il3ven
66459bb690
remove "" as an operator
2023-08-21 09:57:28 +00:00
il3ven
91f2a4822f
improvements such as:
...
1. Use generateId function instead of Math.random()
2. Remove `tablePage` from useEffect in `Table.tsx`
Upon an error in the firebase query this was causing an infinite loop
to increase page number.
3. Change the logic of when the clear and disable button are shown/disabled
The existing logic was preventing certain tasks to be performed.
For example, deleting all filters individually was disabling both apply
and clear all button. As a user I expect to delete all filters and
click on the apply button to save.
2023-08-21 09:42:31 +00:00
Manmeet
62340535a1
fix errors related to multi filters support
2023-08-21 09:42:31 +00:00
Manmeet
4dd72602cf
fix Argument of type QueryConstraint is not assignable to type QueryFilterConstraint
2023-08-21 09:42:31 +00:00
Manmeet
b792b00384
add is empty and is not empty operators
2023-08-21 09:42:31 +00:00
Manmeet
4513ac1e22
refractor code and fix bugs related to multi filters
2023-08-21 09:42:31 +00:00
Manmeet
48dd018b32
add id to each query
2023-08-21 09:42:31 +00:00
Manmeet
f7fdf57c36
add multi filters support
2023-08-21 09:42:31 +00:00
il3ven
e94daab985
Revert "Merge pull request #1256 from staticGuru/filter_url"
...
This reverts commit 6819bf1f5f , reversing
changes made to 70498bcc05 .
2023-08-21 09:40:57 +00:00
Rishi Raj Jain
cca3e0afc2
Update useFirestoreCollectionWithAtom.ts
2023-08-21 01:46:57 +05:30
Rishi Raj Jain
bf9ae7bd0e
Update index.tsx
2023-08-21 01:46:28 +05:30
Rishi Raj Jain
df6ed6958f
Update index.tsx
2023-08-21 01:46:14 +05:30
Rishi Raj Jain
67a4172b7f
Create Filter.tsx
2023-08-21 01:46:05 +05:30
il3ven
7ca6fe3be6
add <form> tag for handling submit and fix an error
2023-08-20 10:50:23 +00:00
il3ven
ef58d37ed6
show set column width option even if column.resizable is undefined
2023-08-20 10:49:39 +00:00
Vishnu Nithin Reddy
8316e6ac6a
Add comments
2023-08-20 13:11:00 +05:30
Vishnu Nithin Reddy
e8e9d09894
Use the setColumnSizing method instead; store the entire table in an
...
atom, not just the table headers.
2023-08-20 13:00:25 +05:30
il3ven
b2983f4db8
Merge pull request #1306 from rowyio/feature/code-editor-quick-action-get-secrets
...
Add code editor quick action to get secrets
2023-08-19 23:39:57 +05:30
il3ven
aece2f6c84
update secretsDef in useMonacoCustomizations
...
The enum generated by the previous template string would have had
syntax errors if the secret contained hyphens.
This commit fixes it.
2023-08-19 18:05:43 +00:00
Shams
7ba4bad3de
Merge pull request #1303 from il3ven/11/fix/buildLogsSnack
...
fix bug: minimize `BuildLogsSnack` upon fullscreen
2023-08-16 21:56:31 -07:00
Nithin
3589c568b4
Minor changes
...
- Better component name
- Remove unnecessary map() call
2023-08-07 04:13:32 +05:30
Nithin
693f1fb917
Update on Mouse up instead
...
Performing the update on mouse-down caused this issue where dragging the mouse around after clicking would result in the edge of the column to move along with it. Updating on mouse-up instead avoids this issue.
2023-08-06 18:41:32 +05:30
Nithin
7deb40039d
Add modal to set column width
2023-08-06 13:38:14 +05:30
Nithin
aa8a52c478
Create atom to track active table's headers
2023-08-06 13:36:44 +05:30
Shams
ad218be929
Merge pull request #1364 from rowyio/develop
...
Develop
2023-07-31 02:49:04 -07:00
Shams
776e821260
Merge pull request #1363 from rowyio/fix/webhook-example-code
...
Fix webhooks example code
2023-07-31 02:48:42 -07:00
Bobby Wang
c129592620
replace require with dynamic import syntax in webhook examples
2023-07-31 17:45:10 +08:00
Harini Janakiraman
eef94112d5
Merge pull request #1359 from rowyio/develop
...
Develop
2023-07-26 22:21:20 +10:00
Harini Janakiraman
c8f3d98ca9
Merge pull request #1326 from mnmt7/rich-text-image-option
...
Ability to add images to richtext field
2023-07-18 16:52:07 +10:00
Shams
5dfd6028c8
Merge pull request #1338 from rowyio/develop
...
Develop
2023-07-10 08:24:59 +02:00
Shams
6819bf1f5f
Merge pull request #1256 from staticGuru/filter_url
...
Filter url
2023-07-04 09:40:33 +02:00
Shams
70498bcc05
Merge pull request #1299 from rowyio/fix/collection-name-disallow-dots
...
disallow dots in collection name
2023-07-04 09:39:49 +02:00
Shams
73e6d87b30
Merge pull request #1307 from iamanishroy/fix/airtble-import-column-detection
...
ROWY-1310: Fixed Airtable column detection
2023-07-04 09:39:26 +02:00
Shams
ab87dbe26a
Merge pull request #1302 from rishipurwar1/issue-1284
...
Implement auto import for array subtables
2023-07-04 09:34:58 +02:00
Shams
fe47450f75
Merge pull request #1320 from mnmt7/reference-field-copy-paste
...
Add copy/paste functionality for reference field
2023-07-04 09:34:29 +02:00
Shams
0ec7199431
Merge pull request #1327 from rowyio/fix/create-table-name-glitch
...
fix create table form table name glitches
2023-07-03 18:24:51 +02:00
Shams
3696fa6fe8
Merge pull request #1304 from rowyio/fix/error-toLocaleLowerCase
...
fix toLocaleLowerCase is not a function
2023-07-03 18:23:43 +02:00
Bobby Wang
959fbdb4ca
fix create table form table name glitches
2023-06-28 23:55:31 +08:00
Manmeet
adad91829f
remove unnecessary imports
2023-06-28 03:20:45 +05:30
Manmeet
8e3a388333
add ability to add images to richtext field
2023-06-28 03:01:49 +05:30
Bobby Wang
a0c59e8252
remove console logs
2023-06-26 21:06:10 +10:00