1430 Commits

Author SHA1 Message Date
Shams
071527a959 Merge pull request #1394 from rowyio/feature/code-editor-package-typing
Monaco code editor auto typing
2023-09-07 19:33:03 -07:00
Shams
6cedeb44c0 Merge pull request #1291 from il3ven/issue-809
add support for bulk deletion of rows
2023-09-07 19:30:30 -07:00
il3ven
e53638ca58 Merge branch 'develop' into 11/improve-multi-filters 2023-09-04 18:39:12 +00:00
il3ven
7aed17b5c0 feat: support applied filters as shareable urls
this feature has been re-implemented from PR #1256 because the older PR had
bugs and didn't support multiple filters.
2023-09-04 18:10:56 +00:00
shamsmosowi
a2806a7c31 add copy support to id 2023-09-03 12:36:37 +08:00
Bobby Wang
8445081365 Merge branch 'develop' into feature/code-editor-package-typing
# Conflicts:
#	src/components/CodeEditor/useMonacoCustomizations.ts
#	yarn.lock
2023-08-29 20:19:27 +08:00
il3ven
f087105895 change logic to determine state of checkbox in header row
If there are 1000 rows and we have rendered 100 then select all will
only select 100. In this case, technically all rows in react-table are
selected but we should not show the checked state. It leads to bad UX.
Indermediate would be better.

Also, split the additions of row selection column into a new useMemo. This
ensures that if a row is selected we are only re-calculating the row
selection column and not all.
2023-08-23 18:35:34 +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
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
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
Bobby Wang
c129592620 replace require with dynamic import syntax in webhook examples 2023-07-31 17:45:10 +08: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
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
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
Bobby Wang
f14e77b415 implement secret manager popup 2023-06-26 20:16:27 +10:00