-
Notifications
You must be signed in to change notification settings - Fork 4.5k
chore: Split library side pane for adding package control section #36926
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
6 commits
Select commit
Hold shift + click to select a range
33c32e7
chore: Split and refactor libraries side pane to extend in EE for pac…
ashit-rath dd6ac31
Merge branch 'release' into chore/split-for-pkg-version-control
ashit-rath 3ff4044
reverted pane header changes
ashit-rath 2d96cc6
increased libraries section width to 384px
ashit-rath 3639094
moved SidePaneWrapper to IDE
ashit-rath ec76cc5
Merge branch 'release' into chore/split-for-pkg-version-control
ashit-rath 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| import { Flex } from "@appsmith/ads"; | ||
| import React from "react"; | ||
| import type { ReactNode } from "react"; | ||
| import styled from "styled-components"; | ||
|
|
||
| interface SidePaneContainerProps { | ||
| children?: ReactNode; | ||
| padded?: boolean; | ||
| } | ||
|
|
||
| const StyledContainer = styled(Flex)<Pick<SidePaneContainerProps, "padded">>` | ||
| padding: ${({ padded }) => padded && "var(--ads-v2-spaces-2)"}; | ||
| `; | ||
|
|
||
| function SidePaneWrapper({ children, padded = false }: SidePaneContainerProps) { | ||
| return ( | ||
| <StyledContainer | ||
| borderRight="1px solid var(--ads-v2-color-border)" | ||
| flexDirection="column" | ||
| height="100%" | ||
| padded={padded} | ||
| width={"100%"} | ||
| > | ||
| {children} | ||
| </StyledContainer> | ||
| ); | ||
| } | ||
|
|
||
| export default SidePaneWrapper; | ||
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
12 changes: 12 additions & 0 deletions
12
app/client/src/ce/pages/Editor/IDE/Header/useLibraryHeaderTitle.ts
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,12 @@ | ||
| import { createMessage, HEADER_TITLES } from "ee/constants/messages"; | ||
ashit-rath marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| /** | ||
| * In CE this returns a simple text as title but this | ||
| * hook is extended in EE where based on feature flags | ||
| * the title changes | ||
| */ | ||
| function useLibraryHeaderTitle() { | ||
| return createMessage(HEADER_TITLES.LIBRARIES); | ||
| } | ||
|
|
||
| export default useLibraryHeaderTitle; | ||
13 changes: 13 additions & 0 deletions
13
app/client/src/ce/pages/Editor/IDE/LeftPane/LibrarySidePane.tsx
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,13 @@ | ||
| import React from "react"; | ||
| import JSLibrariesSection from "pages/Editor/IDE/LeftPane/JSLibrariesSection"; | ||
| import { IDESidePaneWrapper } from "IDE"; | ||
|
|
||
| const LibrarySidePane = () => { | ||
| return ( | ||
| <IDESidePaneWrapper> | ||
| <JSLibrariesSection /> | ||
| </IDESidePaneWrapper> | ||
| ); | ||
| }; | ||
|
|
||
| export default LibrarySidePane; |
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
3 changes: 3 additions & 0 deletions
3
app/client/src/ee/pages/Editor/IDE/Header/useLibraryHeaderTitle.ts
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,3 @@ | ||
| export * from "ce/pages/Editor/IDE/Header/useLibraryHeaderTitle"; | ||
| import { default as CE_useLibraryHeaderTitle } from "ce/pages/Editor/IDE/Header/useLibraryHeaderTitle"; | ||
| export default CE_useLibraryHeaderTitle; |
3 changes: 3 additions & 0 deletions
3
app/client/src/ee/pages/Editor/IDE/LeftPane/LibrarySidePane.tsx
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,3 @@ | ||
| export * from "ce/pages/Editor/IDE/LeftPane/LibrarySidePane"; | ||
| import { default as CE_LibrarySidePane } from "ce/pages/Editor/IDE/LeftPane/LibrarySidePane"; | ||
| export default CE_LibrarySidePane; |
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
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
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.