BookInfoScreenViewModel

ViewModel for the BookInfoScreen.

See also

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

MutableLiveData the book state

Link copied to clipboard

String? the user's email

Link copied to clipboard

MutableLiveData the loading state

Link copied to clipboard
val message: StateFlow<String?>

MutableStateFlow the message state

Link copied to clipboard
val reloadInterface: StateFlow<Boolean>

StateFlow that represents whether or not the view needs to reload the page when a change in the database is detected

Link copied to clipboard

LiveData the seller's interest list

Link copied to clipboard

MutableLiveData the user state

Link copied to clipboard

String? the user's username

Functions

Link copied to clipboard
Link copied to clipboard
fun addInterestObject(book: MBook, buyer: MUser)

Adds a new interest object to the interestList of a specified Book

Link copied to clipboard
fun buyerVerifiedBook(book: MBook, currInterestObject: InterestObject)

Updates the book in the database with the provided details.

Link copied to clipboard
fun checkBookId(bookId: String, navigate: () -> Unit)

Called when the view is to be reloaded. Checks if any book displayed on a page currently, is no longer available to redirect user.

Link copied to clipboard
fun deleteInterestObject(book: MBook, currInterestObject: InterestObject)

Deletes the specified interest object from the specified book's interestList

Link copied to clipboard

Fetches the book details from the database

Link copied to clipboard
suspend fun getUser(userID: String = userName!!)

Fetches the user details from the database

Link copied to clipboard

Prepares to send an Email

Link copied to clipboard

Retrieves the seller's interest list - all user's interested in all of their listings

Link copied to clipboard
fun saveBook(book: MBook)

Saves the book in the user's collection by updating the "saved_books" field.

Link copied to clipboard
fun sellerVerifiedBook(book: MBook, currInterestObject: InterestObject)

Updates the book in the database with the provided details.

Link copied to clipboard
fun unsaveBook(book: MBook)

Removes the book from the user's saved books collection by updating the "saved_books" field.