From 2c8c227493509175fcdbcba3e6a85f8b954a169e Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 15 Jan 2022 12:10:26 -0500 Subject: init --- app/views/layouts/application.html.erb | 16 ++++++++++++++++ app/views/layouts/mailer.html.erb | 14 ++++++++++++++ app/views/layouts/mailer.text.erb | 1 + app/views/machines/_form.html.erb | 27 ++++++++++++++++++++++++++ app/views/machines/_machine.html.erb | 12 ++++++++++++ app/views/machines/_machine.json.jbuilder | 4 ++++ app/views/machines/edit.html.erb | 10 ++++++++++ app/views/machines/index.html.erb | 14 ++++++++++++++ app/views/machines/index.json.jbuilder | 3 +++ app/views/machines/new.html.erb | 9 +++++++++ app/views/machines/show.html.erb | 10 ++++++++++ app/views/machines/show.json.jbuilder | 3 +++ app/views/players/_form.html.erb | 32 +++++++++++++++++++++++++++++++ app/views/players/_player.html.erb | 17 ++++++++++++++++ app/views/players/_player.json.jbuilder | 4 ++++ app/views/players/edit.html.erb | 10 ++++++++++ app/views/players/index.html.erb | 14 ++++++++++++++ app/views/players/index.json.jbuilder | 3 +++ app/views/players/new.html.erb | 9 +++++++++ app/views/players/show.html.erb | 10 ++++++++++ app/views/players/show.json.jbuilder | 3 +++ 21 files changed, 225 insertions(+) create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/layouts/mailer.html.erb create mode 100644 app/views/layouts/mailer.text.erb create mode 100644 app/views/machines/_form.html.erb create mode 100644 app/views/machines/_machine.html.erb create mode 100644 app/views/machines/_machine.json.jbuilder create mode 100644 app/views/machines/edit.html.erb create mode 100644 app/views/machines/index.html.erb create mode 100644 app/views/machines/index.json.jbuilder create mode 100644 app/views/machines/new.html.erb create mode 100644 app/views/machines/show.html.erb create mode 100644 app/views/machines/show.json.jbuilder create mode 100644 app/views/players/_form.html.erb create mode 100644 app/views/players/_player.html.erb create mode 100644 app/views/players/_player.json.jbuilder create mode 100644 app/views/players/edit.html.erb create mode 100644 app/views/players/index.html.erb create mode 100644 app/views/players/index.json.jbuilder create mode 100644 app/views/players/new.html.erb create mode 100644 app/views/players/show.html.erb create mode 100644 app/views/players/show.json.jbuilder (limited to 'app/views') diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 0000000..665f897 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,16 @@ + + + + Knockout + + <%= csrf_meta_tags %> + <%= csp_meta_tag %> + + <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> + <%= javascript_importmap_tags %> + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 0000000..4ee4c89 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,14 @@ + + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 0000000..37f0bdd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/app/views/machines/_form.html.erb b/app/views/machines/_form.html.erb new file mode 100644 index 0000000..0e59129 --- /dev/null +++ b/app/views/machines/_form.html.erb @@ -0,0 +1,27 @@ +<%= form_with(model: machine) do |form| %> + <% if machine.errors.any? %> +
+

<%= pluralize(machine.errors.count, "error") %> prohibited this machine from being saved:

+ + +
+ <% end %> + +
+ <%= form.label :name, style: "display: block" %> + <%= form.text_field :name %> +
+ +
+ <%= form.label :edition, style: "display: block" %> + <%= form.text_field :edition %> +
+ +
+ <%= form.submit %> +
+<% end %> diff --git a/app/views/machines/_machine.html.erb b/app/views/machines/_machine.html.erb new file mode 100644 index 0000000..edba53e --- /dev/null +++ b/app/views/machines/_machine.html.erb @@ -0,0 +1,12 @@ +
+

+ Name: + <%= machine.name %> +

+ +

+ Edition: + <%= machine.edition %> +

+ +
diff --git a/app/views/machines/_machine.json.jbuilder b/app/views/machines/_machine.json.jbuilder new file mode 100644 index 0000000..ef51e42 --- /dev/null +++ b/app/views/machines/_machine.json.jbuilder @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +json.extract! machine, :id, :name, :edition, :created_at, :updated_at +json.url machine_url(machine, format: :json) diff --git a/app/views/machines/edit.html.erb b/app/views/machines/edit.html.erb new file mode 100644 index 0000000..a390477 --- /dev/null +++ b/app/views/machines/edit.html.erb @@ -0,0 +1,10 @@ +

Editing machine

+ +<%= render "form", machine: @machine %> + +
+ +
+ <%= link_to "Show this machine", @machine %> | + <%= link_to "Back to machines", machines_path %> +
diff --git a/app/views/machines/index.html.erb b/app/views/machines/index.html.erb new file mode 100644 index 0000000..b5e2c85 --- /dev/null +++ b/app/views/machines/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Machines

+ +
+ <% @machines.each do |machine| %> + <%= render machine %> +

+ <%= link_to "Show this machine", machine %> +

