Change-Id: Iaab014904460988296ea93cc2088c8da93ed17f1pull/2/head
parent
635abb4dc2
commit
4d72950f94
@ -0,0 +1,67 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2022 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
|
||||||
|
*
|
||||||
|
* https://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.google.samples.apps.nowinandroid.core.ui
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.net.Uri
|
||||||
|
import androidx.compose.foundation.lazy.LazyListScope
|
||||||
|
import androidx.compose.foundation.lazy.items
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import com.google.samples.apps.nowinandroid.core.model.data.NewsResource
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extension function for displaying a [List] of [NewsResourceCardExpanded] backed by a generic
|
||||||
|
* [List] [T].
|
||||||
|
*
|
||||||
|
* [newsResourceMapper] maps type [T] to a [NewsResource]
|
||||||
|
* [isBookmarkedMapper] maps type [T] to whether the [NewsResource] is bookmarked
|
||||||
|
* [onToggleBookmark] defines the action invoked when a user wishes to bookmark an item
|
||||||
|
* [onItemClick] optional parameter for action to be performed when the card is clicked. The
|
||||||
|
* default action launches an intent matching the card.
|
||||||
|
*/
|
||||||
|
fun <T> LazyListScope.newsResourceCardItems(
|
||||||
|
items: List<T>,
|
||||||
|
newsResourceMapper: (item: T) -> NewsResource,
|
||||||
|
isBookmarkedMapper: (item: T) -> Boolean,
|
||||||
|
onToggleBookmark: (item: T) -> Unit,
|
||||||
|
onItemClick: ((item: T) -> Unit)? = null,
|
||||||
|
itemModifier: Modifier = Modifier,
|
||||||
|
) = items(
|
||||||
|
items = items,
|
||||||
|
key = { newsResourceMapper(it).id },
|
||||||
|
itemContent = { item ->
|
||||||
|
val newsResource = newsResourceMapper(item)
|
||||||
|
val launchResourceIntent =
|
||||||
|
Intent(Intent.ACTION_VIEW, Uri.parse(newsResource.url))
|
||||||
|
val context = LocalContext.current
|
||||||
|
|
||||||
|
NewsResourceCardExpanded(
|
||||||
|
newsResource = newsResource,
|
||||||
|
isBookmarked = isBookmarkedMapper(item),
|
||||||
|
onToggleBookmark = { onToggleBookmark(item) },
|
||||||
|
onClick = {
|
||||||
|
when (onItemClick) {
|
||||||
|
null -> ContextCompat.startActivity(context, launchResourceIntent, null)
|
||||||
|
else -> onItemClick(item)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
modifier = itemModifier
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
Loading…
Reference in new issue