Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat (web/server) 360 degrees Web panoramas #3098

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions server/immich-openapi-specs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5103,9 +5103,6 @@
"isFavorite": {
"type": "boolean"
},
"isPanorama": {
"type": "boolean"
},
"isArchived": {
"type": "boolean"
},
Expand All @@ -5124,8 +5121,7 @@
"deviceId",
"fileCreatedAt",
"fileModifiedAt",
"isFavorite",
"isPanorama"
"isFavorite"
]
},
"CreateProfileImageDto": {
Expand Down Expand Up @@ -5521,9 +5517,6 @@
"isFavorite": {
"type": "boolean"
},
"isPanorama": {
"type": "boolean"
},
"isArchived": {
"type": "boolean"
},
Expand All @@ -5541,8 +5534,7 @@
"deviceId",
"fileCreatedAt",
"fileModifiedAt",
"isFavorite",
"isPanorama"
"isFavorite"
]
},
"JobCommand": {
Expand Down
3 changes: 0 additions & 3 deletions web/src/lib/components/assets/thumbnail/360arrow.svg
jrasm91 marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { fade } from 'svelte/transition';
import { thumbHashToDataURL } from 'thumbhash';
import { Buffer } from 'buffer';
import PanoramaArrow from './360arrow.svg';
import Rotate360Icon from 'svelte-material-icons/Rotate360.svelte';

export let url: string;
export let altText: string;
Expand All @@ -21,7 +21,7 @@
{#if displayPanoramaArrow}
<div class="absolute right-0 top-0 text-white text-xs font-medium flex gap-1 place-items-center z-20">
<span class="pt-2 pr-2">
<img src={PanoramaArrow} alt="" width="24" height="24" />
<svelte:component this={Rotate360Icon} size="24" />
dmitry-brazhenko marked this conversation as resolved.
Show resolved Hide resolved
</span>
</div>
{/if}
Expand Down