Skip to content

Commit

Permalink
🥗🥔✨ Agreement: Expose path to AgreementsController#new
Browse files Browse the repository at this point in the history
- #1364

This builds on the `Agreements#create` PR by exposing a UI for hitting
that endpoint via a Browser.

Note: I updated the footer because `space.agreements.new` creates an
un-persisted instance in the `space.agreements` collection.
  • Loading branch information
zspencer committed Apr 16, 2023
1 parent f728636 commit 305f27b
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 4 deletions.
8 changes: 7 additions & 1 deletion app/controllers/space/agreements_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ class AgreementsController < ApplicationController
def show
end

def new
agreement
end

def create
agreement.save

Expand All @@ -16,8 +20,10 @@ def create
helper_method def agreement
@agreement ||= if params[:id]
policy_scope(space.agreements).friendly.find(params[:id])
else
elsif params[:agreement]
space.agreements.new(agreement_params)
else
space.agreements.new
end.tap { |agreement| authorize(agreement) }
end

Expand Down
2 changes: 1 addition & 1 deletion app/lib/space_routes.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module SpaceRoutes
def self.append_routes(router)
router.resources :agreements, only: %i[show create], controller: "space/agreements"
router.resources :agreements, only: %i[show new create], controller: "space/agreements"
router.resource :authenticated_session, only: %i[new create update destroy show]
router.resources :invitations, only: %i[create destroy index] do
router.resource :rsvp, only: %i[show update]
Expand Down
1 change: 1 addition & 0 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<%- if current_space&.agreements&.present? %>
<div class="text-xs mt-2 w-full flex flex-wrap justify-center">
<%- current_space.agreements.each do |agreement| %>
<%- next unless agreement.persisted? %>
<%= link_to(agreement.name, agreement.location, class: "px-4 py-2") %>
<%- end %>
</div>
Expand Down
8 changes: 8 additions & 0 deletions app/views/space/agreements/new.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<%- breadcrumb :new_space_agreement, agreement %>
<%= form_with(model: agreement.location) do |agreement_form| %>
<%= render "text_field", attribute: :name, form: agreement_form%>
<%= render "text_area", attribute: :body, form: agreement_form%>
<%= agreement_form.submit %>
<%- end %>
15 changes: 13 additions & 2 deletions app/views/spaces/edit.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<p><%= link_to t('utilities.new.link_to'), space.location(:new, child: :utility) %></p>
</fieldset>

<fieldset>
<%= render CardComponent.new do %>
<header>
<h3><%= t('space.agreements.index.link_to') %></h3>
<p class="text-sm italic"><%= t('space.agreements.help_text') %></p>
Expand All @@ -88,4 +88,15 @@
</span>
<%- end %>
<div>
</fieldset>
<footer class="mt-4 text-center">
<%- new_agreement = space.agreements.build %>
<%- if policy(new_agreement).create? %>
<%= render ButtonComponent.new(
label: "#{t('space.agreements.new.link_to')} #{t('icons.new')}",
title: t('space.agreements.new.link_to'),
href: space.location(:new, child: :agreement),
method: :get,
scheme: :secondary) %>
<%- end %>
</footer>
<%- end %>
5 changes: 5 additions & 0 deletions config/breadcrumbs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
link t("show.link_to", name: agreement.name)
end

crumb :new_space_agreement do |agreement|
parent :edit_space, agreement.space
link t("space.agreements.new.link_to")
end

crumb :memberships do |space|
link "Members", [space, :memberships]
if policy(space).edit?
Expand Down
2 changes: 2 additions & 0 deletions config/locales/agreement/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ en:
help_text: Such as Privacy Policies, Content Policies, Terms of Service, etc.
index:
link_to: "Agreements"
new:
link_to: "Add Agreement"
create:
success: "Added Agreement %{name}"
21 changes: 21 additions & 0 deletions spec/requests/space/agreements_controller_request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,27 @@
it { is_expected.to render_template(:show) }
end

describe "#new" do
subject(:perform_request) do
get polymorphic_path(space.location(:new, child: :agreement))
response
end

it { is_expected.to be_not_found }

context "when signed in as a member" do
before { sign_in(space, member) }

it { is_expected.to render_template(:new) }

specify do
perform_request
assert_select('input[type="text"][name="agreement[name]"]')
assert_select('textarea[name="agreement[body]"]')
end
end
end

describe "#create" do
subject(:perform_request) do
post polymorphic_path(space.location(child: :agreements)), params: {agreement: agreement_params}
Expand Down

0 comments on commit 305f27b

Please sign in to comment.