Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Nicer 'post processing status' in the composer (#1472)

authored by

Paul Frazee and committed by
GitHub
753fb8bf 8b8fba72

+11 -10
+11 -10
src/view/com/composer/Composer.tsx
··· 285 285 </View> 286 286 )} 287 287 </View> 288 - {isProcessing ? ( 289 - <View style={[pal.btn, styles.processingLine]}> 290 - <Text style={pal.text}>{processingState}</Text> 291 - </View> 292 - ) : undefined} 293 288 {store.preferences.requireAltTextEnabled && gallery.needsAltText && ( 294 289 <View style={[styles.reminderLine, pal.viewLight]}> 295 290 <View style={styles.errorIcon}> ··· 374 369 </View> 375 370 ) : undefined} 376 371 </ScrollView> 372 + {isProcessing ? ( 373 + <View style={[pal.viewLight, styles.processingLine]}> 374 + <ActivityIndicator /> 375 + <Text style={pal.textLight}>{processingState}</Text> 376 + </View> 377 + ) : undefined} 377 378 {!extLink && suggestedLinks.size > 0 ? ( 378 379 <View style={s.mb5}> 379 380 {Array.from(suggestedLinks) ··· 435 436 paddingVertical: 6, 436 437 }, 437 438 processingLine: { 438 - borderRadius: 6, 439 - paddingHorizontal: 8, 440 - paddingVertical: 6, 441 - marginHorizontal: 15, 442 - marginBottom: 6, 439 + flexDirection: 'row', 440 + alignItems: 'center', 441 + gap: 8, 442 + paddingHorizontal: 26, 443 + paddingVertical: 12, 443 444 }, 444 445 errorLine: { 445 446 flexDirection: 'row',