-
Notifications
You must be signed in to change notification settings - Fork 150
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
feat: React web UI dashboard #2241
Draft
orimdominic
wants to merge
15
commits into
main
Choose a base branch
from
dashboard-react
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
+10,443
−711
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* ch: stop tracking package-lock.json * chore: remove package-lock.json from git tracking * ft: set up shadcn * chore: copy fonts from Angular project * feat: add sample UI * chore: update prettier config * chore: add tailwind font size classes to tailwind config * chore: update location of assets * fix: warning from Vite about location of assets * feat: include miss radix colors * feat: include site-wide svgs * feat: implement login page UI * chore: accommodate null and undefined in TS checks * feat: add ConvoyLoader component * feat: use email not username * chore: update eslint config * ft: update ConvoyLoader to show only when needed * feat: set up Tanstack router * feat: set up services, lib and constants * chore: prettify installed ui components * feat: set up app router * feat: update ConvoyLoader visibilty prop * feat: implement login page * chore: prettify index.css
* fix: incorrect API endpoint URL * feat: implement sign up page fuctionality * fix: adjust height of input fields in login * feat: install badge component * refactor: use constants for localstorage keys * feat: hack to allow all licenses in dev mode * feat: complete sign up page (UI + implementaition)
* feat: copy migration files to container (#2238) * fix: put event types creation behind the license (#2239) * Add manual instrumentation (#2240) * fix: add manual instrumentation * fix: pass context to manual instrumentation * fix: add manual instrumentation for sentry tracer backend * fix: add generic function for manual instrumentation * fix: add context to db hooks; add span to http client * fix: use convoy tracer backend to build trace * fix: fixed dispatcher tests * fix: add http event trace breakdown * Re-enable Meta-Events (#2244) * fix: fix queries that weren't using indexes because of its column type * fix: re-enable meta-events; event delivery meta-events should run in the foreground. * fix: reindex index :) * Improve Tracing: Add Event ID To Workflow Stages (#2245) * improve tracing; add event id to workflow stages * add tracer mocks to tests * resolve PR comments * Update Changelog (#2247) * update changelog * Bump version to v25.2.1 * fixed rate limit not deleting for projects and endpoints (#2246) * fixed rate limit not deleting for projects and endpoints * fixed lint issues * fixed test * refactor: identifier names, prettier * feat: include necessary ui components * refactor: services * refactor: services * feat: add supporting functions * feat: set up to navigation and side bar --------- Co-authored-by: Subomi Oluwalana <subomioluwalana71@gmail.com> Co-authored-by: Raymond Tukpe <jirevwe@users.noreply.github.com> Co-authored-by: Raymond Tukpe <rtukpe@gmail.com> Co-authored-by: Smart Mekiliuwa <st.nonso@gmail.com>
* feat: refactor dashboard UI frame * refactor: router. use router with context * refactor: remove unused tailwind classes * fix: sidebar appearing over main content * feat: use auth hook * feat: use auth hook * refactor: auth service * fix: stop caching useAuth return values * fix: login button not enable on request completion on error * feat: set overlay background colour for dialog component * feat: update sidebar background colour * feat: create organisation
* refactor: get current org id directly from local storage * refactor: use console.error * feat: refactor layout route * refactor: wrap /projects with OrganisationProvider * chore: add note on Zustand use
* feat: remove unnecessary files * fix: error ring not showing around input fields * feat: show/hide sidebar within dashboard * feat: update, delete organisation settings * feat: delete organisation * refactor: use Link from Tanstack * refactor: get/set licenses with zustand * fix: error using hook in non-component * feat: set up organisation store with zustand * refactor: use sessions storage as zustand persistence cache * feat: create/delete org with state management * fix: state management in dashboard header * feat: use state management in /proects route
* chore: prettify * feat: create project * feat: create project
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR sets up the dashboard with the basic configurations for React with Vite.
The
dashboard-react
branch will hold all changes till completion before merging tomain
. Updates will be merged todashboard-react
before completion.The configuration with Vite in
dashboard-react
currently mimics the configuration in the Angular dashboard project wherever it can.