mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
Send file: cleanup
This commit is contained in:
parent
8a5612be3d
commit
ea77686746
@ -29,9 +29,9 @@ interface ContentUploadStateTracker {
|
|||||||
sealed class State {
|
sealed class State {
|
||||||
object Idle : State()
|
object Idle : State()
|
||||||
object EncryptingThumbnail : State()
|
object EncryptingThumbnail : State()
|
||||||
data class ProgressThumbnailData(val current: Long, val total: Long) : State()
|
data class UploadingThumbnail(val current: Long, val total: Long) : State()
|
||||||
object Encrypting : State()
|
object Encrypting : State()
|
||||||
data class ProgressData(val current: Long, val total: Long) : State()
|
data class Uploading(val current: Long, val total: Long) : State()
|
||||||
object Success : State()
|
object Success : State()
|
||||||
data class Failure(val throwable: Throwable) : State()
|
data class Failure(val throwable: Throwable) : State()
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ internal class DefaultContentUploadStateTracker @Inject constructor() : ContentU
|
|||||||
}
|
}
|
||||||
|
|
||||||
internal fun setProgressThumbnail(key: String, current: Long, total: Long) {
|
internal fun setProgressThumbnail(key: String, current: Long, total: Long) {
|
||||||
val progressData = ContentUploadStateTracker.State.ProgressThumbnailData(current, total)
|
val progressData = ContentUploadStateTracker.State.UploadingThumbnail(current, total)
|
||||||
updateState(key, progressData)
|
updateState(key, progressData)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ internal class DefaultContentUploadStateTracker @Inject constructor() : ContentU
|
|||||||
}
|
}
|
||||||
|
|
||||||
internal fun setProgress(key: String, current: Long, total: Long) {
|
internal fun setProgress(key: String, current: Long, total: Long) {
|
||||||
val progressData = ContentUploadStateTracker.State.ProgressData(current, total)
|
val progressData = ContentUploadStateTracker.State.Uploading(current, total)
|
||||||
updateState(key, progressData)
|
updateState(key, progressData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,6 @@ import im.vector.matrix.android.api.session.content.ContentUploadStateTracker
|
|||||||
import im.vector.riotx.R
|
import im.vector.riotx.R
|
||||||
import im.vector.riotx.core.di.ActiveSessionHolder
|
import im.vector.riotx.core.di.ActiveSessionHolder
|
||||||
import im.vector.riotx.features.media.ImageContentRenderer
|
import im.vector.riotx.features.media.ImageContentRenderer
|
||||||
import java.io.File
|
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
class ContentUploadStateTrackerBinder @Inject constructor(private val activeSessionHolder: ActiveSessionHolder) {
|
class ContentUploadStateTrackerBinder @Inject constructor(private val activeSessionHolder: ActiveSessionHolder) {
|
||||||
@ -63,17 +62,15 @@ private class ContentMediaProgressUpdater(private val progressLayout: ViewGroup,
|
|||||||
when (state) {
|
when (state) {
|
||||||
is ContentUploadStateTracker.State.Idle -> handleIdle(state)
|
is ContentUploadStateTracker.State.Idle -> handleIdle(state)
|
||||||
is ContentUploadStateTracker.State.EncryptingThumbnail -> handleEncryptingThumbnail(state)
|
is ContentUploadStateTracker.State.EncryptingThumbnail -> handleEncryptingThumbnail(state)
|
||||||
is ContentUploadStateTracker.State.ProgressThumbnailData -> handleProgressThumbnail(state)
|
is ContentUploadStateTracker.State.UploadingThumbnail -> handleProgressThumbnail(state)
|
||||||
is ContentUploadStateTracker.State.Encrypting -> handleEncrypting(state)
|
is ContentUploadStateTracker.State.Encrypting -> handleEncrypting(state)
|
||||||
is ContentUploadStateTracker.State.ProgressData -> handleProgress(state)
|
is ContentUploadStateTracker.State.Uploading -> handleProgress(state)
|
||||||
is ContentUploadStateTracker.State.Failure -> handleFailure(state)
|
is ContentUploadStateTracker.State.Failure -> handleFailure(state)
|
||||||
is ContentUploadStateTracker.State.Success -> handleSuccess(state)
|
is ContentUploadStateTracker.State.Success -> handleSuccess(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleIdle(state: ContentUploadStateTracker.State.Idle) {
|
private fun handleIdle(state: ContentUploadStateTracker.State.Idle) {
|
||||||
if (mediaData.isLocalFile()) {
|
|
||||||
val file = File(mediaData.url)
|
|
||||||
progressLayout.visibility = View.VISIBLE
|
progressLayout.visibility = View.VISIBLE
|
||||||
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
||||||
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
||||||
@ -81,28 +78,25 @@ private class ContentMediaProgressUpdater(private val progressLayout: ViewGroup,
|
|||||||
progressBar?.isIndeterminate = true
|
progressBar?.isIndeterminate = true
|
||||||
progressBar?.progress = 0
|
progressBar?.progress = 0
|
||||||
progressTextView?.text = progressLayout.context.getString(R.string.send_file_step_idle)
|
progressTextView?.text = progressLayout.context.getString(R.string.send_file_step_idle)
|
||||||
} else {
|
|
||||||
progressLayout.visibility = View.GONE
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleEncryptingThumbnail(state: ContentUploadStateTracker.State.EncryptingThumbnail) {
|
private fun handleEncryptingThumbnail(state: ContentUploadStateTracker.State.EncryptingThumbnail) {
|
||||||
_handleEncrypting(R.string.send_file_step_encrypting_thumbnail)
|
doHandleEncrypting(R.string.send_file_step_encrypting_thumbnail)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleProgressThumbnail(state: ContentUploadStateTracker.State.ProgressThumbnailData) {
|
private fun handleProgressThumbnail(state: ContentUploadStateTracker.State.UploadingThumbnail) {
|
||||||
_handleProgress(R.string.send_file_step_sending_thumbnail, state.current, state.total)
|
doHandleProgress(R.string.send_file_step_sending_thumbnail, state.current, state.total)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleEncrypting(state: ContentUploadStateTracker.State.Encrypting) {
|
private fun handleEncrypting(state: ContentUploadStateTracker.State.Encrypting) {
|
||||||
_handleEncrypting(R.string.send_file_step_encrypting_file)
|
doHandleEncrypting(R.string.send_file_step_encrypting_file)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleProgress(state: ContentUploadStateTracker.State.ProgressData) {
|
private fun handleProgress(state: ContentUploadStateTracker.State.Uploading) {
|
||||||
_handleProgress(R.string.send_file_step_sending_file, state.current, state.total)
|
doHandleProgress(R.string.send_file_step_sending_file, state.current, state.total)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun _handleEncrypting(resId: Int) {
|
private fun doHandleEncrypting(resId: Int) {
|
||||||
progressLayout.visibility = View.VISIBLE
|
progressLayout.visibility = View.VISIBLE
|
||||||
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
||||||
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
||||||
@ -110,7 +104,7 @@ private class ContentMediaProgressUpdater(private val progressLayout: ViewGroup,
|
|||||||
progressTextView?.text = progressLayout.context.getString(resId)
|
progressTextView?.text = progressLayout.context.getString(resId)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun _handleProgress(resId: Int, current: Long, total: Long) {
|
private fun doHandleProgress(resId: Int, current: Long, total: Long) {
|
||||||
progressLayout.visibility = View.VISIBLE
|
progressLayout.visibility = View.VISIBLE
|
||||||
val percent = 100L * (current.toFloat() / total.toFloat())
|
val percent = 100L * (current.toFloat() / total.toFloat())
|
||||||
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
||||||
@ -128,10 +122,11 @@ private class ContentMediaProgressUpdater(private val progressLayout: ViewGroup,
|
|||||||
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
val progressBar = progressLayout.findViewById<ProgressBar>(R.id.mediaProgressBar)
|
||||||
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
val progressTextView = progressLayout.findViewById<TextView>(R.id.mediaProgressTextView)
|
||||||
progressBar?.isVisible = false
|
progressBar?.isVisible = false
|
||||||
|
// TODO Red text
|
||||||
progressTextView?.text = state.throwable.localizedMessage
|
progressTextView?.text = state.throwable.localizedMessage
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleSuccess(state: ContentUploadStateTracker.State.Success) {
|
private fun handleSuccess(state: ContentUploadStateTracker.State.Success) {
|
||||||
// Nothing to do
|
progressLayout.visibility = View.GONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user