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

Develop #641

Merged
merged 51 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
acd27f3
wip: move stripeplan to org level
iandjx Dec 11, 2024
6d7d473
Merge branch 'develop' into stripe-plan-org-level
iandjx Dec 11, 2024
50e0e73
Update stripe controller to read/write org stripeplan
iandjx Dec 11, 2024
bbe127d
fetch stripe data from org
iandjx Dec 11, 2024
9e65c2d
use res.locals.account.stripe to get stripecustomerid
iandjx Dec 11, 2024
9102ecb
remove stripe related functions in account.ts
iandjx Dec 11, 2024
2c7a730
Update middlewares and controllers to use org for stripe object
iandjx Dec 11, 2024
4490acb
add migration script
iandjx Dec 13, 2024
ea0a36a
Merge pull request #639 from rnadigital/stripe-plan-org-level
ragyabraham Dec 13, 2024
06cc4fc
implement new connections page
iandjx Dec 19, 2024
fdc715a
use zustand for managing connections state
iandjx Dec 20, 2024
9d6fd2c
display datasource name
iandjx Dec 21, 2024
5282320
add add page
iandjx Dec 22, 2024
2e9917c
Use zustand for add connections page
iandjx Dec 23, 2024
d1e2b51
Replace context with zustand store
iandjx Dec 24, 2024
2ec31b2
Keep old streamslist implementation for legacy code
iandjx Dec 24, 2024
7c9bc82
align sync button
iandjx Dec 24, 2024
c51fc08
On click new connection direct to collections/add
iandjx Dec 24, 2024
917f3f6
wip implement sidebar
iandjx Dec 24, 2024
e953754
Refactor orgselector
iandjx Dec 24, 2024
b77f3c0
add gradient to mobile sidebar
iandjx Dec 26, 2024
2d8d712
update trial nag design
iandjx Dec 27, 2024
55c9789
remove console logs
iandjx Dec 27, 2024
e85e7c1
copy over agent avatar component to new layout
iandjx Dec 27, 2024
60e8a23
Add select agent logic when creating app
iandjx Dec 29, 2024
f18b183
fix search and checkbox in multiselect dialog
iandjx Dec 30, 2024
556a8e2
convert variable modal to use shadcn
iandjx Dec 30, 2024
e636f8d
enable agent creation using agent create sheet
iandjx Dec 30, 2024
5f0c560
Close agent sheet on agent creation and set new agent as selected agent
iandjx Dec 30, 2024
514322b
Add app post for new apps
iandjx Dec 30, 2024
c6cfe86
enable app creation and launch
iandjx Dec 31, 2024
c60d7a9
Update agent page design
iandjx Dec 31, 2024
e94abce
Implement add new tool logic for new design
iandjx Jan 1, 2025
0db579d
On tool install display tool to my tools
iandjx Jan 2, 2025
052837c
Add description property to variable
iandjx Jan 2, 2025
fa8749d
allow description update
iandjx Jan 3, 2025
a56092d
test task component
iandjx Jan 3, 2025
27d786c
update styling of task flow
iandjx Jan 3, 2025
429e0c9
Allow display of task modal creation
iandjx Jan 4, 2025
96bad8d
allow task deletion from flow
iandjx Jan 4, 2025
1c801a5
set taskstate on taskflow change
iandjx Jan 4, 2025
2fa4353
update start button design
iandjx Jan 4, 2025
dd658a2
Add agent selection when creating process app
iandjx Jan 5, 2025
00d7ea6
add process app config
iandjx Jan 5, 2025
4e6b554
enable app creation on new design
iandjx Jan 6, 2025
7a5f0ee
Add new task sheet
iandjx Jan 7, 2025
b120078
Update task sheet styling to match figma
iandjx Jan 7, 2025
54cf5a2
implement several changes
iandjx Feb 8, 2025
eb98427
get csrf value from account context
iandjx Feb 8, 2025
058d3fa
Merge pull request #640 from rnadigital/new-design
ragyabraham Feb 10, 2025
4297fb0
Merge branch 'master' into develop
ragyabraham Feb 10, 2025
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
6 changes: 4 additions & 2 deletions webapp/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"src/**/*.test.ts"
],
"extends": [
"next/core-web-vitals",
// "next/core-web-vitals",
"plugin:prettier/recommended"
],
"parserOptions": {
Expand All @@ -21,6 +21,8 @@
"react-hooks/exhaustive-deps": "off",
"@next/next/no-img-element": "off",
"import/no-anonymous-default-export": "off",
"jsx-a11y/alt-text": "off"
"jsx-a11y/alt-text": "off",
"prettier/prettier": ["error", { "bracketSameLine": true }]

}
}
3 changes: 2 additions & 1 deletion webapp/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 100,
"quoteProps": "as-needed"
"quoteProps": "as-needed",
"jsxBracketSameLine": true
}
Binary file added webapp/.yarn/install-state.gz
Binary file not shown.
21 changes: 21 additions & 0 deletions webapp/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/pages/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "/modules/components",
"utils": "/modules/lib/utils",
"ui": "/modules/components/ui",
"lib": "modules/lib",
"hooks": "modules/hooks"
},
"iconLibrary": "lucide"
}
Loading
Loading