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

77 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
2020-05-23 21:47:23 +00:00
import android.annotation.SuppressLint
2019-05-15 20:55:57 +00:00
import android.app.Dialog
import android.os.Bundle
2019-05-15 20:55:57 +00:00
import android.provider.MediaStore.Audio.Playlists.Members.PLAYLIST_ID
2020-05-23 21:47:23 +00:00
import android.view.LayoutInflater
2019-05-15 20:55:57 +00:00
import androidx.fragment.app.DialogFragment
import code.name.monkey.appthemehelper.util.MaterialUtil
import code.name.monkey.retromusic.R
2020-07-19 11:21:15 +00:00
import code.name.monkey.retromusic.extensions.colorButtons
2020-05-23 21:47:23 +00:00
import code.name.monkey.retromusic.extensions.extraNotNull
import code.name.monkey.retromusic.util.PlaylistsUtil
2020-05-23 21:47:23 +00:00
import com.google.android.material.dialog.MaterialAlertDialogBuilder
2019-05-15 20:55:57 +00:00
import com.google.android.material.textfield.TextInputEditText
import com.google.android.material.textfield.TextInputLayout
2019-05-15 20:55:57 +00:00
class RenamePlaylistDialog : DialogFragment() {
2020-05-23 21:47:23 +00:00
@SuppressLint("InflateParams")
override fun onCreateDialog(
savedInstanceState: Bundle?
): Dialog {
val layout = LayoutInflater.from(requireContext())
.inflate(R.layout.dialog_playlist, null)
val inputEditText: TextInputEditText = layout.findViewById(R.id.actionNewPlaylist)
val nameContainer: TextInputLayout =
layout.findViewById(R.id.actionNewPlaylistContainer)
MaterialUtil.setTint(nameContainer, false)
2020-05-23 22:26:45 +00:00
return MaterialAlertDialogBuilder(
requireContext(),
R.style.ThemeOverlay_MaterialComponents_Dialog_Alert
)
2020-05-23 21:47:23 +00:00
.setTitle(R.string.rename_playlist_title)
.setView(layout)
.setNegativeButton(android.R.string.cancel, null)
.setPositiveButton(R.string.action_rename) { _, _ ->
val name = inputEditText.text.toString()
if (name.isNotEmpty()) {
PlaylistsUtil.renamePlaylist(
requireContext(),
extraNotNull<Long>(PLAYLIST_ID).value,
name
)
2019-05-15 20:55:57 +00:00
}
2020-02-01 17:53:26 +00:00
}
2020-05-23 21:47:23 +00:00
.create()
2020-07-19 11:21:15 +00:00
.colorButtons()
}
companion object {
fun create(playlistId: Long): RenamePlaylistDialog {
val dialog = RenamePlaylistDialog()
val args = Bundle()
2019-05-15 20:55:57 +00:00
args.putLong(PLAYLIST_ID, playlistId)
dialog.arguments = args
return dialog
}
}
}