fix(client): use proxied image for instance icon
This commit is contained in:
		
							parent
							
								
									b3ec605ec3
								
							
						
					
					
						commit
						fc44d4c9f9
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -1,6 +1,6 @@ | ||||||
| <template> | <template> | ||||||
| <div :class="[$style.root, { yellow: instance.isNotResponding, red: instance.isBlocked, gray: instance.isSuspended }]"> | <div :class="[$style.root, { yellow: instance.isNotResponding, red: instance.isBlocked, gray: instance.isSuspended }]"> | ||||||
| 	<img v-if="instance.iconUrl" class="icon" :src="instance.iconUrl" alt=""/> | 	<img class="icon" :src="getInstanceIcon(instance)" alt=""/> | ||||||
| 	<div class="body"> | 	<div class="body"> | ||||||
| 		<span class="host">{{ instance.name ?? instance.host }}</span> | 		<span class="host">{{ instance.name ?? instance.host }}</span> | ||||||
| 		<span class="sub _monospace"><b>{{ instance.host }}</b> / {{ instance.softwareName || '?' }} {{ instance.softwareVersion }}</span> | 		<span class="sub _monospace"><b>{{ instance.host }}</b> / {{ instance.softwareName || '?' }} {{ instance.softwareVersion }}</span> | ||||||
|  | @ -13,6 +13,7 @@ | ||||||
| import * as misskey from 'misskey-js'; | import * as misskey from 'misskey-js'; | ||||||
| import MkMiniChart from '@/components/MkMiniChart.vue'; | import MkMiniChart from '@/components/MkMiniChart.vue'; | ||||||
| import * as os from '@/os'; | import * as os from '@/os'; | ||||||
|  | import { getProxiedImageUrlNullable } from '@/scripts/media-proxy'; | ||||||
| 
 | 
 | ||||||
| const props = defineProps<{ | const props = defineProps<{ | ||||||
| 	instance: misskey.entities.Instance; | 	instance: misskey.entities.Instance; | ||||||
|  | @ -25,6 +26,10 @@ os.apiGet('charts/instance', { host: props.instance.host, limit: 16 + 1, span: ' | ||||||
| 	res.requests.received.splice(0, 1); | 	res.requests.received.splice(0, 1); | ||||||
| 	chartValues = res.requests.received; | 	chartValues = res.requests.received; | ||||||
| }); | }); | ||||||
|  | 
 | ||||||
|  | function getInstanceIcon(instance): string { | ||||||
|  | 	return getProxiedImageUrlNullable(instance.iconUrl, 'preview') ?? getProxiedImageUrlNullable(instance.faviconUrl, 'preview') ?? '/client-assets/dummy.png'; | ||||||
|  | } | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
| <style lang="scss" module> | <style lang="scss" module> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue