Rails соединяется, давая неожиданные результаты - PullRequest
0 голосов
/ 03 апреля 2019

Структура отношений

User--> Favorite  
User --> Profile  --> Activity -->Favorite
                  --> Hobby
                  --> Address

Отношения

User has_one Profile
Profile has_one Activity (polymorphic association)
Profile has_one Hobby (polymorphic association )
Profile has_one Address (polymorphic association)
User has_many Activities (through Favorites )
Activity has_many Users (through Favorites )

ЦЕЛЬ

Цель состоит в том, чтобы перечислить все профили, показывающие связанные поля Активность, Хобби и адрес.

Таким образом, все профили будут отображаться, и если есть запись избранного, которая имеет Favorites.activity_id = activity.id и Favorites.user_id = CURRENTUSER, он будет отображать флаг, 1 или true (если пользователь одобрил действие), и0, ноль или ложь, если избранная запись не существует для этого конкретного действия и пользователя.

Код активной записи Rails:

Profile.joins(:hobby,:address,:activity => :favorites).select(profiles.*,hobbies.*,addresses.*,profile.id as id, hobbies.id as hobby_id, addresses.id as address_id, favorites.*)

ОШИБКА: Код не отображает всесписки профилей.

Было бы полезно создать оператор SQL или исправить код моей активной записи.

Схема

create_table "profiles", force: :cascade do |t|
    t.string "name"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.bigint "user_id"
  end

  create_table "hobbies", force: :cascade do |t|

    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "hobbyable_type"
    t.bigint "hobbyable_id"
  end

  create_table "addresses", force: :cascade do |t|
    t.string "business_street"
    t.string "business_city"
    t.string "business_state"
    t.string "business_country"
    t.string "business_postal_code"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "addressable_type"
    t.bigint "addressable_id"
    t.decimal "latitude", precision: 10, scale: 6
    t.decimal "longitude", precision: 10, scale: 6

  end

  create_table "activities", force: :cascade do |t|
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "activityable_type"
    t.bigint "activityable_id"

  end

  create_table "favorites", force: :cascade do |t|
    t.integer "user_id"
    t.integer "activity_id"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["activity_id"], name: "index_favorites_on_activity_id"
    t.index ["user_id", "activity_id"], name: "index_favorites_on_user_id_and_activity_id", unique: true
    t.index ["user_id"], name: "index_favorites_on_user_id"
  end


  create_table "users", force: :cascade do |t|
    t.string "email", default: "", null: false
    t.string "encrypted_password", default: "", null: false
    t.string "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "first_name"
    t.string "last_name"
    t.integer "sign_in_count", default: 0, null: false
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string "current_sign_in_ip"
    t.string "last_sign_in_ip"
    t.index ["email"], name: "index_users_on_email", unique: true
    t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
  end
...