1
+ /*
2
+ * Copyright 2022 Jedlix B.V. The Netherlands
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ package com.jedlix.sdk.example.adapter
18
+
19
+ import android.annotation.SuppressLint
20
+ import android.view.LayoutInflater
21
+ import android.view.ViewGroup
22
+ import androidx.databinding.BindingAdapter
23
+ import androidx.lifecycle.LifecycleOwner
24
+ import androidx.recyclerview.widget.RecyclerView
25
+ import com.jedlix.sdk.example.databinding.ViewConnectSessionViewModelRowBinding
26
+ import com.jedlix.sdk.example.databinding.ViewGroupedConnectSessionViewModelRowBinding
27
+ import com.jedlix.sdk.example.viewModel.GroupedConnectSessionViewModel
28
+
29
+ class GroupedConnectSessionViewModelAdapter (private val lifecycleOwner : LifecycleOwner ) : RecyclerView.Adapter<GroupedConnectSessionViewModelAdapter.ViewHolder>() {
30
+
31
+ companion object {
32
+ @BindingAdapter(" groupedConnectSessionViewModels" )
33
+ @JvmStatic
34
+ fun bindModelButtons (recyclerView : RecyclerView , connectSessionViewModels : List <GroupedConnectSessionViewModel >? ) {
35
+ (recyclerView.adapter as ? GroupedConnectSessionViewModelAdapter )?.groupedConnectSessionViewModels = connectSessionViewModels ? : emptyList()
36
+ }
37
+ }
38
+
39
+ class ViewHolder (val binding : ViewGroupedConnectSessionViewModelRowBinding ) : RecyclerView.ViewHolder(binding.root)
40
+
41
+ private var groupedConnectSessionViewModels: List <GroupedConnectSessionViewModel > = emptyList()
42
+ @SuppressLint(" NotifyDataSetChanged" )
43
+ set(value) {
44
+ field = value
45
+ notifyDataSetChanged()
46
+ }
47
+
48
+ override fun getItemCount (): Int = groupedConnectSessionViewModels.size
49
+
50
+ override fun onBindViewHolder (holder : ViewHolder , position : Int ) {
51
+ holder.binding.apply {
52
+ viewModel = groupedConnectSessionViewModels[position]
53
+
54
+ }
55
+ }
56
+
57
+ override fun onCreateViewHolder (parent : ViewGroup , viewType : Int ) = ViewHolder (
58
+ ViewGroupedConnectSessionViewModelRowBinding .inflate(LayoutInflater .from(parent.context), parent, false ).apply {
59
+ lifecycleOwner = this @GroupedConnectSessionViewModelAdapter.lifecycleOwner
60
+ connectSessions.adapter = ConnectSessionViewModelAdapter (this @GroupedConnectSessionViewModelAdapter.lifecycleOwner)
61
+ }
62
+ )
63
+ }
0 commit comments