-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Adds new Processing sketch templates to enhance the user's initial coding experience in the Processing IDE. #1020
base: main
Are you sure you want to change the base?
Conversation
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.
Hi @SushantBansal-tech Thank you for your efforts!
Testing your change locally, I'm seeing an initial issue that the menu bar item is not a sub-menu, which breaks on the macOS menu-bar
Please make the templates user-definable from the Sketchbook folder
and please make the templates in the repo a .pde file instead of encoded into Java as you did right now
I also think it should insert the template without removing the existing code. I'm worried that people will lose their work otherwise
Thanks for your work! Adding to Stef's feedback: the idea was to have a submenu in the The desired behavior is to open a new sketch window with the template rather than insert the code in the existing sketch window. Adding a template to a new tab is not desirable either. @Stefterv: could we start with the built-in templates for now and look at user-defined templates later? I feel like user-defined templates add some complexity to the UX that we haven't discussed yet. |
For me the whole point of the templates is to be able to customise them |
@Stefterv can you please provide the screenshot of MACOS , so I can identify the problem easily. |
Screen.Recording.2025-03-28.at.08.06.12.movHere's a video of the issue |
I agree that being able to customize templates is useful, and we should definitely support that. At the same time, I see a lot of value in starting with built-in templates. As @hx2A pointed out in this comment, even just a couple of ready-made options would already be helpful in real teaching situations. Just to reiterate, my proposed plan was:
I think it's more manageable to get the basic functionality working first, especially since the UX for creating and managing custom templates still needs to be defined. |
Okay, can we at least have user-definable templates in the sketchbook folder? We can skip all the UX changes proposed and at least have the functionality |
@Stefterv can you please provide the confirmation what I have to do Either the templates should be built-in or user-defined ? |
Both, I would say the templates would be defined in In this way we can have pre-defined templates and user-defined ones. |
@Stefterv I am trying to do but facing some difficulties and here is the change i am trying to do
|
Hi @SushantBansal-tech, could you explain a bit more about which difficulty you are running in to? This looks to me it is heading into a positive direction I've you are asking about how to make a sub-menu, I think you can add a menu to a menu as a menu item if I understand correctly. By the way, for |
@Stefterv Yes I have add a menu to a menu as a menu item . |
I just looked into it and the best strategy I can see for loading the templates is to modify |
@Stefterv I want to add pre-defined templates in templates under file and user-defined termplates in skectbook ?? |
@Stefterv These are the changes I have done : ` private void loadTemplates(JMenu templatesMenu) {
private void addTemplatesFromDirectory(File directory, JMenu templatesMenu) { |
The idea was to put all of them in Templates. Also I'd call the menu item |
And yes they should show up in that list |
Thanks for your question @SushantBansal-tech Built-in templates should be stored in the Processing repo at Both types should appear together under I hope this clears up any ambiguity. |
Also I think we can hide .pde extension? @SableRaf |
Hi @SushantBansal-tech Thank you for your effort! Just wanted to clarify that we meant that the user-defined templates go in the same list as the pre-defined ones So the final list would be Sorry for the mixup! Maybe next time we can make a mockup @SableRaf ? |
@SableRaf @Stefterv sure I will do this ...
|
@SushantBansal-tech: See this mockup for reference on the menu structure. |
@SableRaf @Stefterv ` private void loadTemplates(JMenu templatesMenu) {
}
}` |
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.
Hi @SushantBansal-tech the general structure looks fine now, but please fix the items I have marked.
In general, please make sure you're only adding code that is necessary and try not to leave parts left over from development
app/src/processing/app/Base.java
Outdated
item.addActionListener(e -> handleOpenPrompt()); | ||
defaultFileMenu.add(item); | ||
// item = Toolkit.newJMenuItem(Language.text("menu.file.open"), 'O'); | ||
// item.addActionListener(e -> handleOpenPrompt()); |
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.
Please clean up any comments and unused code left in your Pull Request
@@ -0,0 +1,50 @@ | |||
package processing.app.ui; | |||
|
|||
public class Template { |
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.
No longer used correct?
// Load user-defined templates from the Sketchbook folder | ||
File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates"); | ||
|
||
System.out.println("Loading templates from user sketchbook directory: " + userTemplatesDir.getAbsolutePath()); |
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.
Please replace all occurrences of System.out.println
with Messages.Log
, this will ensure that only people running the PDE in DEBUG mode will see this message
|
||
Editor newEditor = base.handleNew(); | ||
if (newEditor != null) { | ||
System.out.println("New editor created. Inserting template code."); |
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.
Please only print something when something is wrong. This will just create noise in the log
@Stefterv I have done the requested changes .. |
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.
Looking good! A few small things and one I missed in the first review
app/src/processing/app/Base.java
Outdated
@@ -598,6 +596,10 @@ public JMenu initDefaultFileMenu() { | |||
item.addActionListener(e -> thinkDifferentExamples()); | |||
defaultFileMenu.add(item); | |||
|
|||
item = Toolkit.newJMenuItem(Language.text("menu.file.templates"), 'T'); | |||
//item.addActionListener(e -> handleTemplates()); |
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.
One more comment
@@ -0,0 +1,9 @@ | |||
// Basic Template | |||
void setup() { |
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.
and @SableRaf named these in his original suggestion, so please change the file names to those of something else more appropriate
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.
sure
app/src/processing/app/Base.java
Outdated
@@ -1288,6 +1289,8 @@ private void openContribBundle(String path) { | |||
}); | |||
} | |||
|
|||
// Open templates to start with any work |
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.
Another
@@ -21,6 +21,7 @@ menu.file.recent = Open Recent | |||
menu.file.sketchbook = Sketchbook... | |||
menu.file.sketchbook.empty = Empty Sketchbook | |||
menu.file.examples = Examples... | |||
menu.file.templates=Templates |
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.
I believe this should be menu.file.templates=New from Template
cc @Stefterv
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.
okay sir
@Sushant0124 @Stefterv I also added one comment about the menu item's name. |
@@ -586,9 +586,7 @@ public JMenu initDefaultFileMenu() { | |||
item.addActionListener(e -> handleNew()); | |||
defaultFileMenu.add(item); | |||
|
|||
item = Toolkit.newJMenuItem(Language.text("menu.file.open"), 'O'); | |||
item.addActionListener(e -> handleOpenPrompt()); |
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.
I just realised that the file->open menu item certainly should not be deleted here
// Load templates from both the repository and the user's Sketchbook folder | ||
private void loadTemplates(JMenu templatesMenu) { | ||
templatesMenu.removeAll(); | ||
System.out.println("templatesMenu"+templatesMenu.getComponentCount()); |
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.
System.out.println
Templates open scrolled down somehow, is this something we need to fix @SableRaf Seeing the same on macOS and on Windows |
Is the issue directly related to this PR or is it something else? It should be fixed before the feature goes live but it could be done via a separate issue. |
It's a separate issue with the |
Thanks @Sushant0124. That seems to work on my end! We'll see what @Stefterv thinks about the workaround. |
@Stefterv I have commit all the requested changes.. |
Hard disagree sorry! If we patch every bug with hacky solutions like this we will head into unmaintainable code really soon. This can be a separate issue and doesn't have to block this one. |
@Stefterv I apologize for my previous changes .Is there any alternative approach or any solution we can work together on this
|
Hey @SushantBansal-tech no need to apologize! I really appreciate that you came up with a creative solution—you’re doing great. The reason we try to avoid quick patches like this is that they can make the code harder to maintain over time. It’s usually better to address the root cause rather than just fixing one instance. We don’t need to solve it in this PR—we will open a separate issue to look into it. Thanks again for your efforts. |
Unfortunately, testing revealed an incompatibility with Processing modes that cannot be resolved with the current approach. Addressing this will require deeper re-architecturing that is beyond the scope of this PR. As a result, we will not be merging it. Note that this decision is not a reflection on the quality of your contribution. Your efforts are much appreciated and will be taken into consideration when reviewing your GSoC application, regardless of the merge status of this PR. As a reminder, having a merged PR is not a requirement for a successful application. It’s more important to show thoughtfulness in your proposal and demonstrate your understanding of the project. Thank you for your enthusiasm and your willingness to improve Processing. Good luck with your GSoC application! |
@SableRaf Okay I understand , I will make the proposal with my full Efforts , And one more thing Can i work on some other issues as a part of a contributor |
Changes
Created new templates in
Template.java
:Updated
Editor.java
to support:Purpose
Provide beginners and experienced users with ready-to-use sketch templates that demonstrate different Processing capabilities, making it easier to start coding quickly.