Rails 6: для каждого пользователя должен быть создан только один профиль - PullRequest
0 голосов
/ 16 июня 2019

В настоящее время я работаю над приложением Rails 6. У меня есть следующая ассоциация. Пользователь имеет профиль, а профиль принадлежит пользователю. При редактировании профиля для пользователя у меня было два профиля для пользователя. Я хотел бы иметь только один профиль для пользователя.

Форма редактирования: профиль / edit.html.erb

<%= form_for @profile do |f| %>
        <div class="form-group">
          <%= f.label :avatar %>
          <%= f.file_field :avatar, as: :file, class: "form-control" %>
        </div>

        <div class="form-group">
          <%= f.label :full_name, 'Full Name' %>
          <%= f.text_field :full_name, autofocus: true, class: "form-control" %>
        </div>

        <div class="form-group">
          <%= f.label :city, 'City' %>
          <%= f.text_field :city, class: "form-control" %>
        </div>

        <div class="form-group">
          <%= f.label :bio, 'Bio'%>
            <p> Why did you join ArtsySpace?
            What should other people here know about you?
            </p>
          <%= f.text_field :bio, class: "form-control"%>
        </div>

        <div class="form-group">
          <%= f.submit "Edit profile", class: "btn btn-primary" %>
        </div>
      <% end %>

Я вижу из консоли, что у пользователя 1 есть 2 профиля. Я не уверен, как был создан профиль, может быть, я нажал метод создания из контроллера профиля, но ошибка, но я бы хотел, чтобы этого не произошло. Существует ли проверка, что только один профиль принадлежит пользователю?

class ProfilesController < ApplicationController
  def new
    @profile = current_user.build_profile
  end

  def create
    @profile = current_user.create_profile(profile_params)
    @profile.avatar.attach(params[:profile][:avatar])

    if @profile.save
      redirect_to @post
    else
      render 'new'
    end
  end

  def show
    @profile = Profile.find(params[:id])
  end

  def edit
    @profile = current_user.profile
  end

  def update
    @profile = current_user.profile
      if @profile.update!(profile_params)
        redirect_to @profile, notice: 'Profile was successfully updated.'
      else
        render :edit
      end
  end

  def delete
    @profile = current_user.profile.find(params[:id])
    @profile.destroy
  end

  private

  def profile_params
    params.require(:profile).permit(:full_name, :city, :bio, :avatar)
  end
end

Я не уверен, что проблема связана с настройкой маршрутов?

Rails.application.routes.draw do
  devise_for :users

  devise_scope :users do
    resources :profiles, only: [:edit, :update]
  end

  resources :profiles, only: [:show]

  resources :posts do
    resource :comments, only: %i[show new create edit update]
  end
end

class User < ApplicationRecord
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :validatable
  has_many :posts
  has_one :profile
  accepts_nested_attributes_for :profile
end

Из приведенного ниже фрагмента видно, что у пользователя есть 2 профиля для user_id: 1

[#<Profile id: 3, user_id: 1, full_name: "steven ", city: "diego ", bio: "Because im ", created_at: "2019-06-12 23:11:49", updated_at: "2019-06-16 18:49:22">, #<Profile id: 4, user_id: 1, full_name: "andrew", city: "Tony", bio: "because i know ", created_at: "2019-06-12 23:12:35", updated_at: "2019-06-16 18:51:22">]

Не уверен, откуда возникла проблема.

Ответы [ 2 ]

0 голосов
/ 17 июня 2019

Я решил не использовать контроллер profile и просто иметь одну модель User, которую можно использовать в качестве профиля.

0 голосов
/ 16 июня 2019

Я однажды решил это, сделав (я знаю, что это странно, я просто выдвигаю это здесь как идею)

has_one  :profile
has_many :profiles

validates :profiles, length: { in: 0..1 }

https://guides.rubyonrails.org/active_record_validations.html#length

...