2019-01-18 11:12:08 +01:00
|
|
|
/*
|
2019-01-25 14:04:59 +01:00
|
|
|
* Copyright 2019 New Vector Ltd
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* 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
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* 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.
|
2019-01-18 11:12:08 +01:00
|
|
|
*/
|
|
|
|
|
2019-07-02 17:27:08 +02:00
|
|
|
package im.vector.riotx.features.home.room.detail
|
2018-12-29 17:54:03 +01:00
|
|
|
|
|
|
|
import com.airbnb.mvrx.Async
|
|
|
|
import com.airbnb.mvrx.MvRxState
|
|
|
|
import com.airbnb.mvrx.Uninitialized
|
2019-07-26 19:17:12 +02:00
|
|
|
import im.vector.matrix.android.api.session.events.model.Event
|
2018-12-29 17:54:03 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.model.RoomSummary
|
2019-03-15 19:27:56 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.timeline.Timeline
|
2019-05-23 16:44:51 +02:00
|
|
|
import im.vector.matrix.android.api.session.room.timeline.TimelineEvent
|
2019-08-08 14:14:10 +02:00
|
|
|
import im.vector.matrix.android.api.session.sync.SyncState
|
2019-05-13 19:23:02 +02:00
|
|
|
import im.vector.matrix.android.api.session.user.model.User
|
2018-12-29 17:54:03 +01:00
|
|
|
|
2019-05-23 16:44:51 +02:00
|
|
|
/**
|
|
|
|
* Describes the current send mode:
|
|
|
|
* REGULAR: sends the text as a regular message
|
|
|
|
* QUOTE: User is currently quoting a message
|
|
|
|
* EDIT: User is currently editing an existing message
|
|
|
|
*
|
|
|
|
* Depending on the state the bottom toolbar will change (icons/preview/actions...)
|
|
|
|
*/
|
2019-07-10 17:05:32 +02:00
|
|
|
sealed class SendMode {
|
|
|
|
object REGULAR : SendMode()
|
|
|
|
data class QUOTE(val timelineEvent: TimelineEvent) : SendMode()
|
|
|
|
data class EDIT(val timelineEvent: TimelineEvent) : SendMode()
|
|
|
|
data class REPLY(val timelineEvent: TimelineEvent) : SendMode()
|
2019-05-23 16:44:51 +02:00
|
|
|
}
|
|
|
|
|
2018-12-29 17:54:03 +01:00
|
|
|
data class RoomDetailViewState(
|
|
|
|
val roomId: String,
|
|
|
|
val eventId: String?,
|
2019-03-15 19:27:56 +01:00
|
|
|
val timeline: Timeline? = null,
|
2019-05-20 17:13:12 +02:00
|
|
|
val asyncInviter: Async<User> = Uninitialized,
|
2018-12-29 17:54:03 +01:00
|
|
|
val asyncRoomSummary: Async<RoomSummary> = Uninitialized,
|
2019-05-23 16:44:51 +02:00
|
|
|
val sendMode: SendMode = SendMode.REGULAR,
|
2019-07-25 19:34:39 +02:00
|
|
|
val isEncrypted: Boolean = false,
|
2019-07-26 19:17:12 +02:00
|
|
|
val tombstoneEvent: Event? = null,
|
2019-08-08 14:14:10 +02:00
|
|
|
val tombstoneEventHandling: Async<String> = Uninitialized,
|
2019-08-20 19:12:22 +02:00
|
|
|
val syncState: SyncState = SyncState.IDLE,
|
|
|
|
val showJumpToReadMarker: Boolean = false,
|
|
|
|
val highlightedEventId: String? = null
|
2018-12-29 17:54:03 +01:00
|
|
|
) : MvRxState {
|
|
|
|
|
|
|
|
constructor(args: RoomDetailArgs) : this(roomId = args.roomId, eventId = args.eventId)
|
|
|
|
|
|
|
|
}
|