Skip to content

Commit b29c61a

Browse files
farooqkzSimon-Laux
andcommitted
correct way of showing gallery errors (#3360)
* correct way of showing gallery errors * fix formatting * placeholder for showing Gallery errors * no fake sort timestamp, show media in place * refactor: aways show the same elements for a gallery tab and move error display to those elements * rm non working options from getBrokenMediaContextMenu * add context menu option to delete media-messages from gallery "delete message from gallery" was mentioned in deltachat/interface#39 * remove load error from getting displayed because it is too large to be displayed * fix all attachments get displayed as images * make errors visually fit in --------- Co-authored-by: SimonLaux <[email protected]>
1 parent e10b27c commit b29c61a

File tree

4 files changed

+391
-211
lines changed

4 files changed

+391
-211
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ Also make opening devtools with F12 more reliable.
170170
- Show thumbnail in chatlist summary of image, sticker and webxdc messages
171171
- add webxdc api `sendToChat` #3240
172172
- add webxdc api `importFiles`
173+
- add context menu option to delete media-messages from gallery
173174

174175
### Changed
175176
- exclude more unused files from installation package

scss/gallery/_media-attachment.scss

+25
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@
7171
color: grey;
7272
}
7373
}
74+
75+
&.broken {
76+
.name {
77+
color: var(--colorDanger);
78+
}
79+
}
7480
}
7581

7682
.media-attachment-generic {
@@ -145,6 +151,16 @@
145151
margin-top: 3px;
146152
}
147153
}
154+
155+
&.broken {
156+
& > .file-icon {
157+
cursor: unset;
158+
}
159+
.name,
160+
.file-extension {
161+
color: var(--colorDanger);
162+
}
163+
}
148164
}
149165

150166
.media-attachment-webxdc {
@@ -195,4 +211,13 @@
195211
word-break: break-all;
196212
}
197213
}
214+
215+
&.broken {
216+
& > .icon {
217+
background-color: var(--colorDanger);
218+
}
219+
.name {
220+
color: var(--colorDanger);
221+
}
222+
}
198223
}

src/renderer/components/Gallery.tsx

+44-50
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import React, { Component } from 'react'
22
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'
411
import { getLogger } from '../../shared/logger'
512
import { BackendRemote, Type } from '../backend-com'
613
import { selectedAccountId } from '../ScreenController'
@@ -11,23 +18,31 @@ type MediaTabKey = 'images' | 'video' | 'audio' | 'files' | 'webxdc_apps'
1118

1219
const MediaTabs: Readonly<
1320
{
14-
[key in MediaTabKey]: { values: Type.Viewtype[] }
21+
[key in MediaTabKey]: {
22+
values: Type.Viewtype[]
23+
element: (props: GalleryAttachmentElementProps) => JSX.Element
24+
}
1525
}
1626
> = {
1727
images: {
1828
values: ['Gif', 'Image'],
29+
element: ImageAttachment,
1930
},
2031
video: {
2132
values: ['Video'],
33+
element: VideoAttachment,
2234
},
2335
audio: {
2436
values: ['Audio', 'Voice'],
37+
element: AudioAttachment,
2538
},
2639
files: {
2740
values: ['File'],
41+
element: FileAttachment,
2842
},
2943
webxdc_apps: {
3044
values: ['Webxdc'],
45+
element: WebxdcAttachment,
3146
},
3247
}
3348

@@ -38,17 +53,19 @@ export default class Gallery extends Component<
3853
{
3954
id: MediaTabKey
4055
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>
4359
}
4460
> {
4561
constructor(props: mediaProps) {
4662
super(props)
4763
this.state = {
4864
id: 'images',
4965
msgTypes: MediaTabs.images.values,
50-
medias: [],
51-
errors: [],
66+
element: ImageAttachment,
67+
mediaMessageIds: [],
68+
mediaLoadResult: {},
5269
}
5370
}
5471

@@ -67,29 +84,25 @@ export default class Gallery extends Component<
6784
throw new Error('chat id missing')
6885
}
6986
const msgTypes = MediaTabs[id].values
87+
const newElement = MediaTabs[id].element
7088
const accountId = selectedAccountId()
7189
const chatId = this.props.chatId !== 'all' ? this.props.chatId : null
7290

7391
BackendRemote.rpc
7492
.getChatMedia(accountId, chatId, msgTypes[0], msgTypes[1], null)
7593
.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(
7895
accountId,
7996
media_ids
8097
)
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+
})
93106
this.forceUpdate()
94107
})
95108
.catch(log.error.bind(log))
@@ -113,7 +126,7 @@ export default class Gallery extends Component<
113126
}
114127

115128
render() {
116-
const { medias, id, errors } = this.state
129+
const { mediaMessageIds, mediaLoadResult, id } = this.state
117130
const tx = window.static_translate // static because dynamic isn't too important here
118131
const emptyTabMessage = this.emptyTabMessage(id)
119132

@@ -138,39 +151,20 @@ export default class Gallery extends Component<
138151
</ul>
139152
<div className='bp4-tab-panel' role='tabpanel'>
140153
<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 ? (
161156
<p className='no-media-message'>{emptyTabMessage}</p>
162157
) : (
163158
''
164159
)}
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+
})}
174168
</div>
175169
</div>
176170
</div>

0 commit comments

Comments
 (0)