Improve editors choice stream

This commit is contained in:
Rahul Kumar Patel
2021-02-21 20:04:30 +05:30
parent 0471e52b65
commit cd96e80930
9 changed files with 226 additions and 11 deletions

View File

@@ -144,6 +144,7 @@
<activity android:name=".view.ui.preferences.SettingsActivity" /> <activity android:name=".view.ui.preferences.SettingsActivity" />
<activity android:name=".view.ui.about.AboutActivity" /> <activity android:name=".view.ui.about.AboutActivity" />
<activity android:name=".view.ui.commons.ExpandedStreamBrowseActivity" /> <activity android:name=".view.ui.commons.ExpandedStreamBrowseActivity" />
<activity android:name=".view.ui.commons.EditorStreamBrowseActivity" />
<service android:name=".data.service.NotificationService" /> <service android:name=".data.service.NotificationService" />
<service android:name=".data.installer.InstallerService" /> <service android:name=".data.installer.InstallerService" />

View File

@@ -24,6 +24,7 @@ import com.aurora.gplayapi.data.models.editor.EditorChoiceBundle
import com.aurora.gplayapi.data.models.editor.EditorChoiceCluster import com.aurora.gplayapi.data.models.editor.EditorChoiceCluster
import com.aurora.store.view.epoxy.groups.EditorChoiceModelGroup import com.aurora.store.view.epoxy.groups.EditorChoiceModelGroup
import com.aurora.store.view.epoxy.views.EditorHeadViewModel_ import com.aurora.store.view.epoxy.views.EditorHeadViewModel_
import com.aurora.store.view.epoxy.views.HeaderViewModel_
class EditorChoiceController(private val callbacks: Callbacks) : class EditorChoiceController(private val callbacks: Callbacks) :
TypedEpoxyController<List<EditorChoiceBundle>>() { TypedEpoxyController<List<EditorChoiceBundle>>() {
@@ -37,7 +38,7 @@ class EditorChoiceController(private val callbacks: Callbacks) :
val idPrefix = editorChoiceBundle.id val idPrefix = editorChoiceBundle.id
add( add(
EditorHeadViewModel_() HeaderViewModel_()
.id("header_${idPrefix}") .id("header_${idPrefix}")
.title(editorChoiceBundle.bundleTitle) .title(editorChoiceBundle.bundleTitle)
) )

View File

@@ -24,8 +24,8 @@ import com.airbnb.epoxy.EpoxyModelGroup
import com.aurora.gplayapi.data.models.editor.EditorChoiceCluster import com.aurora.gplayapi.data.models.editor.EditorChoiceCluster
import com.aurora.store.R import com.aurora.store.R
import com.aurora.store.view.epoxy.controller.EditorChoiceController import com.aurora.store.view.epoxy.controller.EditorChoiceController
import com.aurora.store.view.epoxy.views.EditorHeadViewModel_
import com.aurora.store.view.epoxy.views.EditorImageViewModel_ import com.aurora.store.view.epoxy.views.EditorImageViewModel_
import com.aurora.store.view.epoxy.views.HeaderViewModel_
class EditorChoiceModelGroup( class EditorChoiceModelGroup(
editorChoiceCluster: EditorChoiceCluster, editorChoiceCluster: EditorChoiceCluster,
@@ -49,11 +49,9 @@ class EditorChoiceModelGroup(
val idPrefix = editorChoiceCluster.id val idPrefix = editorChoiceCluster.id
models.add( models.add(
HeaderViewModel_() EditorHeadViewModel_()
.id("header_${idPrefix}") .id("header_${idPrefix}")
.title(editorChoiceCluster.clusterTitle) .title(editorChoiceCluster.clusterTitle)
.browseUrl(editorChoiceCluster.clusterBrowseUrl)
.click { _ -> callbacks.onClick(editorChoiceCluster) }
) )
editorChoiceCluster.clusterArtwork.forEach { editorChoiceCluster.clusterArtwork.forEach {
@@ -61,6 +59,8 @@ class EditorChoiceModelGroup(
EditorImageViewModel_() EditorImageViewModel_()
.id("artwork_${idPrefix}") .id("artwork_${idPrefix}")
.artwork(it) .artwork(it)
.click { _ -> callbacks.onClick(editorChoiceCluster) }
) )
} }

View File

@@ -22,6 +22,7 @@ package com.aurora.store.view.epoxy.views
import android.content.Context import android.content.Context
import android.util.AttributeSet import android.util.AttributeSet
import android.widget.RelativeLayout import android.widget.RelativeLayout
import com.airbnb.epoxy.CallbackProp
import com.airbnb.epoxy.ModelProp import com.airbnb.epoxy.ModelProp
import com.airbnb.epoxy.ModelView import com.airbnb.epoxy.ModelView
import com.airbnb.epoxy.OnViewRecycled import com.airbnb.epoxy.OnViewRecycled
@@ -83,6 +84,11 @@ class EditorImageView : RelativeLayout {
} }
} }
@CallbackProp
fun click(onClickListener: OnClickListener?) {
B.root.setOnClickListener(onClickListener)
}
@OnViewRecycled @OnViewRecycled
fun clear() { fun clear() {
B.img.clear() B.img.clear()

View File

@@ -79,4 +79,14 @@ open class BaseFragment : Fragment() {
ViewUtil.getEmptyActivityBundle(requireContext()) ViewUtil.getEmptyActivityBundle(requireContext())
) )
} }
fun openEditorStreamBrowseActivity(browseUrl: String, title: String = "") {
val intent = Intent(requireContext(), EditorStreamBrowseActivity::class.java)
intent.putExtra(Constants.BROWSE_EXTRA, browseUrl)
intent.putExtra(Constants.STRING_EXTRA, title)
startActivity(
intent,
ViewUtil.getEmptyActivityBundle(requireContext())
)
}
} }

