PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/dialogs/AddToPlaylistDialog.kt

79 lines
2.8 KiB
Kotlin
Raw Normal View History

2019-03-03 09:20:15 +00:00
/*
* Copyright (c) 2019 Hemanth Savarala.
*
* Licensed under the GNU General Public License v3
*
* This is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*/
package code.name.monkey.retromusic.dialogs
import android.app.Dialog
import android.os.Bundle
import androidx.fragment.app.DialogFragment
import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.loaders.PlaylistLoader
import code.name.monkey.retromusic.model.Song
import code.name.monkey.retromusic.util.PlaylistsUtil
2019-08-01 08:27:05 +00:00
import com.afollestad.materialdialogs.MaterialDialog
import com.afollestad.materialdialogs.list.listItems
2019-03-04 03:55:09 +00:00
class AddToPlaylistDialog : DialogFragment() {
2019-07-30 18:30:19 +00:00
override fun onCreateDialog(
2020-02-17 11:20:08 +00:00
savedInstanceState: Bundle?
2019-07-30 18:30:19 +00:00
): Dialog {
2019-10-28 16:49:35 +00:00
val playlists = PlaylistLoader.getAllPlaylists(requireContext())
2019-08-01 08:27:05 +00:00
val playlistNames: MutableList<String> = mutableListOf()
2019-10-28 16:49:35 +00:00
playlistNames.add(requireContext().resources.getString(R.string.action_new_playlist))
for (p in playlists) {
playlistNames.add(p.name)
2019-08-01 08:27:05 +00:00
}
return MaterialDialog(requireContext()).show {
2019-08-01 08:27:05 +00:00
title(R.string.add_playlist_title)
2019-08-01 08:27:05 +00:00
listItems(items = playlistNames) { dialog, index, _ ->
2020-03-01 11:29:50 +00:00
val songs =
requireArguments().getParcelableArrayList<Song>("songs") ?: return@listItems
2019-08-01 08:27:05 +00:00
if (index == 0) {
dialog.dismiss()
2020-02-17 11:20:08 +00:00
activity?.supportFragmentManager?.let {
CreatePlaylistDialog.create(songs).show(it, "ADD_TO_PLAYLIST")
}
2019-08-01 08:27:05 +00:00
} else {
dialog.dismiss()
PlaylistsUtil.addToPlaylist(
requireContext(),
songs,
playlists[index - 1].id,
true
)
2019-07-30 18:30:19 +00:00
}
2019-08-01 08:27:05 +00:00
}
}
}
companion object {
fun create(song: Song): AddToPlaylistDialog {
val list = ArrayList<Song>()
list.add(song)
return create(list)
}
2020-02-17 11:20:08 +00:00
fun create(songs: List<Song>): AddToPlaylistDialog {
val dialog = AddToPlaylistDialog()
val args = Bundle()
2020-02-17 11:20:08 +00:00
args.putParcelableArrayList("songs", ArrayList(songs))
dialog.arguments = args
return dialog
}
}
}