From 606ea5e77ec69706fd4cab97a93aa480f178aed2 Mon Sep 17 00:00:00 2001 From: man13 <man13@inf.ufpr.br> Date: Thu, 10 Mar 2016 09:36:20 -0300 Subject: [PATCH] creating scaffold management/mime_types Signed-off-by: man13 <man13@inf.ufpr.br> --- .../javascripts/management/mime_types.coffee | 3 + .../stylesheets/management/mime_types.scss | 3 + app/assets/stylesheets/scaffolds.scss | 73 +++++++++++++++++++ .../management/mime_types_controller.rb | 69 ++++++++++++++++++ app/helpers/management/mime_types_helper.rb | 2 + app/models/mime_type.rb | 2 + .../management/mime_types/_form.html.erb | 17 +++++ app/views/management/mime_types/edit.html.erb | 5 ++ .../management/mime_types/index.html.erb | 24 ++++++ .../management/mime_types/index.json.jbuilder | 4 + app/views/management/mime_types/new.html.erb | 5 ++ app/views/management/mime_types/show.html.erb | 4 + .../management/mime_types/show.json.jbuilder | 1 + .../20160310121839_create_mime_types.rb | 8 ++ test/fixtures/management/mime_types.yml | 11 +++ test/models/management/mime_type_test.rb | 7 ++ 16 files changed, 238 insertions(+) create mode 100644 app/assets/javascripts/management/mime_types.coffee create mode 100644 app/assets/stylesheets/management/mime_types.scss create mode 100644 app/assets/stylesheets/scaffolds.scss create mode 100644 app/controllers/management/mime_types_controller.rb create mode 100644 app/helpers/management/mime_types_helper.rb create mode 100644 app/models/mime_type.rb create mode 100644 app/views/management/mime_types/_form.html.erb create mode 100644 app/views/management/mime_types/edit.html.erb create mode 100644 app/views/management/mime_types/index.html.erb create mode 100644 app/views/management/mime_types/index.json.jbuilder create mode 100644 app/views/management/mime_types/new.html.erb create mode 100644 app/views/management/mime_types/show.html.erb create mode 100644 app/views/management/mime_types/show.json.jbuilder create mode 100644 db/migrate/20160310121839_create_mime_types.rb create mode 100644 test/fixtures/management/mime_types.yml create mode 100644 test/models/management/mime_type_test.rb diff --git a/app/assets/javascripts/management/mime_types.coffee b/app/assets/javascripts/management/mime_types.coffee new file mode 100644 index 00000000..24f83d18 --- /dev/null +++ b/app/assets/javascripts/management/mime_types.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/management/mime_types.scss b/app/assets/stylesheets/management/mime_types.scss new file mode 100644 index 00000000..76c2ab31 --- /dev/null +++ b/app/assets/stylesheets/management/mime_types.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the management/mime_types controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/scaffolds.scss b/app/assets/stylesheets/scaffolds.scss new file mode 100644 index 00000000..ed7a765d --- /dev/null +++ b/app/assets/stylesheets/scaffolds.scss @@ -0,0 +1,73 @@ +body { + background-color: #fff; + color: #333; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { + color: #000; + + &:visited { + color: #666; + } + + &:hover { + color: #fff; + background-color: #000; + } +} + +div { + &.field, &.actions { + margin-bottom: 10px; + } +} + +#notice { + color: green; +} + +.field_with_errors { + padding: 2px; + background-color: red; + display: table; +} + +#error_explanation { + width: 450px; + border: 2px solid red; + padding: 7px; + padding-bottom: 0; + margin-bottom: 20px; + background-color: #f0f0f0; + + h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px; + margin-bottom: 0px; + background-color: #c00; + color: #fff; + } + + ul li { + font-size: 12px; + list-style: square; + } +} diff --git a/app/controllers/management/mime_types_controller.rb b/app/controllers/management/mime_types_controller.rb new file mode 100644 index 00000000..dd36e2c9 --- /dev/null +++ b/app/controllers/management/mime_types_controller.rb @@ -0,0 +1,69 @@ +class Management::MimeTypesController < ManagementController + before_action :set_mime_type, only: [:edit, :update, :destroy] + + # GET /management/mime_types + # GET /management/mime_types.json + def index + @mime_types = ::MimeType.all + end + + # GET /management/mime_types/new + def new + @mime_type = ::MimeType.new + end + + # GET /management/mime_types/1/edit + def edit + end + + # POST /management/mime_types + # POST /management/mime_types.json + def create + @mime_type = ::MimeType.new(mime_type_params) + + respond_to do |format| + if @mime_type.save + format.html { redirect_to management_mime_types_path, notice: 'Mime type was successfully created.' } + format.json { render :show, status: :created, location: @mime_type } + else + format.html { render :new } + format.json { render json: @mime_type.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /management/mime_types/1 + # PATCH/PUT /management/mime_types/1.json + def update + respond_to do |format| + if @mime_type.update(mime_type_params) + format.html { redirect_to management_mime_types_path, notice: 'Mime type was successfully updated.' } + format.json { render :show, status: :ok, location: @management_mime_type } + else + format.html { render :edit } + format.json { render json: @mime_type.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /management/mime_types/1 + # DELETE /management/mime_types/1.json + def destroy + @mime_type.destroy + respond_to do |format| + format.html { redirect_to management_mime_types_url, notice: 'Mime type was successfully destroyed.' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_mime_type + @mime_type = ::MimeType.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def mime_type_params + params.fetch(:management_mime_type, {}) + end +end diff --git a/app/helpers/management/mime_types_helper.rb b/app/helpers/management/mime_types_helper.rb new file mode 100644 index 00000000..8873b3c6 --- /dev/null +++ b/app/helpers/management/mime_types_helper.rb @@ -0,0 +1,2 @@ +module Management::MimeTypesHelper +end diff --git a/app/models/mime_type.rb b/app/models/mime_type.rb new file mode 100644 index 00000000..e8bc1816 --- /dev/null +++ b/app/models/mime_type.rb @@ -0,0 +1,2 @@ +class MimeType < ActiveRecord::Base +end diff --git a/app/views/management/mime_types/_form.html.erb b/app/views/management/mime_types/_form.html.erb new file mode 100644 index 00000000..21b268c4 --- /dev/null +++ b/app/views/management/mime_types/_form.html.erb @@ -0,0 +1,17 @@ +<%= form_for([:management, @mime_type]) do |f| %> + <% if @mime_type.errors.any? %> + <div id="error_explanation"> + <h2><%= pluralize(@mime_type.errors.count, "error") %> prohibited this management_mime_type from being saved:</h2> + + <ul> + <% @mime_type.errors.full_messages.each do |message| %> + <li><%= message %></li> + <% end %> + </ul> + </div> + <% end %> + + <div class="actions"> + <%= f.submit %> + </div> +<% end %> diff --git a/app/views/management/mime_types/edit.html.erb b/app/views/management/mime_types/edit.html.erb new file mode 100644 index 00000000..113f642d --- /dev/null +++ b/app/views/management/mime_types/edit.html.erb @@ -0,0 +1,5 @@ +<h1>Editing Management Mime Type</h1> + +<%= render 'form' %> + +<%= link_to 'Back', management_mime_types_path %> diff --git a/app/views/management/mime_types/index.html.erb b/app/views/management/mime_types/index.html.erb new file mode 100644 index 00000000..6182d180 --- /dev/null +++ b/app/views/management/mime_types/index.html.erb @@ -0,0 +1,24 @@ +<p id="notice"><%= notice %></p> + +<h1>Listing Management Mime Types</h1> + +<table> + <thead> + <tr> + <th colspan="3"></th> + </tr> + </thead> + + <tbody> + <% @mime_types.each do |mime_type| %> + <tr> + <td><%= link_to 'Edit', edit_management_mime_type_path(mime_type) %></td> + <td><%= link_to 'Destroy', management_mime_type_path(mime_type), method: :delete, data: { confirm: 'Tem certeza?' } %></td> + </tr> + <% end %> + </tbody> +</table> + +<br> + +<%= link_to 'New Mime type', new_management_mime_type_path %> diff --git a/app/views/management/mime_types/index.json.jbuilder b/app/views/management/mime_types/index.json.jbuilder new file mode 100644 index 00000000..ad7a3f10 --- /dev/null +++ b/app/views/management/mime_types/index.json.jbuilder @@ -0,0 +1,4 @@ +json.array!(@management_mime_types) do |management_mime_type| + json.extract! management_mime_type, :id + json.url management_mime_type_url(management_mime_type, format: :json) +end diff --git a/app/views/management/mime_types/new.html.erb b/app/views/management/mime_types/new.html.erb new file mode 100644 index 00000000..244204f0 --- /dev/null +++ b/app/views/management/mime_types/new.html.erb @@ -0,0 +1,5 @@ +<h1>New Management Mime Type</h1> + +<%= render 'form' %> + +<%= link_to 'Back', management_mime_types_path %> diff --git a/app/views/management/mime_types/show.html.erb b/app/views/management/mime_types/show.html.erb new file mode 100644 index 00000000..6ba77c16 --- /dev/null +++ b/app/views/management/mime_types/show.html.erb @@ -0,0 +1,4 @@ +<p id="notice"><%= notice %></p> + +<%= link_to 'Edit', edit_management_mime_type_path(@management_mime_type) %> | +<%= link_to 'Back', management_mime_types_path %> diff --git a/app/views/management/mime_types/show.json.jbuilder b/app/views/management/mime_types/show.json.jbuilder new file mode 100644 index 00000000..2ac13213 --- /dev/null +++ b/app/views/management/mime_types/show.json.jbuilder @@ -0,0 +1 @@ +json.extract! @management_mime_type, :id, :created_at, :updated_at diff --git a/db/migrate/20160310121839_create_mime_types.rb b/db/migrate/20160310121839_create_mime_types.rb new file mode 100644 index 00000000..4b5ecbad --- /dev/null +++ b/db/migrate/20160310121839_create_mime_types.rb @@ -0,0 +1,8 @@ +class CreateMimeTypes < ActiveRecord::Migration + def change + create_table :mime_types do |t| + t.string :extension + t.string :mime_type + end + end +end diff --git a/test/fixtures/management/mime_types.yml b/test/fixtures/management/mime_types.yml new file mode 100644 index 00000000..937a0c00 --- /dev/null +++ b/test/fixtures/management/mime_types.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/models/management/mime_type_test.rb b/test/models/management/mime_type_test.rb new file mode 100644 index 00000000..aa1ce197 --- /dev/null +++ b/test/models/management/mime_type_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class Management::MimeTypeTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end -- GitLab