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

Add displayArrayKey Option for Rendering Array Keys in JSONViewer #19

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

Cylop
Copy link

@Cylop Cylop commented Sep 27, 2023

Greetings,

I have implemented a new feature in the JSONViewer, introducing an option named displayArrayKey. This feature aims to enhance the user experience by providing additional flexibility in visualizing JSON data.

Feature: 'displayArrayKey' Option

The displayArrayKey option, when set to false, prevents the rendering of the keys of an array and appends a colon to the end of the line. This results in a cleaner and more concise output for users who find array keys unnecessary in certain contexts.

Usage:

<JsonView
  src={object}
  displayArrayKey={false}
/>

Enabled (without keys):

Bildschirmfoto 2023-09-27 um 23 39 28

Disabled (with keys):

Bildschirmfoto 2023-09-27 um 23 39 47

Use Case:

This addition is beneficial for developers seeking a streamlined representation of JSON data, especially when handling large arrays where the keys might not contribute significantly to comprehending the data structure.

Documentation:

The documentation has been updated to encompass the new displayArrayKey option, elucidating its function and effect on the JSON data representation.

Conclusion:

I am confident that this feature will serve as a valuable enhancement to the project by offering more versatility in displaying JSON data. I look forward to your feedback and am open to making any necessary modifications.

Thank you for considering this contribution. Looking forward to a positive review and eventual merge.

Best Regards,
Nicholas

@vercel
Copy link

vercel bot commented Sep 27, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
json-view ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 28, 2023 4:46am
react18-json-view ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 28, 2023 4:46am

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Project use pnpm as default for the workspace

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

package-lock file will confuse Vercel deployment.

Copy link
Owner

@YYsuni YYsuni Sep 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We just need to use displayArrayKey in NameValue component. Changes here are needless.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure why the new component was created here. We could just change a little code in the NameValue component.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ve separated the code into a distinct component for clarity and readability. Integrating it with the original component could lead to clutter. However, I can relocate this new key component to the name-value file for a more concise separation of code. Would that arrangement be more suitable for you?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The important point is to use the displayArrayKey from useContext instead of props. Also, the conditional operator is enough.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, attribute passing should not happen except for depth and props with a parent relationship.

@YYsuni
Copy link
Owner

YYsuni commented Sep 28, 2023

I noticed the new comma added and had a thought: why do we add the prop viewMode: viewer or json? Which means json mode has the comma symbol, but the viewer mode not.

@Cylop
Copy link
Author

Cylop commented Sep 28, 2023

That sounds like a good idea, I'll implement the comments!

@Cylop
Copy link
Author

Cylop commented Sep 28, 2023

I started changing right now, do you think with the view mode 'viewer' or 'json' - do we need the displayArrayKey option at all?

@Cylop
Copy link
Author

Cylop commented Sep 28, 2023

I introduced now the new option viewMode with options['json', 'viewer'] where 'viewer' is the default one. Once 'json' is selected, commas are appended to the end of the line, whereas 'displayArrayKey' only the display of array keys disabled.

I removed the package-lock and used pnpm (missed that before)

I also removed the new file and adapted the existing 'name-value.tsx'.

This options are now available:

Bildschirmfoto 2023-09-28 um 06 53 21 Bildschirmfoto 2023-09-28 um 06 53 09 Bildschirmfoto 2023-09-28 um 06 52 34 Bildschirmfoto 2023-09-28 um 06 52 51

@YYsuni
Copy link
Owner

YYsuni commented Sep 30, 2023

Sorry, I am on vacation.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The viewMode property seems a bit wasteful as it is only used to determine whether to display commas.😆
Let me think twice...🤔

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting here is not that friendly.😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants