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

Enabled editing the title of a collection via Stimulus #96

Merged
merged 5 commits into from
Mar 18, 2025

Conversation

louispt1
Copy link
Collaborator

@louispt1 louispt1 commented Mar 5, 2025

I struggled to make the title appear editable on hover without it becoming very ugly - now it gets underlined.

@louispt1 louispt1 requested a review from noracato March 5, 2025 10:15
Copy link
Member

@noracato noracato left a comment

Choose a reason for hiding this comment

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

Hey! Nice idea with the stimulus controller. I did not check the looks of it yet, but based on the code, here are a few comments and questions.

Could you also write a spec for the update action of the controller, please?

def update
@collection = Collection.find(params[:id])

if @collection.update(create_collection_params)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
if @collection.update(create_collection_params)
if @collection.update(update_collection_params)

Let's make sure a user can't accidentally update the version, or scenarios when the update form does not yet contain them. We'd need something like update_collection_params.

@@ -54,6 +54,16 @@ def new
end
end

def update
@collection = Collection.find(params[:id])
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
@collection = Collection.find(params[:id])

We should check authentication and not just do a find_by. If you add update to the hook load_and_authorize_resource, @collection will become available and will be validated already.

@@ -1,4 +1,12 @@
<%- content_for :menu_title, @collection.title %>
<%- content_for :menu_title do %>
<span contenteditable="true"
Copy link
Member

Choose a reason for hiding this comment

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

Is it always editable for everybody?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Good point! After I add update to the load_and_authorize_resource, will this work/ is this the right approach?

<span contenteditable="<%= can?(:update, @collection) %>"

Copy link
Member

Choose a reason for hiding this comment

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

Currently the collection is in the show action, not in the update one :) But I assume this would work.

However, as a rule we try to put the least logic in the view as possible. The more "complicated" the logic is, the more we want to put it in the controller or a component helper to keep our views clean, and have a clear idea from looking at the controller what is going on. The can? method is mostly used in before hooks of the controller, so we can classify it as something out of the league of a view.

One possibility for instance could be to create a boolean @editable = can?(:update, @collection) in the show action, and reference it in the view.

Copy link
Member

Choose a reason for hiding this comment

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

Or, since a Collection has only one user attached: @collection.user == current_user. Whichever you prefer.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Thanks! I will have a go refactoring it in this way

Copy link
Member

@noracato noracato left a comment

Choose a reason for hiding this comment

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

Here I come again with some comments! Sorry for the continuous reviews. I think small issues like this one are great for learning about conventions and how to properly set up controller actions. So it becomes a bit nitpicky :)

Comment on lines 59 to 61
render json: { success: true }
else
render json: { success: false, errors: @collection.errors.full_messages }, status: :unprocessable_entity
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
render json: { success: true }
else
render json: { success: false, errors: @collection.errors.full_messages }, status: :unprocessable_entity
render json: @collection
else
render json: { errors: @collection.errors.full_messages }, status: :unprocessable_entity

We don't have to communicate the success as a parameter, because it's already communicated in the response status (like you did correctly in the Stimulus controller - response.ok).
Usually we have update actions return the updated resource in some way (e.g. redirect to the updated resource in the case of HTML, returning the serialised object in case of JSON, injecting updated resource data in case of turbo stream, etc). Not only because a next action concerning the resoucre will always follow an update action, but also for making it easier to write specs for the action.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

No need to apologise for the reviews! It's really helpful :) I can't learn without the nitpicking so please don't hold back

@noracato
Copy link
Member

Super nice now! Nice work!

I added a small pencil on hover to hopefully make it more clear that the title is editable.
The rest of editable things in My Scenarios work with separate forms (clicking edit somewhere and a form appears). Even though I like your approach of direct editable content a lot more, it can be hard for users to discover as it's not consequent with the rest of the UX. That's probably why you struggled on how to make it visible and clear as well.

At one point we should probably add a edit button in the right side menu that triggers/focusses the editable content. But for now I think we should just merge it, and add it as an enhancement issue.

@noracato noracato force-pushed the edit-title-collections branch from 7863447 to 8f8f3e8 Compare March 18, 2025 10:59
@noracato noracato merged commit 961c37f into master Mar 18, 2025
2 of 4 checks passed
@noracato noracato deleted the edit-title-collections branch March 18, 2025 11:00
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.

2 participants