Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CommentsViewModel.java « comments « card « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79b0043fed99d22e0dc4ea69d31954dedbd7db76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package it.niedermann.nextcloud.deck.ui.card.comments;

import static androidx.lifecycle.Transformations.distinctUntilChanged;

import android.app.Application;

import androidx.annotation.NonNull;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.MutableLiveData;

import com.nextcloud.android.sso.exceptions.NextcloudFilesAppAccountNotFoundException;

import java.util.List;

import it.niedermann.nextcloud.deck.model.Account;
import it.niedermann.nextcloud.deck.model.ocs.comment.DeckComment;
import it.niedermann.nextcloud.deck.model.ocs.comment.full.FullDeckComment;
import it.niedermann.nextcloud.deck.remote.api.IResponseCallback;
import it.niedermann.nextcloud.deck.ui.viewmodel.SyncViewModel;

@SuppressWarnings("WeakerAccess")
public class CommentsViewModel extends SyncViewModel {

    private final MutableLiveData<FullDeckComment> replyToComment = new MutableLiveData<>();

    public CommentsViewModel(@NonNull Application application, @NonNull Account account) throws NextcloudFilesAppAccountNotFoundException {
        super(application, account);
    }

    public void setReplyToComment(FullDeckComment replyToComment) {
        this.replyToComment.postValue(replyToComment);
    }

    public LiveData<FullDeckComment> getReplyToComment() {
        return this.replyToComment;
    }

    public LiveData<List<FullDeckComment>> getFullCommentsForLocalCardId(long localCardId) {
        return distinctUntilChanged(baseRepository.getFullCommentsForLocalCardId(localCardId));
    }

    public void addCommentToCard(long accountId, long cardId, @NonNull DeckComment comment) {
        syncRepository.addCommentToCard(accountId, cardId, comment);
    }

    public void updateComment(long accountId, long localCardId, long localCommentId, String comment) {
        syncRepository.updateComment(accountId, localCardId, localCommentId, comment);
    }

    public void deleteComment(long accountId, long localCardId, long localCommentId, @NonNull IResponseCallback<Void> callback) {
        syncRepository.deleteComment(accountId, localCardId, localCommentId, callback);
    }
}