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

(frontend)[Age 1343]: Implementation home view onboarding #2313

Merged
merged 43 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
09304be
fix(frontend): changed sidebar menu title to app management
bekossy Nov 26, 2024
9500202
feat(frontend): implemented new app management view
bekossy Nov 27, 2024
dc4433a
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Nov 27, 2024
c358fa9
fix(frontend): cleanup and improved functionality
bekossy Nov 27, 2024
3bb32c2
fix(frontend): removed outdated AppSelector files
bekossy Nov 27, 2024
083159e
feat(frontend): added SetupTracing modal
bekossy Nov 27, 2024
5d55812
style(frontend): added ibm plex mono fontFamily to command code
bekossy Nov 27, 2024
070423c
fix(frontend): dynamically imported Observability dashboard section
bekossy Nov 27, 2024
82012a9
fix(frontend): improved rag demo app image resolution
bekossy Nov 27, 2024
d08a77c
fix(frontend): fixed rag demo image height
bekossy Nov 27, 2024
30a01f1
feat(frontend): added custom hook to handle pagination
bekossy Nov 29, 2024
bba7655
feat(frontend): added empty app view component
bekossy Nov 29, 2024
a8f444c
fix(frontend): fixed NoResultsFound component styles
bekossy Nov 29, 2024
e809f6b
feat(frontend): implemented actions (edit and delete)
bekossy Nov 29, 2024
201ad61
feat(frontend): added Tooltip to cards
bekossy Nov 29, 2024
c99e904
fix(frontend): updated view for loading and error states
bekossy Nov 29, 2024
5437b51
feat(frontend): improved view functionality
bekossy Nov 29, 2024
d20ab0b
bug fix(frontend)
bekossy Nov 29, 2024
ec2954c
refactor(frontend): rendered code instructions using dynamic mapping
bekossy Nov 29, 2024
20f300d
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Nov 30, 2024
ccd131b
fix(frontend): setup generate api key logic
bekossy Dec 1, 2024
ffa4428
Merge branch 'AGE-1343/-implement-home-view-onboarding' of https://gi…
bekossy Dec 1, 2024
8f702bd
minor fix(frontend)
bekossy Dec 1, 2024
b3660b4
test(frontend): fixed failing tests
bekossy Dec 2, 2024
c1e1429
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Dec 2, 2024
ac4da83
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Dec 5, 2024
dee5077
fix(frontend): moved demo app section to cloud
bekossy Dec 5, 2024
2cde7e1
fix(frontend): updated code blocks in setup trace modal
bekossy Dec 5, 2024
9c31262
fix(frontend): moved ApiKey input component to cloud
bekossy Dec 5, 2024
ef49410
fix(frontend): updated Project response type and cleaned up code
bekossy Dec 5, 2024
b29471b
fix(frontend): added href links
bekossy Dec 5, 2024
14dd924
feat(frontend): added banner to display user is viewing demo
bekossy Dec 5, 2024
09d2def
Merge branch 'AGE-1343/-implement-home-view-onboarding' of github.com…
bekossy Dec 5, 2024
f1c26ad
refactor(frontend): added projects to context api init values and upd…
bekossy Dec 6, 2024
0d8c9b6
feat(frontend): implemented back to workspace logic
bekossy Dec 6, 2024
50d18bd
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Dec 6, 2024
283cb56
fix(frontend): converted rag image to webp
bekossy Dec 6, 2024
d7eff81
enhancement(frontend): updated helper links and added conditional for…
bekossy Dec 6, 2024
bf27b5c
enhancement(frontend): updated is_demo banner text
bekossy Dec 7, 2024
750e26b
enhancement(frontend): dynamically imported modals
bekossy Dec 7, 2024
22deb4a
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
jp-agenta Dec 8, 2024
d89dd79
Merge branch 'main' into AGE-1343/-implement-home-view-onboarding
bekossy Dec 9, 2024
22a0388
bug fix(frontend)
bekossy Dec 9, 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
13 changes: 1 addition & 12 deletions agenta-web/cypress/support/commands/evaluations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,7 @@ Cypress.Commands.add("createVariant", () => {
cy.addingOpenaiKey()
cy.visit("/apps")

// Check if there are app variants present
cy.request({
url: `${Cypress.env().baseApiURL}/apps`,
method: "GET",
}).then((resp) => {
if (resp.body.length) {
cy.get('[data-cy="create-new-app-button"]').click()
cy.get('[data-cy="create-from-template"]').click()
} else {
cy.get('[data-cy="create-from-template"]').click()
}
})
cy.get('[data-cy="create-from-template"]').click()

const appName = randString(5)
cy.task("log", `App name: ${appName}`)
Expand Down
Loading
Loading