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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow registration of custom buttons #60

Merged
merged 19 commits into from
Mar 4, 2024
Merged

Conversation

josephfusco
Copy link
Member

@josephfusco josephfusco commented Feb 29, 2024

Solves #31

This also registers a new share button as an example, using @wordpress/icons package 馃帀

  • encode using LZString
  • decode using LZString
  • Implement clipboard functionality & notify user (currently console.log) notification system is out of scope of this PR

custom buttons

Props to @jasonbahl for the POC 馃檶馃徎

Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>

# Conflicts:
#	src/components/Editor.jsx
@josephfusco josephfusco added the feature porting Porting features from the core WPGraphQL plugin label Feb 29, 2024
@josephfusco josephfusco self-assigned this Feb 29, 2024
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
@josephfusco josephfusco marked this pull request as ready for review February 29, 2024 02:34
@josephfusco josephfusco added this to the Merge Candidate milestone Feb 29, 2024
Copy link
Collaborator

@jasonbahl jasonbahl left a comment

Choose a reason for hiding this comment

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

see my comment about the query query_arg.

Then, I think my P.O.C might have been a bit too naiive.

I think we might want to abstract a few things to make this more "error proof" so to speak.

For example, instead of requiring each Button to import and know about the <ToolbarButton>, <Icon> and <VisuallyHidden> components, we could include those elements within our object.entries.map() and render the component based on "props" in the toolbarButtons.

for example, when I do add_menu_page() in WordPress, I pass along strings of data, like: page_title, menu_title, menu_slug, etc and the UI is built for me.

I think ultimately we probably want that type of DX.

The buttons will all be given a consistent look, a tooltip, etc. . .all you need to provide is the label, the icon, the tooltip description and an onClick callback.

So the end user might do something like:

registerGraphiqlToolbarButton({
  name: "share",
  label: "Share current document",
  icon: () => { return <SomeIcon /> },
  description: "The tooltip description",
  onClick: () => { // this executes when the button is clicked }
});

I, of course, never mentioned that this is the type of API I would like to see, so definitely no reason you should have expected to provide it, but I think ultimately that's where this should go.

Similar to register_graphql_field, register_post_type, register_taxonomy, etc

I'm working on a similar style "registry" API for the "plugins" to add the "Help" plugin, so hopefully that can shed light on the implementation details I have in mind a bit more.

src/components/Editor.jsx Outdated Show resolved Hide resolved
@jasonbahl
Copy link
Collaborator

re: registerToolbarButton (or whatever we call it), I think that in the redux store we should have a list of buttons. Then functions like registerToolbarButton or deregisterToolbarButton will add to / remove from that list.

Then the list, after any addition/removal has been done, is rendered to the toolbar.

@josephfusco
Copy link
Member Author

馃挴 I am with you on abstracting things out more, but in a follow up PR.

Related: #60 (comment)

What you have laid out makes good sense to me.
Mind creating a separate ticket to improve the developer interface? Thank you 馃檶馃徎

@jasonbahl
Copy link
Collaborator

@josephfusco I opened a follow-up issue here: #62

Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
@jasonbahl
Copy link
Collaborator

@josephfusco looks like a test needs updated to reflect the change to the functionality (moving from multiple supported url query params to 1 hashed param)

Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>

# Conflicts:
#	package-lock.json
#	package.json
#	src/components/Editor.jsx
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
jasonbahl
jasonbahl previously approved these changes Mar 4, 2024
Signed-off-by: Joe Fusco <joe.fusco@wpengine.com>
@josephfusco josephfusco merged commit 9c44cc9 into main Mar 4, 2024
4 checks passed
@jasonbahl jasonbahl deleted the issue-31-custom-buttons branch May 17, 2024 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature porting Porting features from the core WPGraphQL plugin
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants