-
-
Notifications
You must be signed in to change notification settings - Fork 603
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: add page icon align option #618
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @Amemome, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
This pull request introduces an alignCenter
option to the NotionRenderer
component, allowing users to customize the alignment of page icons. The changes involve adding the alignCenter
prop to the NotionContext
and NotionRenderer
components, and adjusting the CSS styles to handle both centered and left-aligned icon positions. This enhancement provides users with more control over the visual presentation of page icons within the Notion renderer.
Highlights
- Feature: Added
alignCenter
prop toNotionRenderer
to allow users to customize the alignment of page icons. - Styling: Adjusted CSS styles to support both centered and left-aligned page icon positions.
- Context: Modified
NotionContext
to include thealignCenter
property, making it accessible throughout the component tree.
Changelog
Click here to see the changelog
- packages/react-notion-x/src/components/page-icon.tsx
- Added
alignCenter
fromuseNotionContext
to thePageIconImpl
component (line 32). - Added conditional class names (
align-center
oralign-left
) to the page icon container based on thealignCenter
prop (line 98).
- Added
- packages/react-notion-x/src/context.tsx
- Added
alignCenter
property to theNotionContext
interface (line 38). - Added
alignCenter
property to thePartialNotionContext
interface (line 67). - Set the default value of
alignCenter
totrue
in thedefaultNotionContext
(line 174).
- Added
- packages/react-notion-x/src/renderer.tsx
- Added
alignCenter
prop to theNotionRenderer
component (line 37). - Added
alignCenter
prop to theNotionRenderer
component's props interface (line 63). - Passed the
alignCenter
prop to theNotionContextProvider
(line 122).
- Added
- packages/react-notion-x/src/styles.css
- Removed
left: 50%
from.notion-page-icon-hero
(line 626). - Added styles for
.notion-page-icon-hero.notion-page-icon-image.align-left
to position the image icon to the left (lines 636-638). - Added styles for
.notion-page-icon-hero.notion-page-icon-image.align-center
to position the image icon to the center (lines 641-643). - Added styles for
.notion-page-icon-hero.notion-page-icon-span.align-left
to position the span icon to the left (lines 652-654). - Added styles for
.notion-page-icon-hero.notion-page-icon-span.align-center
to position the span icon to the center (lines 657-659).
- Removed
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
A pixel's place, a user's whim,
To center or align, a choice within.
With CSS tweaks and context's grace,
The icon finds its rightful space.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces an alignCenter
option to the NotionRenderer
component, allowing users to customize the alignment of page icons. The changes seem well-structured and address the described user preference. However, there are a few areas that could be improved for clarity and maintainability.
Summary of Findings
- CSS Class Naming Convention: The CSS class names
align-center
andalign-left
might be too generic and could potentially conflict with other styles. Consider using a more specific prefix to avoid naming collisions. - Default Prop Value: The default value of
alignCenter
is set totrue
indefaultNotionContext
. Consider whether this is the most appropriate default, or iffalse
would be more suitable, requiring users to explicitly opt-in to the centered alignment.
Merge Readiness
The pull request is almost ready for merging. Addressing the CSS class naming and considering the default prop value would improve the code's quality and reduce potential conflicts. I am unable to approve this pull request, and recommend that others review and approve this code before merging. I recommend that the pull request not be merged until the high severity issues are addressed.
@@ -169,6 +171,7 @@ const defaultNotionContext: NotionContext = { | |||
showCollectionViewDropdown: true, | |||
linkTableTitleProperties: true, | |||
isLinkCollectionToUrlProperty: false, | |||
alignCenter: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default value was center-aligned, so I set it to true.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved
Description
Some users prefer the default Notion page icon alignment style. To accommodate this preference, this PR introduces the
alignCenter
option inNotionRenderer
.alignCenter
prop toNotionRenderer
to allow customizable page icon alignment.