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

72 lines
3.0 KiB
Kotlin
Raw Normal View History

2020-10-06 08:46:04 +00:00
/*
* Copyright (c) 2020 Hemanth Savarla.
*
* 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
2019-05-15 20:55:57 +00:00
import android.app.Dialog
import android.os.Bundle
2020-05-23 21:47:23 +00:00
import android.view.LayoutInflater
2020-09-05 18:24:05 +00:00
import androidx.core.os.bundleOf
2019-05-15 20:55:57 +00:00
import androidx.fragment.app.DialogFragment
2020-09-05 18:24:05 +00:00
import code.name.monkey.retromusic.EXTRA_PLAYLIST_ID
import code.name.monkey.retromusic.R
2020-09-05 18:24:05 +00:00
import code.name.monkey.retromusic.db.PlaylistEntity
import code.name.monkey.retromusic.extensions.accentColor
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
2020-07-19 14:39:04 +00:00
import code.name.monkey.retromusic.extensions.materialDialog
2020-09-05 18:24:05 +00:00
import code.name.monkey.retromusic.fragments.LibraryViewModel
import code.name.monkey.retromusic.fragments.ReloadType
2019-05-15 20:55:57 +00:00
import com.google.android.material.textfield.TextInputEditText
import com.google.android.material.textfield.TextInputLayout
2020-09-05 18:24:05 +00:00
import org.koin.androidx.viewmodel.ext.android.sharedViewModel
2019-05-15 20:55:57 +00:00
class RenamePlaylistDialog : DialogFragment() {
2020-09-05 18:24:05 +00:00
private val libraryViewModel by sharedViewModel<LibraryViewModel>()
2020-09-05 18:24:05 +00:00
companion object {
fun create(playlistEntity: PlaylistEntity): RenamePlaylistDialog {
return RenamePlaylistDialog().apply {
arguments = bundleOf(
EXTRA_PLAYLIST_ID to playlistEntity
)
}
}
}
2020-05-23 21:47:23 +00:00
2020-09-05 18:24:05 +00:00
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val playlistEntity = extraNotNull<PlaylistEntity>(EXTRA_PLAYLIST_ID).value
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)
nameContainer.accentColor()
inputEditText.setText(playlistEntity.playlistName)
2020-07-19 14:39:04 +00:00
return materialDialog(R.string.rename_playlist_title)
2020-05-23 21:47:23 +00:00
.setView(layout)
.setNegativeButton(android.R.string.cancel, null)
.setPositiveButton(R.string.action_rename) { _, _ ->
val name = inputEditText.text.toString()
if (name.isNotEmpty()) {
2020-09-05 18:24:05 +00:00
libraryViewModel.renameRoomPlaylist(playlistEntity.playListId, name)
libraryViewModel.forceReload(ReloadType.Playlists)
} else {
nameContainer.error = "Playlist name should'nt be empty"
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()
}
2020-10-06 08:46:04 +00:00
}