This commit is contained in:
kunfei
2022-04-07 15:31:43 +08:00
parent 3fe22776fa
commit 8e07b42d6b
2 changed files with 5 additions and 5 deletions
@@ -300,9 +300,7 @@ class BookInfoActivity :
}
}
tvChangeSource.setOnClickListener {
viewModel.bookData.value?.let {
showDialogFragment(ChangeBookSourceDialog(it.name, it.author))
}
showDialogFragment(ChangeBookSourceDialog(viewModel.name, viewModel.author))
}
tvTocView.setOnClickListener {
if (!viewModel.inBookshelf) {
@@ -27,6 +27,8 @@ import kotlinx.coroutines.Dispatchers.IO
class BookInfoViewModel(application: Application) : BaseViewModel(application) {
val bookData = MutableLiveData<Book>()
val chapterListData = MutableLiveData<List<BookChapter>>()
var name = ""
var author = ""
var durChapterIndex = 0
var inBookshelf = false
var bookSource: BookSource? = null
@@ -34,8 +36,8 @@ class BookInfoViewModel(application: Application) : BaseViewModel(application) {
fun initData(intent: Intent) {
execute {
val name = intent.getStringExtra("name") ?: ""
val author = intent.getStringExtra("author") ?: ""
name = intent.getStringExtra("name") ?: ""
author = intent.getStringExtra("author") ?: ""
val bookUrl = intent.getStringExtra("bookUrl") ?: ""
appDb.bookDao.getBook(name, author)?.let {
inBookshelf = true