mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-02 18:47:07 -05:00 
			
		
		
		
	Remove serverEndpoint completely and fix upload path (#434)
This commit is contained in:
		
							parent
							
								
									b45024a97e
								
							
						
					
					
						commit
						953d18e795
					
				@ -1,4 +1,3 @@
 | 
			
		||||
import { serverEndpoint } from '$lib/constants';
 | 
			
		||||
import {
 | 
			
		||||
	AlbumApi,
 | 
			
		||||
	AssetApi,
 | 
			
		||||
 | 
			
		||||
@ -4,7 +4,6 @@
 | 
			
		||||
	import type { ImmichUser } from '$lib/models/immich-user';
 | 
			
		||||
	import { createEventDispatcher, onMount } from 'svelte';
 | 
			
		||||
	import { fade, fly, slide } from 'svelte/transition';
 | 
			
		||||
	import { serverEndpoint } from '../../constants';
 | 
			
		||||
	import TrayArrowUp from 'svelte-material-icons/TrayArrowUp.svelte';
 | 
			
		||||
	import { clickOutside } from '../../utils/click-outside';
 | 
			
		||||
	import { api } from '@api';
 | 
			
		||||
@ -131,7 +130,7 @@
 | 
			
		||||
				>
 | 
			
		||||
					{#if shouldShowProfileImage}
 | 
			
		||||
						<img
 | 
			
		||||
							src={`${serverEndpoint}/user/profile-image/${user.id}`}
 | 
			
		||||
							src={`api/user/profile-image/${user.id}`}
 | 
			
		||||
							alt="profile-img"
 | 
			
		||||
							class="inline rounded-full h-20 w-20 object-cover shadow-md"
 | 
			
		||||
						/>
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,10 @@
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
	import { onDestroy, onMount } from 'svelte';
 | 
			
		||||
	import { serverEndpoint } from '$lib/constants';
 | 
			
		||||
	import Cloud from 'svelte-material-icons/Cloud.svelte';
 | 
			
		||||
	import Dns from 'svelte-material-icons/Dns.svelte';
 | 
			
		||||
	import LoadingSpinner from './loading-spinner.svelte';
 | 
			
		||||
	import { api, ServerInfoResponseDto } from '@api';
 | 
			
		||||
 | 
			
		||||
	let endpoint = serverEndpoint;
 | 
			
		||||
	let isServerOk = true;
 | 
			
		||||
	let serverVersion = '';
 | 
			
		||||
	let serverInfo: ServerInfoResponseDto;
 | 
			
		||||
 | 
			
		||||
@ -1,2 +1 @@
 | 
			
		||||
export const serverEndpoint: string = import.meta.env.VITE_SERVER_ENDPOINT;
 | 
			
		||||
export const loginPageMessage: string = import.meta.env.VITE_LOGIN_PAGE_MESSAGE;
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,9 @@
 | 
			
		||||
import { Socket, io } from 'socket.io-client';
 | 
			
		||||
import { writable } from 'svelte/store';
 | 
			
		||||
import { serverEndpoint } from '../constants';
 | 
			
		||||
 | 
			
		||||
let websocket: Socket;
 | 
			
		||||
 | 
			
		||||
export const openWebsocketConnection = () => {
 | 
			
		||||
	const websocketEndpoint = serverEndpoint.replace('/api', '');
 | 
			
		||||
 | 
			
		||||
	try {
 | 
			
		||||
		websocket = io('', {
 | 
			
		||||
			path: '/api/socket.io',
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,5 @@
 | 
			
		||||
/* @vite-ignore */
 | 
			
		||||
import * as exifr from 'exifr';
 | 
			
		||||
import { serverEndpoint } from '../constants';
 | 
			
		||||
import { uploadAssetsStore } from '$lib/stores/upload';
 | 
			
		||||
import type { UploadAsset } from '../models/upload-asset';
 | 
			
		||||
import { api, AssetFileUploadResponseDto } from '@api';
 | 
			
		||||
@ -168,7 +167,7 @@ async function fileUploader(asset: File, uploadType: UploadType) {
 | 
			
		||||
			uploadAssetsStore.updateProgress(deviceAssetId, percentComplete);
 | 
			
		||||
		};
 | 
			
		||||
 | 
			
		||||
		request.open('POST', `api/asset/upload`);
 | 
			
		||||
		request.open('POST', `/api/asset/upload`);
 | 
			
		||||
 | 
			
		||||
		request.send(formData);
 | 
			
		||||
	} catch (e) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user