View File

@@ -23,7 +23,6 @@ import android.os.Bundle
import android.view.LayoutInflater import android.view.LayoutInflater
import android.view.View import android.view.View
import android.view.ViewGroup import android.view.ViewGroup
import androidx.fragment.app.Fragment
import androidx.lifecycle.ViewModelProvider import androidx.lifecycle.ViewModelProvider
import com.aurora.Constants import com.aurora.Constants
import com.aurora.gplayapi.data.models.editor.EditorChoiceBundle import com.aurora.gplayapi.data.models.editor.EditorChoiceBundle
@@ -35,7 +34,7 @@ import com.aurora.store.viewmodel.editorschoice.AppEditorChoiceViewModel
import com.aurora.store.viewmodel.editorschoice.BaseEditorChoiceViewModel import com.aurora.store.viewmodel.editorschoice.BaseEditorChoiceViewModel
import com.aurora.store.viewmodel.editorschoice.GameEditorChoiceViewModel import com.aurora.store.viewmodel.editorschoice.GameEditorChoiceViewModel
class EditorChoiceFragment : Fragment(), EditorChoiceController.Callbacks { class EditorChoiceFragment : BaseFragment(), EditorChoiceController.Callbacks {
private lateinit var B: FragmentForYouBinding private lateinit var B: FragmentForYouBinding
private lateinit var C: EditorChoiceController private lateinit var C: EditorChoiceController
@@ -97,6 +96,9 @@ class EditorChoiceFragment : Fragment(), EditorChoiceController.Callbacks {
} }
override fun onClick(editorChoiceCluster: EditorChoiceCluster) { override fun onClick(editorChoiceCluster: EditorChoiceCluster) {
openEditorStreamBrowseActivity(
editorChoiceCluster.clusterBrowseUrl,
editorChoiceCluster.clusterTitle
)
} }
} }

View File

