new MainController, empty artist result fix
This commit is contained in:
parent
2f611742ba
commit
861bb9c69b
3
rails/.gitignore
vendored
Normal file
3
rails/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
rails/tmp/
|
||||
rails/log/*.log
|
||||
|
@ -5,3 +5,4 @@ class ArtistController < ApplicationController
|
||||
@artist = Artist.getByName(params[:name].gsub('+', ' ').gsub('%20', ' '))
|
||||
end
|
||||
end
|
||||
|
||||
|
5
rails/app/controllers/main_controller.rb
Normal file
5
rails/app/controllers/main_controller.rb
Normal file
@ -0,0 +1,5 @@
|
||||
class MainController < ApplicationController
|
||||
def index
|
||||
end
|
||||
|
||||
end
|
2
rails/app/helpers/main_helper.rb
Normal file
2
rails/app/helpers/main_helper.rb
Normal file
@ -0,0 +1,2 @@
|
||||
module MainHelper
|
||||
end
|
@ -1,22 +1,30 @@
|
||||
<h1 class="artist"><%= @artist.name %></h1>
|
||||
<% @artist.albums.each do |album| %>
|
||||
<% unless album.releases.empty? %>
|
||||
<div class="album">
|
||||
<div class="pic"></div>
|
||||
<h3 class="name"><%= album.name %> <%= (album.year ? album.year : '') %></h3>
|
||||
<%
|
||||
releases = album.releases
|
||||
first_release = releases.first
|
||||
%>
|
||||
<ul class="tracks">
|
||||
<% first_release.tracks.each do |track| %>
|
||||
<li>
|
||||
<span class="play"></span>
|
||||
<span class="track-name"><%= track.name %></span>
|
||||
<span class="duration"><%= track.length.toTime %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if @artist.nil? %>
|
||||
<div class="search">
|
||||
<h1>We don`t know such artist yet..</h1>
|
||||
<%= link_to "Try again", main_path %>
|
||||
</div>
|
||||
<% else %>
|
||||
<h1 class="artist"><%= @artist.name %></h1>
|
||||
<% @artist.albums.each do |album| %>
|
||||
<% unless album.releases.empty? %>
|
||||
<div class="album">
|
||||
<div class="pic"></div>
|
||||
<h3 class="name"><%= album.name %> <%= (album.year ? album.year : '') %></h3>
|
||||
<%
|
||||
releases = album.releases
|
||||
first_release = releases.first
|
||||
%>
|
||||
<ul class="tracks">
|
||||
<% first_release.tracks.each do |track| %>
|
||||
<li>
|
||||
<span class="play"></span>
|
||||
<span class="track-name"><%= track.name %></span>
|
||||
<span class="duration"><%= track.length.toTime %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
|
6
rails/app/views/main/index.html.erb
Normal file
6
rails/app/views/main/index.html.erb
Normal file
@ -0,0 +1,6 @@
|
||||
<div class="search">
|
||||
<h1>SEARCH</h1>
|
||||
<%= form_tag('/artist', :method => 'post') %>
|
||||
<%= text_field_tag 'name', nil %>
|
||||
</div>
|
||||
|
@ -1,4 +1,6 @@
|
||||
Beathaven::Application.routes.draw do
|
||||
get "main/index"
|
||||
|
||||
# The priority is based upon order of creation:
|
||||
# first created -> highest priority.
|
||||
|
||||
@ -49,6 +51,7 @@ Beathaven::Application.routes.draw do
|
||||
# You can have the root of your site routed with "root"
|
||||
# just remember to delete public/index.html.
|
||||
# root :to => "welcome#index"
|
||||
root :to => "main#index", :as => "main"
|
||||
|
||||
# See how all your routes lay out with "rake routes"
|
||||
|
||||
@ -56,5 +59,6 @@ Beathaven::Application.routes.draw do
|
||||
# Note: This route will make all actions in every controller accessible via GET requests.
|
||||
# match ':controller(/:action(/:id(.:format)))'
|
||||
|
||||
match 'artist/:name' => 'artist#view'
|
||||
match 'artist(/:name)' => 'artist#view'
|
||||
end
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
Hello, World!
|
@ -75,3 +75,17 @@ body {
|
||||
width: 31px;
|
||||
height: 30px;
|
||||
margin: 0 0.3em 0 0;
|
||||
}
|
||||
|
||||
.search {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.search #name {
|
||||
border: 1px solid ##bdbdbd;
|
||||
background: #555555;
|
||||
color: #ffffff;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
|
9
rails/test/functional/main_controller_test.rb
Normal file
9
rails/test/functional/main_controller_test.rb
Normal file
@ -0,0 +1,9 @@
|
||||
require 'test_helper'
|
||||
|
||||
class MainControllerTest < ActionController::TestCase
|
||||
test "should get index" do
|
||||
get :index
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
end
|
4
rails/test/unit/helpers/main_helper_test.rb
Normal file
4
rails/test/unit/helpers/main_helper_test.rb
Normal file
@ -0,0 +1,4 @@
|
||||
require 'test_helper'
|
||||
|
||||
class MainHelperTest < ActionView::TestCase
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user