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

CardProjectResourceAdapter.java « projectresources « 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: b6747a11ce51e0b0c9c8d8a104899a46e5504f5a (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
54
package it.niedermann.nextcloud.deck.ui.card.projectresources;

import android.view.LayoutInflater;
import android.view.ViewGroup;

import androidx.annotation.NonNull;
import androidx.lifecycle.LifecycleOwner;
import androidx.recyclerview.widget.RecyclerView;

import java.util.ArrayList;
import java.util.List;

import it.niedermann.nextcloud.deck.databinding.ItemProjectResourceBinding;
import it.niedermann.nextcloud.deck.model.Account;
import it.niedermann.nextcloud.deck.model.ocs.projects.OcsProjectResource;

public class CardProjectResourceAdapter extends RecyclerView.Adapter<CardProjectResourceViewHolder> {

    @NonNull
    private final Account account;
    @NonNull
    private final List<OcsProjectResource> resources;
    @NonNull
    private final LifecycleOwner owner;

    public CardProjectResourceAdapter(@NonNull Account account, @NonNull List<OcsProjectResource> resources, @NonNull LifecycleOwner owner) {
        this.account = account;
        this.resources = new ArrayList<>(resources.size());
        this.resources.addAll(resources);
        this.owner = owner;
        setHasStableIds(true);
    }

    @Override
    public long getItemId(int position) {
        return resources.get(position).getLocalId();
    }

    @NonNull
    @Override
    public CardProjectResourceViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        return new CardProjectResourceViewHolder(ItemProjectResourceBinding.inflate(LayoutInflater.from(parent.getContext()), parent, false));
    }

    @Override
    public void onBindViewHolder(@NonNull CardProjectResourceViewHolder holder, int position) {
        holder.bind(account, resources.get(position), owner);
    }

    @Override
    public int getItemCount() {
        return this.resources.size();
    }
}