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-03-05 18:31:03 +01:00
|
|
|
package im.vector.riotredesign.features.home.room.detail.timeline.factory
|
2019-01-15 15:47:03 +01:00
|
|
|
|
|
|
|
import im.vector.matrix.android.api.session.events.model.EventType
|
2019-01-18 16:26:17 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.timeline.TimelineEvent
|
2019-02-20 11:39:25 +01:00
|
|
|
import im.vector.riotredesign.core.epoxy.EmptyItem_
|
2019-04-05 10:40:59 +02:00
|
|
|
import im.vector.riotredesign.core.epoxy.VectorEpoxyModel
|
2019-03-05 18:31:03 +01:00
|
|
|
import im.vector.riotredesign.features.home.room.detail.timeline.TimelineEventController
|
2019-05-20 10:30:33 +02:00
|
|
|
import timber.log.Timber
|
2019-01-15 15:47:03 +01:00
|
|
|
|
|
|
|
class TimelineItemFactory(private val messageItemFactory: MessageItemFactory,
|
|
|
|
private val roomNameItemFactory: RoomNameItemFactory,
|
|
|
|
private val roomTopicItemFactory: RoomTopicItemFactory,
|
|
|
|
private val roomMemberItemFactory: RoomMemberItemFactory,
|
2019-02-20 12:06:33 +01:00
|
|
|
private val roomHistoryVisibilityItemFactory: RoomHistoryVisibilityItemFactory,
|
2019-02-20 15:47:20 +01:00
|
|
|
private val callItemFactory: CallItemFactory,
|
2019-05-16 10:23:57 +02:00
|
|
|
private val encryptionItemFactory: EncryptionItemFactory,
|
|
|
|
private val encryptedItemFactory: EncryptedItemFactory,
|
2019-01-15 15:47:03 +01:00
|
|
|
private val defaultItemFactory: DefaultItemFactory) {
|
|
|
|
|
|
|
|
fun create(event: TimelineEvent,
|
|
|
|
nextEvent: TimelineEvent?,
|
2019-04-18 19:09:15 +02:00
|
|
|
callback: TimelineEventController.Callback?): VectorEpoxyModel<*> {
|
2019-01-15 15:47:03 +01:00
|
|
|
|
2019-02-20 16:14:12 +01:00
|
|
|
val computedModel = try {
|
2019-05-26 19:21:45 +02:00
|
|
|
when (event.root.getClearType()) {
|
2019-04-18 19:09:15 +02:00
|
|
|
EventType.MESSAGE -> messageItemFactory.create(event, nextEvent, callback)
|
|
|
|
EventType.STATE_ROOM_NAME -> roomNameItemFactory.create(event)
|
|
|
|
EventType.STATE_ROOM_TOPIC -> roomTopicItemFactory.create(event)
|
|
|
|
EventType.STATE_ROOM_MEMBER -> roomMemberItemFactory.create(event)
|
|
|
|
EventType.STATE_HISTORY_VISIBILITY -> roomHistoryVisibilityItemFactory.create(event)
|
|
|
|
|
|
|
|
EventType.CALL_INVITE,
|
|
|
|
EventType.CALL_HANGUP,
|
|
|
|
EventType.CALL_ANSWER -> callItemFactory.create(event)
|
|
|
|
|
2019-05-16 10:23:57 +02:00
|
|
|
EventType.ENCRYPTION -> encryptionItemFactory.create(event)
|
|
|
|
|
2019-06-07 16:01:24 +02:00
|
|
|
EventType.ENCRYPTED -> encryptedItemFactory.create(event)
|
2019-05-16 10:23:57 +02:00
|
|
|
|
2019-04-18 19:09:15 +02:00
|
|
|
EventType.STATE_ROOM_THIRD_PARTY_INVITE,
|
|
|
|
EventType.STICKER,
|
|
|
|
EventType.STATE_ROOM_CREATE -> defaultItemFactory.create(event)
|
|
|
|
|
|
|
|
else -> null
|
2019-02-11 13:47:47 +01:00
|
|
|
}
|
|
|
|
} catch (e: Exception) {
|
2019-05-20 10:30:33 +02:00
|
|
|
Timber.e(e, "Error")
|
|
|
|
|
2019-02-11 13:47:47 +01:00
|
|
|
defaultItemFactory.create(event, e)
|
2019-01-15 15:47:03 +01:00
|
|
|
}
|
2019-04-18 19:09:15 +02:00
|
|
|
return (computedModel ?: EmptyItem_())
|
2019-01-15 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|