Rails - 将现有曲目添加到现有播放列表 - 已更新

Rails - Adding existing track to an existing playlist - UPDATED

见下方更新

我想将现有曲目添加到现有播放列表,但我不确定如何处理。

我有一个

仅供参考 - 下面粘贴的模型

我假设我需要编写一个函数来:

监听轨道上的点击事件

capture track_id

要求选择一个播放列表

display existing playlists

listen for click event on desired playlist

capture playlist_id

add track_id and playlist_id into Join Table

然后我应该能够导航到播放列表显示页面并看到添加的曲目。

目前,我将尝试呈现一个简单的表单下拉列表,在每个曲目上显示播放列表,并在我的 playlist_tracks 控制器中添加一个创建方法。

但是,如果有人有更好的想法或 link 一个很好的资源,我将不胜感激。如果我进步

,会更新这个post

----- 型号 -----

播放列表模型

class Playlist < ApplicationRecord
    has_many :playlist_tracks
    has_many :tracks, through: :playlist_tracks
    has_many :tags, through: :playlist_tags
    belongs_to :user

    validates :playlist_title, presence: true, length: { in: 1..20 }
    validates :playlist_description, presence: true, length: { in: 10..60 }

    has_one_attached :photo
end

跟踪模型

class Track < ApplicationRecord
    belongs_to :album
    belongs_to :user
    has_many :playlist_tracks
    has_many :playlists, through: :playlist_tracks
    has_many :tags, through: :tags_tracks

    validates :title, presence: true, length: { in: 1..20 }
    validates :description, presence: true, length: { in: 10..60 }
    has_one_attached :photo
    has_one_attached :track
end

播放列表曲目模型

class PlaylistTrack < ApplicationRecord
  belongs_to :track
  belongs_to :playlist
end

更新

我设法从导师那里得到了一些帮助。我们决定第一个最简单的方法是在每个曲目卡上包含一个简单的表格,其中包含一个包含播放列表集合的下拉菜单。

下面的表单和控制器

表格

<%= simple_form_for @playlist_track, url: playlist_tracks_path, method: :post do |f| %>
<%= f.association :playlist, :collection => Playlist.all, label_method: :playlist_title %>
<%= f.input :track_id, as: :hidden, input_html: { value: track.id } %>
<%= f.submit "Create" %>
<% end %>

控制器

class PlaylistTracksController < ApplicationController
    def create
    @playlist_track = PlaylistTrack.new(playlist_track_params)
        if @playlist_track.save!
            redirect_to station_index_path
        else
            render 'new'
        end
    end

    private
    def playlist_track_params
        params.require(:playlist_track).permit(:track_id, :playlist_id)
    end
end

我现在可以将曲目添加到现有播放列表:)