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

72 lines
2.4 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.
*/
2018-12-06 08:52:57 +00:00
package code.name.monkey.retromusic.dialogs
2019-05-15 20:55:57 +00:00
import android.app.Dialog
2018-12-06 08:52:57 +00:00
import android.os.Bundle
import android.text.Html
2019-05-15 20:55:57 +00:00
import androidx.fragment.app.DialogFragment
2018-12-06 08:52:57 +00:00
import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.model.Song
import code.name.monkey.retromusic.util.MusicUtil
2019-05-15 20:55:57 +00:00
import com.afollestad.materialdialogs.MaterialDialog
import com.afollestad.materialdialogs.bottomsheets.BottomSheet
2018-12-06 08:52:57 +00:00
2019-05-15 20:55:57 +00:00
class DeleteSongsDialog : DialogFragment() {
2018-12-06 08:52:57 +00:00
2019-05-15 20:55:57 +00:00
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
2018-12-06 08:52:57 +00:00
val songs = arguments!!.getParcelableArrayList<Song>("songs")
2019-05-15 20:55:57 +00:00
val title: Int
2018-12-06 08:52:57 +00:00
val content: CharSequence
2019-05-15 20:55:57 +00:00
if (songs.size > 1) {
title = R.string.delete_songs_title
content = Html.fromHtml(getString(R.string.delete_x_songs, songs.size))
} else {
title = R.string.delete_song_title
content = Html.fromHtml(getString(R.string.delete_song_x, songs.get(0).title))
2018-12-06 08:52:57 +00:00
}
2019-05-15 20:55:57 +00:00
return MaterialDialog(activity!!, BottomSheet()).show {
title(title)
message(text = content)
negativeButton(android.R.string.cancel)
positiveButton(R.string.action_delete) {
if (activity == null)
return@positiveButton
MusicUtil.deleteTracks(activity!!, songs);
2018-12-06 08:52:57 +00:00
}
}
}
companion object {
fun create(song: Song): DeleteSongsDialog {
val list = ArrayList<Song>()
list.add(song)
return create(list)
}
fun create(songs: ArrayList<Song>): DeleteSongsDialog {
val dialog = DeleteSongsDialog()
val args = Bundle()
args.putParcelableArrayList("songs", songs)
dialog.arguments = args
return dialog
}
}
}