7

場合:

ステーション フォームにはスラッグ フィールドが含まれています。値が入力された場合は、スラッグとして使用する必要があります。

編集:いくつかの明確化:

私が欲しいのは、ワードプレスでスラッグがどのように機能するかによく似ています:

  • スラッグが提供されていない場合 -> 名前をスラッグ
  • スラッグが提供されている場合 -> ユーザーが入力したスラッグを使用
  • スラッグが更新された場合 -> 古いスラッグを履歴にプッシュ

私の問題:

ユーザー提供のスラッグを使用するためのフレンドリ ID を取得する方法がわかりません。

class Station < ActiveRecord::Base
  extend FriendlyId
  belongs_to :user
  has_many  :measures
  validates_uniqueness_of :hw_id
  validates_presence_of :hw_id
  class_attribute :zone_class
  self.zone_class ||= Timezone::Zone
  friendly_id :name, :use => [:slugged, :history]

  before_save :set_timezone!

  ....

  def should_generate_new_friendly_id?
    name_changed? or slug_changed?
  end
end

編集:

<%= form_for(@station) do |f| %>

<%=
    f.div_field_with_label(:name) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:slug) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:hw_id, 'Hardware ID') do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:latitude) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:longitude) do |key|
      f.text_field(key)
    end
%>
<%= f.div_field_with_label(:user_id, "Owner") do |key|
        f.select(:user_id, options_from_collection_for_select(User.all, :id, :email), { include_blank: true  })
    end
%>

  <div class="actions">
    <%= f.submit %>
  </div>
<% end %><%= form_for(@station) do |f| %>

<%=
    f.div_field_with_label(:name) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:slug) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:hw_id, 'Hardware ID') do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:latitude) do |key|
      f.text_field(key)
    end
%>
<%=
    f.div_field_with_label(:longitude) do |key|
      f.text_field(key)
    end
%>
<%= f.div_field_with_label(:user_id, "Owner") do |key|
        f.select(:user_id, options_from_collection_for_select(User.all, :id, :email), { include_blank: true  })
    end
%>

  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>
4

2 に答える 2

5

これは私がそれを解決した方法です:

class Station < ActiveRecord::Base
  extend FriendlyId
  belongs_to :user
  has_many  :measures
  validates_uniqueness_of :hw_id
  validates_presence_of :hw_id
  class_attribute :zone_class
  self.zone_class ||= Timezone::Zone
  friendly_id :name, :use => [:slugged, :history]
  before_save :evaluate_slug
  before_save :set_timezone!


  def should_generate_new_friendly_id?
    if !slug?
      name_changed?
    else
      false
    end
  end

end

そしてテスト:

/spec/models/station_spec.rb

describe Station do
  ...   
  let(:station) { create(:station) }

  describe "slugging" do
    it "should slug name in absence of a slug" do
      station = create(:station, name: 'foo')
      expect(station.slug).to eq 'foo'
    end

    it "should use slug if provided" do
      station = create(:station, name: 'foo', slug: 'bar')
      expect(station.slug).to eq 'bar'
    end
  end
  ...
end

/spec/controllers/stations_controller.rb

describe StationsController do

    ...

    describe "POST create" do
        it "creates a station with a custom slug" do
          valid_attributes[:slug] = 'custom_slug'
          post :create, {:station => valid_attributes}
          get :show, id: 'custom_slug'
          expect(response).to be_success
        end

        ...
    end

    describe "PUT update" do
        it "updates the slug" do
          put :update, {:id => station.to_param, :station => { slug: 'custom_slug' }}
          get :show, id: 'custom_slug'
          expect(response).to be_success
        end

        ...
    end 

    ...
end
于 2013-11-16T15:08:05.610 に答える