-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[WEB-3998] feat: settings page revamp #6959
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
Merged
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
12bd0b8
chore: return workspace name and logo in profile settings api
sangeethailango 526d7da
chore: remove unwanted fields
sangeethailango 89a29f7
fix: backend
gakshita 767788b
feat: workspace settings
gakshita 71e1de2
feat: workspce settings + layouting
gakshita 3493939
feat: profile + workspace settings ui
gakshita b6ef8aa
chore: project settings + refactoring
gakshita c82e35f
routes
gakshita 57560c2
fix: handled no project
gakshita b6b7baa
fix: css + build
gakshita d5780df
feat: profile settings internal screens upgrade
gakshita 427d488
fix: workspace settings internal screens
gakshita 75f6ea7
fix: external scrolling allowed
gakshita a9e4f15
Merge branch 'feat-workspace-settings-internal' of https://github.com…
gakshita 5036ece
Merge branch 'feat-profile-settings-internal' of https://github.com/m…
gakshita 10ed2bd
fix: css
gakshita ab32c20
fix: css
gakshita 44b09cd
fix: css
gakshita ce6c8bd
fix: preferences settings
gakshita 3f3c581
fix: css
gakshita c4da02d
fix: mobile interface
gakshita b2e9392
fix: profile redirections
gakshita c33b559
Merge branch 'preview' of https://github.com/makeplane/plane into fea…
gakshita 7fab504
fix: dark theme
gakshita ffbc2f0
fix: css
gakshita cffbc88
fix: css
gakshita 70cafff
feat: scroll
gakshita f41f21e
fix: refactor
gakshita 8b75c33
Merge branch 'preview' of https://github.com/makeplane/plane into fea…
gakshita 86de840
fix: bug fixes
gakshita 9982889
fix: refactor
gakshita 38762ba
fix: css
gakshita f412bf2
fix: routes
gakshita 88b20aa
Merge branch 'preview' of https://github.com/makeplane/plane into fea…
gakshita 5fa3229
fix: first day of the week
gakshita 6a5848f
fix: scrolling
gakshita ba126fd
fix: refactoring
gakshita f713538
fix: project -> projects
gakshita 3a36f99
fix: refactoring
gakshita 58454be
fix: refactor
gakshita 426ec3d
fix: no authorized view consistency
gakshita af8f010
fix: folder structure
gakshita aa2a8e1
Merge branch 'preview' into feat-settings-revamp
gakshita 4a0b009
fix: revert
gakshita 589d702
Merge branch 'feat-settings-revamp' of https://github.com/makeplane/p…
gakshita 8932128
Merge branch 'preview' of https://github.com/makeplane/plane into fea…
gakshita 42181fa
fix: handled redirections
gakshita b411d3c
Merge branch 'preview' of https://github.com/makeplane/plane into fea…
gakshita e6b4b14
fix: scroll
gakshita 0d7cc34
fix: deleted old routes
gakshita d38312c
fix: empty states
gakshita 8bbed0a
fix: headings
gakshita 750a2ee
fix: settings description
gakshita 13c8c24
fix: build
gakshita File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| import { PROFILE_SETTINGS } from "."; | ||
| import { WORKSPACE_SETTINGS } from "./workspace"; | ||
|
|
||
| export enum WORKSPACE_SETTINGS_CATEGORY { | ||
| ADMINISTRATION = "administration", | ||
| FEATURES = "features", | ||
| DEVELOPER = "developer", | ||
| } | ||
|
|
||
| export enum PROFILE_SETTINGS_CATEGORY { | ||
| YOUR_PROFILE = "your profile", | ||
| DEVELOPER = "developer", | ||
| } | ||
|
|
||
| export enum PROJECT_SETTINGS_CATEGORY { | ||
| PROJECTS = "projects", | ||
| } | ||
|
|
||
| export const WORKSPACE_SETTINGS_CATEGORIES = [ | ||
| WORKSPACE_SETTINGS_CATEGORY.ADMINISTRATION, | ||
| WORKSPACE_SETTINGS_CATEGORY.FEATURES, | ||
| WORKSPACE_SETTINGS_CATEGORY.DEVELOPER, | ||
| ]; | ||
|
|
||
| export const PROFILE_SETTINGS_CATEGORIES = [ | ||
| PROFILE_SETTINGS_CATEGORY.YOUR_PROFILE, | ||
| PROFILE_SETTINGS_CATEGORY.DEVELOPER, | ||
| ]; | ||
|
|
||
| export const PROJECT_SETTINGS_CATEGORIES = [PROJECT_SETTINGS_CATEGORY.PROJECTS]; | ||
|
|
||
| export const GROUPED_WORKSPACE_SETTINGS = { | ||
| [WORKSPACE_SETTINGS_CATEGORY.ADMINISTRATION]: [ | ||
| WORKSPACE_SETTINGS["general"], | ||
| WORKSPACE_SETTINGS["members"], | ||
| WORKSPACE_SETTINGS["billing-and-plans"], | ||
| WORKSPACE_SETTINGS["export"], | ||
| ], | ||
| [WORKSPACE_SETTINGS_CATEGORY.FEATURES]: [], | ||
| [WORKSPACE_SETTINGS_CATEGORY.DEVELOPER]: [WORKSPACE_SETTINGS["webhooks"]], | ||
| }; | ||
|
|
||
| export const GROUPED_PROFILE_SETTINGS = { | ||
| [PROFILE_SETTINGS_CATEGORY.YOUR_PROFILE]: [ | ||
| PROFILE_SETTINGS["profile"], | ||
| PROFILE_SETTINGS["preferences"], | ||
| PROFILE_SETTINGS["notifications"], | ||
| PROFILE_SETTINGS["security"], | ||
| PROFILE_SETTINGS["activity"], | ||
| ], | ||
| [PROFILE_SETTINGS_CATEGORY.DEVELOPER]: [PROFILE_SETTINGS["api-tokens"]], | ||
| }; |
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.