@@ -0,0 +1,106 @@
/*
* Aurora Store
* Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
*
* Aurora Store is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Aurora Store is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
*
*/
package com.aurora.store.view.ui.commons
import android.os.Bundle
import androidx.lifecycle.ViewModelProvider
import com.aurora.Constants
import com.aurora.gplayapi.data.models.App
import com.aurora.store.databinding.ActivityGenericRecyclerBinding
import com.aurora.store.util.extensions.close
import com.aurora.store.view.epoxy.views.app.AppListViewModel_
import com.aurora.store.view.epoxy.views.shimmer.AppListViewShimmerModel_
import com.aurora.store.viewmodel.editorschoice.EditorBrowseViewModel
class EditorStreamBrowseActivity : BaseActivity() {
lateinit var B: ActivityGenericRecyclerBinding
lateinit var VM: EditorBrowseViewModel
lateinit var title: String
override fun onConnected() {
hideNetworkConnectivitySheet()
}
override fun onDisconnected() {
showNetworkConnectivitySheet()
}
override fun onReconnected() {
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
B = ActivityGenericRecyclerBinding.inflate(layoutInflater)
VM = ViewModelProvider(this).get(EditorBrowseViewModel::class.java)
setContentView(B.root)
attachToolbar()
VM.liveData.observe(this, {
updateController(it)
})
intent.apply {
getStringExtra(Constants.BROWSE_EXTRA)?.let {
VM.getEditorStreamBundle(it)
}
getStringExtra(Constants.STRING_EXTRA)?.let {
B.layoutToolbarAction.txtTitle.text = it
}
}
updateController(null)
}
private fun attachToolbar() {
B.layoutToolbarAction.imgActionPrimary.setOnClickListener {
close()
}
}
private fun updateController(appList: MutableList<App>?) {
B.recycler.withModels {
setFilterDuplicates(true)
if (appList == null) {
for (i in 1..6) {
add(
AppListViewShimmerModel_()
.id(i)
)
}
} else {
appList.forEach {
add(
AppListViewModel_()
.id(it.packageName.hashCode())
.app(it)
.click { _ -> openDetailsActivity(it) }
)
}
}
}
}
}

View File

@@ -0,0 +1,79 @@
/*
* Aurora Store
* Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
*
* Aurora Store is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Aurora Store is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
*
*/
package com.aurora.store.viewmodel.editorschoice
import android.app.Application
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.viewModelScope
import com.aurora.gplayapi.data.models.App
import com.aurora.gplayapi.data.models.AuthData
import com.aurora.gplayapi.helpers.StreamHelper
import com.aurora.store.data.RequestState
import com.aurora.store.data.network.HttpClient
import com.aurora.store.data.providers.AuthProvider
import com.aurora.store.viewmodel.BaseAndroidViewModel
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.supervisorScope
class EditorBrowseViewModel(application: Application) : BaseAndroidViewModel(application) {
private val authData: AuthData = AuthProvider.with(application).getAuthData()
private val streamHelper: StreamHelper = StreamHelper(authData)
.using(HttpClient.getPreferredClient())
val liveData: MutableLiveData<MutableList<App>> = MutableLiveData()
val appList: MutableList<App> = mutableListOf()
override fun observe() {
requestState = RequestState.Init
}
fun getEditorStreamBundle(
browseUrl: String
) {
viewModelScope.launch(Dispatchers.IO) {
supervisorScope {
try {
requestState = RequestState.Init
val browseResponse = streamHelper.getBrowseStreamResponse(browseUrl)
val listResponse =
streamHelper.getNextStreamResponse(browseResponse.browseTab.listUrl)
listResponse.itemList.forEach {
it?.let{
it.subItemList.forEach {
appList.addAll(streamHelper.getAppsFromItem(it))
}
}
}
liveData.postValue(appList)
requestState = RequestState.Complete
} catch (e: Exception) {
requestState = RequestState.Pending
}
}
}
}
}

View File

@@ -18,14 +18,24 @@
--> -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="@dimen/padding_small"> android:paddingStart="@dimen/padding_large"
android:paddingTop="@dimen/padding_small"
android:paddingEnd="@dimen/padding_large"
android:paddingBottom="@dimen/padding_small">
<androidx.appcompat.widget.AppCompatTextView <androidx.appcompat.widget.AppCompatTextView
android:id="@+id/title" android:id="@+id/title"
style="@style/AuroraTextStyle.Subtitle.Alt" android:textAppearance="@style/TextAppearance.Aurora.Line1"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:maxLines="2" /> android:drawableStart="@drawable/ic_arrow_right"
android:drawablePadding="@dimen/padding_small"
android:maxLines="4"
android:gravity="center_vertical"
android:singleLine="false"
android:layout_centerInParent="true"
app:drawableTint="?colorControlNormal" />
</RelativeLayout> </RelativeLayout>