+ <% end %> +
+ +<%= link_to "New machine", new_machine_path %> diff --git a/app/views/machines/index.json.jbuilder b/app/views/machines/index.json.jbuilder new file mode 100644 index 0000000..9947db2 --- /dev/null +++ b/app/views/machines/index.json.jbuilder @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +json.array! @machines, partial: 'machines/machine', as: :machine diff --git a/app/views/machines/new.html.erb b/app/views/machines/new.html.erb new file mode 100644 index 0000000..ae58280 --- /dev/null +++ b/app/views/machines/new.html.erb @@ -0,0 +1,9 @@ +

New machine

+ +<%= render "form", machine: @machine %> + +
+ +
+ <%= link_to "Back to machines", machines_path %> +
diff --git a/app/views/machines/show.html.erb b/app/views/machines/show.html.erb new file mode 100644 index 0000000..1af79f9 --- /dev/null +++ b/app/views/machines/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @machine %> + +
+ <%= link_to "Edit this machine", edit_machine_path(@machine) %> | + <%= link_to "Back to machines", machines_path %> + + <%= button_to "Destroy this machine", @machine, method: :delete %> +
diff --git a/app/views/machines/show.json.jbuilder b/app/views/machines/show.json.jbuilder new file mode 100644 index 0000000..21b2852 --- /dev/null +++ b/app/views/machines/show.json.jbuilder @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +json.partial! 'machines/machine', machine: @machine diff --git a/app/views/players/_form.html.erb b/app/views/players/_form.html.erb new file mode 100644 index 0000000..48dadc5 --- /dev/null +++ b/app/views/players/_form.html.erb @@ -0,0 +1,32 @@ +<%= form_with(model: player) do |form| %> + <% if player.errors.any? %> +
+

<%= pluralize(player.errors.count, "error") %> prohibited this player from being saved:

+ + +
+ <% end %> + +
+ <%= form.label :name, style: "display: block" %> + <%= form.text_field :name %> +
+ +
+ <%= form.label :paid, style: "display: block" %> + <%= form.check_box :paid %> +
+ +
+ <%= form.label :strikes, style: "display: block" %> + <%= form.number_field :strikes %> +
+ +
+ <%= form.submit %> +
+<% end %> diff --git a/app/views/players/_player.html.erb b/app/views/players/_player.html.erb new file mode 100644 index 0000000..35e7cb1 --- /dev/null +++ b/app/views/players/_player.html.erb @@ -0,0 +1,17 @@ +
+

+ Name: + <%= player.name %> +

+ +

+ Paid: + <%= player.paid %> +

+ +

+ Strikes: + <%= player.strikes %> +

+ +
diff --git a/app/views/players/_player.json.jbuilder b/app/views/players/_player.json.jbuilder new file mode 100644 index 0000000..deda657 --- /dev/null +++ b/app/views/players/_player.json.jbuilder @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +json.extract! player, :id, :name, :paid, :strikes, :created_at, :updated_at +json.url player_url(player, format: :json) diff --git a/app/views/players/edit.html.erb b/app/views/players/edit.html.erb new file mode 100644 index 0000000..a6cea2b --- /dev/null +++ b/app/views/players/edit.html.erb @@ -0,0 +1,10 @@ +

Editing player

+ +<%= render "form", player: @player %> + +
+ +
+ <%= link_to "Show this player", @player %> | + <%= link_to "Back to players", players_path %> +
diff --git a/app/views/players/index.html.erb b/app/views/players/index.html.erb new file mode 100644 index 0000000..eac7710 --- /dev/null +++ b/app/views/players/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Players

+ +
+ <% @players.each do |player| %> + <%= render player %> +

+ <%= link_to "Show this player", player %> +

+ <% end %> +
+ +<%= link_to "New player", new_player_path %> diff --git a/app/views/players/index.json.jbuilder b/app/views/players/index.json.jbuilder new file mode 100644 index 0000000..da56f8d --- /dev/null +++ b/app/views/players/index.json.jbuilder @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +json.array! @players, partial: 'players/player', as: :player diff --git a/app/views/players/new.html.erb b/app/views/players/new.html.erb new file mode 100644 index 0000000..c248abe --- /dev/null +++ b/app/views/players/new.html.erb @@ -0,0 +1,9 @@ +

New player

+ +<%= render "form", player: @player %> + +
+ +
+ <%= link_to "Back to players", players_path %> +
diff --git a/app/views/players/show.html.erb b/app/views/players/show.html.erb new file mode 100644 index 0000000..19ade1d --- /dev/null +++ b/app/views/players/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @player %> + +
+ <%= link_to "Edit this player", edit_player_path(@player) %> | + <%= link_to "Back to players", players_path %> + + <%= button_to "Destroy this player", @player, method: :delete %> +
diff --git a/app/views/players/show.json.jbuilder b/app/views/players/show.json.jbuilder new file mode 100644 index 0000000..07dba4a --- /dev/null +++ b/app/views/players/show.json.jbuilder @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +json.partial! 'players/player', player: @player -- cgit 1.4.1