Make some data class @Immutable when needed
This commit is contained in:
parent
1a0c9df1da
commit
f470f2a6af
5 changed files with 8 additions and 37 deletions
|
|
@ -16,11 +16,11 @@
|
||||||
|
|
||||||
package io.element.android.x.features.roomlist.model
|
package io.element.android.x.features.roomlist.model
|
||||||
|
|
||||||
import androidx.compose.runtime.Stable
|
import androidx.compose.runtime.Immutable
|
||||||
import io.element.android.x.designsystem.components.avatar.AvatarData
|
import io.element.android.x.designsystem.components.avatar.AvatarData
|
||||||
import io.element.android.x.matrix.core.RoomId
|
import io.element.android.x.matrix.core.RoomId
|
||||||
|
|
||||||
@Stable
|
@Immutable
|
||||||
data class RoomListRoomSummary(
|
data class RoomListRoomSummary(
|
||||||
val id: String,
|
val id: String,
|
||||||
val roomId: RoomId = RoomId(id),
|
val roomId: RoomId = RoomId(id),
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
package io.element.android.x.features.roomlist.model
|
package io.element.android.x.features.roomlist.model
|
||||||
|
|
||||||
import androidx.compose.runtime.Stable
|
import androidx.compose.runtime.Immutable
|
||||||
import io.element.android.x.matrix.ui.model.MatrixUser
|
import io.element.android.x.matrix.ui.model.MatrixUser
|
||||||
import kotlinx.collections.immutable.ImmutableList
|
import kotlinx.collections.immutable.ImmutableList
|
||||||
|
|
||||||
@Stable
|
@Immutable
|
||||||
data class RoomListState(
|
data class RoomListState(
|
||||||
val matrixUser: MatrixUser?,
|
val matrixUser: MatrixUser?,
|
||||||
val roomList: ImmutableList<RoomListRoomSummary>,
|
val roomList: ImmutableList<RoomListRoomSummary>,
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2022 New Vector Ltd
|
|
||||||
*
|
|
||||||
* 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 io.element.android.x.features.roomlist.model
|
|
||||||
|
|
||||||
import com.airbnb.mvrx.Async
|
|
||||||
import com.airbnb.mvrx.MavericksState
|
|
||||||
import com.airbnb.mvrx.Uninitialized
|
|
||||||
import io.element.android.x.matrix.core.RoomId
|
|
||||||
|
|
||||||
data class RoomListViewState(
|
|
||||||
// Will contain the filtered rooms, using ::filter (if filter is not empty)
|
|
||||||
val rooms: Async<List<RoomListRoomSummary>> = Uninitialized,
|
|
||||||
val filter: String = "",
|
|
||||||
val canLoadMore: Boolean = false,
|
|
||||||
val roomsById: Map<RoomId, RoomListRoomSummary> = emptyMap()
|
|
||||||
) : MavericksState
|
|
||||||
|
|
@ -16,9 +16,9 @@
|
||||||
|
|
||||||
package io.element.android.x.designsystem.components.avatar
|
package io.element.android.x.designsystem.components.avatar
|
||||||
|
|
||||||
import androidx.compose.runtime.Stable
|
import androidx.compose.runtime.Immutable
|
||||||
|
|
||||||
@Stable
|
@Immutable
|
||||||
data class AvatarData(
|
data class AvatarData(
|
||||||
val name: String = "",
|
val name: String = "",
|
||||||
val model: ByteArray? = null,
|
val model: ByteArray? = null,
|
||||||
|
|
|
||||||
|
|
@ -16,11 +16,12 @@
|
||||||
|
|
||||||
package io.element.android.x.matrix.ui.model
|
package io.element.android.x.matrix.ui.model
|
||||||
|
|
||||||
|
import androidx.compose.runtime.Immutable
|
||||||
import androidx.compose.runtime.Stable
|
import androidx.compose.runtime.Stable
|
||||||
import io.element.android.x.designsystem.components.avatar.AvatarData
|
import io.element.android.x.designsystem.components.avatar.AvatarData
|
||||||
import io.element.android.x.matrix.core.UserId
|
import io.element.android.x.matrix.core.UserId
|
||||||
|
|
||||||
@Stable
|
@Immutable
|
||||||
data class MatrixUser(
|
data class MatrixUser(
|
||||||
val id: UserId,
|
val id: UserId,
|
||||||
val username: String? = null,
|
val username: String? = null,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue