app/src/main/java/com/talentica/androidkotlin/ProductFragment.kt
/* * 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.Bundleimport android.view.LayoutInflaterimport android.view.Viewimport android.view.ViewGroupimport androidx.databinding.DataBindingUtilimport androidx.fragment.app.Fragmentimport androidx.lifecycle.ViewModelProvidersimport com.talentica.androidkotlin.databinding.ProductFragmentBindingimport com.talentica.androidkotlin.model.Commentimport com.talentica.androidkotlin.ui.CommentAdapterimport com.talentica.androidkotlin.ui.CommentClickCallbackimport com.talentica.androidkotlin.viewmodel.ProductViewModel class ProductFragment : Fragment() { private lateinit var mBinding: ProductFragmentBinding private var mCommentAdapter: CommentAdapter? = nullSimilar 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 commentsSimilar 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 } }}