-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make CrossAxisAlignment
modifier available for items within LazyList
#1288
base: trunk
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2023 Square, Inc. | ||
* | ||
* 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 app.cash.redwood.lazylayout.compose | ||
|
||
import androidx.compose.runtime.Stable | ||
import app.cash.redwood.LayoutScopeMarker | ||
import app.cash.redwood.Modifier | ||
import app.cash.redwood.layout.api.CrossAxisAlignment | ||
|
||
@LayoutScopeMarker | ||
public interface LazyItemScope { | ||
@Stable | ||
public fun Modifier.alignment(alignment: CrossAxisAlignment): Modifier = | ||
then(AlignmentImpl(alignment)) | ||
Comment on lines
+26
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @colinrtwhite Do you have any ideas on how to convert this to |
||
} | ||
|
||
internal object LazyItemScopeImpl : LazyItemScope |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (C) 2023 Square, Inc. | ||
* | ||
* 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 app.cash.redwood.lazylayout.compose | ||
|
||
import app.cash.redwood.layout.api.CrossAxisAlignment | ||
import app.cash.redwood.layout.modifier.Alignment | ||
|
||
internal class AlignmentImpl( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not a data class? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's copied generated code from |
||
override val alignment: CrossAxisAlignment, | ||
) : Alignment { | ||
override fun equals(other: Any?): Boolean = other is Alignment && | ||
other.alignment == alignment | ||
|
||
override fun hashCode(): Int { | ||
var hash = 17 | ||
hash = 31 * hash + alignment.hashCode() | ||
return hash | ||
} | ||
|
||
override fun toString(): String = """Alignment(alignment=$alignment)""" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ import androidx.swiperefreshlayout.widget.SwipeRefreshLayout | |
import app.cash.redwood.Modifier | ||
import app.cash.redwood.layout.api.Constraint | ||
import app.cash.redwood.layout.api.CrossAxisAlignment | ||
import app.cash.redwood.layout.modifier.Alignment | ||
import app.cash.redwood.lazylayout.widget.LazyList | ||
import app.cash.redwood.lazylayout.widget.RefreshableLazyList | ||
import app.cash.redwood.ui.Density | ||
|
@@ -253,20 +254,7 @@ internal open class ViewLazyList(context: Context) : LazyList<View> { | |
|
||
override fun onBindViewHolder(holder: ViewHolder, position: Int) { | ||
lastItemHeight = holder.itemView.height | ||
val layoutParams = if (crossAxisAlignment == CrossAxisAlignment.Stretch) { | ||
FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT) | ||
} else { | ||
FrameLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT) | ||
} | ||
layoutParams.apply { | ||
gravity = when (crossAxisAlignment) { | ||
CrossAxisAlignment.Start -> Gravity.START | ||
CrossAxisAlignment.Center -> Gravity.CENTER | ||
CrossAxisAlignment.End -> Gravity.END | ||
CrossAxisAlignment.Stretch -> Gravity.START | ||
else -> throw AssertionError() | ||
} | ||
} | ||
val layoutParams = layoutParams(crossAxisAlignment) | ||
when (holder) { | ||
is ViewHolder.Placeholder -> { | ||
if (holder.container.childCount == 0) { | ||
|
@@ -286,11 +274,12 @@ internal open class ViewLazyList(context: Context) : LazyList<View> { | |
} | ||
is ViewHolder.Item -> { | ||
val index = position - items.itemsBefore | ||
val view = items.widgets[index].value | ||
val widget = items.widgets[index] | ||
holder.container.removeAllViews() | ||
(view.parent as? FrameLayout)?.removeAllViews() | ||
view.layoutParams = layoutParams | ||
holder.container.addView(view) | ||
(widget.value.parent as? FrameLayout)?.removeAllViews() | ||
widget.value.layoutParams = layoutParams | ||
holder.container.addView(widget.value) | ||
widget.value.applyModifier(widget.modifier) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to be re-applied if the modifier changes. I tried listening to changes in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like a bug! FYI @JakeWharton |
||
} | ||
} | ||
} | ||
|
@@ -327,3 +316,30 @@ internal class ViewRefreshableLazyList( | |
swipeRefreshLayout.setOnRefreshListener(onRefresh) | ||
} | ||
} | ||
|
||
private fun layoutParams(crossAxisAlignment: CrossAxisAlignment): FrameLayout.LayoutParams { | ||
val layoutParams = if (crossAxisAlignment == CrossAxisAlignment.Stretch) { | ||
FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT) | ||
} else { | ||
FrameLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT) | ||
} | ||
return layoutParams.apply { | ||
gravity = when (crossAxisAlignment) { | ||
CrossAxisAlignment.Start -> Gravity.START | ||
CrossAxisAlignment.Center -> Gravity.CENTER | ||
CrossAxisAlignment.End -> Gravity.END | ||
CrossAxisAlignment.Stretch -> Gravity.START | ||
else -> throw AssertionError() | ||
} | ||
} | ||
} | ||
|
||
private fun View.applyModifier(parentModifier: Modifier) { | ||
parentModifier.forEach { childModifier -> | ||
when (childModifier) { | ||
is Alignment -> { | ||
this.layoutParams = layoutParams(childModifier.alignment) | ||
} | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice