1
1
import React , { Component } from 'react'
2
2
import { ScreenContext } from '../contexts'
3
- import MediaAttachment from './attachment/mediaAttachment'
3
+ import {
4
+ AudioAttachment ,
5
+ FileAttachment ,
6
+ GalleryAttachmentElementProps ,
7
+ ImageAttachment ,
8
+ VideoAttachment ,
9
+ WebxdcAttachment ,
10
+ } from './attachment/mediaAttachment'
4
11
import { getLogger } from '../../shared/logger'
5
12
import { BackendRemote , Type } from '../backend-com'
6
13
import { selectedAccountId } from '../ScreenController'
@@ -11,23 +18,31 @@ type MediaTabKey = 'images' | 'video' | 'audio' | 'files' | 'webxdc_apps'
11
18
12
19
const MediaTabs : Readonly <
13
20
{
14
- [ key in MediaTabKey ] : { values : Type . Viewtype [ ] }
21
+ [ key in MediaTabKey ] : {
22
+ values : Type . Viewtype [ ]
23
+ element : ( props : GalleryAttachmentElementProps ) => JSX . Element
24
+ }
15
25
}
16
26
> = {
17
27
images : {
18
28
values : [ 'Gif' , 'Image' ] ,
29
+ element : ImageAttachment ,
19
30
} ,
20
31
video : {
21
32
values : [ 'Video' ] ,
33
+ element : VideoAttachment ,
22
34
} ,
23
35
audio : {
24
36
values : [ 'Audio' , 'Voice' ] ,
37
+ element : AudioAttachment ,
25
38
} ,
26
39
files : {
27
40
values : [ 'File' ] ,
41
+ element : FileAttachment ,
28
42
} ,
29
43
webxdc_apps : {
30
44
values : [ 'Webxdc' ] ,
45
+ element : WebxdcAttachment ,
31
46
} ,
32
47
}
33
48
@@ -38,17 +53,19 @@ export default class Gallery extends Component<
38
53
{
39
54
id : MediaTabKey
40
55
msgTypes : Type . Viewtype [ ]
41
- medias : Type . Message [ ]
42
- errors : { msgId : number ; error : string } [ ]
56
+ element : ( props : GalleryAttachmentElementProps ) => JSX . Element
57
+ mediaMessageIds : number [ ]
58
+ mediaLoadResult : Record < number , Type . MessageLoadResult >
43
59
}
44
60
> {
45
61
constructor ( props : mediaProps ) {
46
62
super ( props )
47
63
this . state = {
48
64
id : 'images' ,
49
65
msgTypes : MediaTabs . images . values ,
50
- medias : [ ] ,
51
- errors : [ ] ,
66
+ element : ImageAttachment ,
67
+ mediaMessageIds : [ ] ,
68
+ mediaLoadResult : { } ,
52
69
}
53
70
}
54
71
@@ -67,29 +84,25 @@ export default class Gallery extends Component<
67
84
throw new Error ( 'chat id missing' )
68
85
}
69
86
const msgTypes = MediaTabs [ id ] . values
87
+ const newElement = MediaTabs [ id ] . element
70
88
const accountId = selectedAccountId ( )
71
89
const chatId = this . props . chatId !== 'all' ? this . props . chatId : null
72
90
73
91
BackendRemote . rpc
74
92
. getChatMedia ( accountId , chatId , msgTypes [ 0 ] , msgTypes [ 1 ] , null )
75
93
. then ( async media_ids => {
76
- // throws if some media is not found
77
- const all_media_fetch_results = await BackendRemote . rpc . getMessages (
94
+ const mediaLoadResult = await BackendRemote . rpc . getMessages (
78
95
accountId ,
79
96
media_ids
80
97
)
81
- const medias : Type . Message [ ] = [ ]
82
- const errors = [ ]
83
- for ( const msgId of media_ids ) {
84
- const result = all_media_fetch_results [ msgId ]
85
- if ( result . variant === 'message' ) {
86
- medias . push ( result )
87
- } else {
88
- errors . push ( { msgId, error : result . error } )
89
- }
90
- }
91
- log . errorWithoutStackTrace ( 'messages failed to load:' , errors )
92
- this . setState ( { id, msgTypes, medias, errors } )
98
+ media_ids . reverse ( ) // order newest up - if we need different ordering we need to do it in core
99
+ this . setState ( {
100
+ id,
101
+ msgTypes,
102
+ element : newElement ,
103
+ mediaMessageIds : media_ids ,
104
+ mediaLoadResult,
105
+ } )
93
106
this . forceUpdate ( )
94
107
} )
95
108
. catch ( log . error . bind ( log ) )
@@ -113,7 +126,7 @@ export default class Gallery extends Component<
113
126
}
114
127
115
128
render ( ) {
116
- const { medias , id , errors } = this . state
129
+ const { mediaMessageIds , mediaLoadResult , id } = this . state
117
130
const tx = window . static_translate // static because dynamic isn't too important here
118
131
const emptyTabMessage = this . emptyTabMessage ( id )
119
132
@@ -138,39 +151,20 @@ export default class Gallery extends Component<
138
151
</ ul >
139
152
< div className = 'bp4-tab-panel' role = 'tabpanel' >
140
153
< div className = 'gallery' >
141
- { errors . length > 0 && (
142
- < div className = 'loading-errors' >
143
- The following messages failed to load, please report these
144
- errors to the developers:
145
- < ul >
146
- { errors . map ( error => (
147
- < li key = { error . msgId } >
148
- { error . msgId } { '->' } { error . error }
149
- </ li >
150
- ) ) }
151
- </ ul >
152
- </ div >
153
- ) }
154
- < div
155
- className = 'item-container'
156
- style = { {
157
- justifyContent : medias . length < 1 ? 'center' : undefined ,
158
- } }
159
- >
160
- { medias . length < 1 ? (
154
+ < div className = 'item-container' >
155
+ { mediaMessageIds . length < 1 ? (
161
156
< p className = 'no-media-message' > { emptyTabMessage } </ p >
162
157
) : (
163
158
''
164
159
) }
165
- { medias
166
- . sort ( ( a , b ) => b . sortTimestamp - a . sortTimestamp )
167
- . map ( message => {
168
- return (
169
- < div className = 'item' key = { message . id } >
170
- < MediaAttachment message = { message } />
171
- </ div >
172
- )
173
- } ) }
160
+ { mediaMessageIds . map ( msgId => {
161
+ const message = mediaLoadResult [ msgId ]
162
+ return (
163
+ < div className = 'item' key = { msgId } >
164
+ < this . state . element msgId = { msgId } load_result = { message } />
165
+ </ div >
166
+ )
167
+ } ) }
174
168
</ div >
175
169
</ div >
176
170
</ div >
0 commit comments