Talentica/AndroidWithKotlin

View on GitHub
app/src/main/java/com/talentica/androidkotlin/ProductFragment.kt

Summary

Maintainability
A
3 hrs
Test Coverage
/*
* Copyright 2017, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.talentica.androidkotlin
 
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.databinding.DataBindingUtil
import androidx.fragment.app.Fragment
import androidx.lifecycle.ViewModelProviders
import com.talentica.androidkotlin.databinding.ProductFragmentBinding
import com.talentica.androidkotlin.model.Comment
import com.talentica.androidkotlin.ui.CommentAdapter
import com.talentica.androidkotlin.ui.CommentClickCallback
import com.talentica.androidkotlin.viewmodel.ProductViewModel
 
class ProductFragment : Fragment() {
private lateinit var mBinding: ProductFragmentBinding
private var mCommentAdapter: CommentAdapter? = null
Similar blocks of code found in 2 locations. Consider refactoring.
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate this data binding layout
mBinding = DataBindingUtil.inflate(inflater, R.layout.product_fragment, container, false)
 
// Create and set the adapter for the RecyclerView.
mCommentAdapter = CommentAdapter(mCommentClickCallback)
mBinding.commentList.adapter = mCommentAdapter
return mBinding.root
}
 
private val mCommentClickCallback = object : CommentClickCallback {
override fun onClick(comment: Comment?) {
// no-op
}
}
 
override fun onActivityCreated(savedInstanceState: Bundle?) {
super.onActivityCreated(savedInstanceState)
val factory = ProductViewModel.Factory(
requireActivity().application, requireArguments().getInt(KEY_PRODUCT_ID)
)
val model = ViewModelProviders.of(this, factory)
.get(ProductViewModel::class.java)
mBinding.productViewModel = model
subscribeToModel(model)
}
 
private fun subscribeToModel(model: ProductViewModel) {
 
// Observe product data
model.observableProduct?.observe(
viewLifecycleOwner,
{ productEntity -> model.setProduct(productEntity) })
 
// Observe comments
Similar blocks of code found in 2 locations. Consider refactoring.
model.comments?.observe(viewLifecycleOwner, { commentEntities ->
if (commentEntities != null) {
mBinding.isLoading = false
mCommentAdapter!!.setCommentList(commentEntities)
} else {
mBinding.isLoading = true
}
})
}
 
companion object {
private const val KEY_PRODUCT_ID = "product_id"
 
/** Creates product fragment for specific product ID */
fun forProduct(productId: Int): ProductFragment {
val fragment = ProductFragment()
val args = Bundle()
args.putInt(KEY_PRODUCT_ID, productId)
fragment.arguments = args
return fragment
}
}
}