mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
fix(web): timeline distortion when scrolling due to rerender of scrollbar bucket and thumbnail size (#2398)
* fix(web): timeline distortion when scrolling due to rerender of scrollbar bucket and thumbnail size * fix: test
This commit is contained in:
parent
861de7f8b3
commit
053104fc50
4 changed files with 11 additions and 8 deletions
6
mobile/openapi/doc/AssetApi.md
generated
6
mobile/openapi/doc/AssetApi.md
generated
|
@ -1054,6 +1054,10 @@ import 'package:openapi/api.dart';
|
||||||
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKey = 'YOUR_API_KEY';
|
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKey = 'YOUR_API_KEY';
|
||||||
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
||||||
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKeyPrefix = 'Bearer';
|
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKeyPrefix = 'Bearer';
|
||||||
|
// TODO Configure API key authorization: api_key
|
||||||
|
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
|
||||||
|
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
||||||
|
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
|
||||||
// TODO Configure HTTP Bearer authorization: bearer
|
// TODO Configure HTTP Bearer authorization: bearer
|
||||||
// Case 1. Use String Token
|
// Case 1. Use String Token
|
||||||
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
|
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
|
||||||
|
@ -1088,7 +1092,7 @@ Name | Type | Description | Notes
|
||||||
|
|
||||||
### Authorization
|
### Authorization
|
||||||
|
|
||||||
[cookie](../README.md#cookie), [bearer](../README.md#bearer)
|
[cookie](../README.md#cookie), [api_key](../README.md#api_key), [bearer](../README.md#bearer)
|
||||||
|
|
||||||
### HTTP request headers
|
### HTTP request headers
|
||||||
|
|
||||||
|
|
|
@ -2655,6 +2655,9 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cookie": []
|
"cookie": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"api_key": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
3
web/src/api/open-api/api.ts
generated
3
web/src/api/open-api/api.ts
generated
|
@ -4817,6 +4817,9 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
|
||||||
|
|
||||||
// authentication cookie required
|
// authentication cookie required
|
||||||
|
|
||||||
|
// authentication api_key required
|
||||||
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
||||||
|
|
||||||
// authentication bearer required
|
// authentication bearer required
|
||||||
// http bearer authentication required
|
// http bearer authentication required
|
||||||
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
||||||
|
|
|
@ -108,17 +108,12 @@
|
||||||
// Show multi select icon on hover on date group
|
// Show multi select icon on hover on date group
|
||||||
hoveredDateGroup = dateGroupTitle;
|
hoveredDateGroup = dateGroupTitle;
|
||||||
};
|
};
|
||||||
|
|
||||||
let clientWidth = 0;
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- <svelte:window bind:innerWidth={clientWidth} /> -->
|
|
||||||
|
|
||||||
<section
|
<section
|
||||||
id="asset-group-by-date"
|
id="asset-group-by-date"
|
||||||
class="flex flex-wrap gap-12 mt-5"
|
class="flex flex-wrap gap-12 mt-5"
|
||||||
bind:clientHeight={actualBucketHeight}
|
bind:clientHeight={actualBucketHeight}
|
||||||
bind:clientWidth
|
|
||||||
>
|
>
|
||||||
{#each assetsGroupByDate as assetsInDateGroup, groupIndex (assetsInDateGroup[0].id)}
|
{#each assetsGroupByDate as assetsInDateGroup, groupIndex (assetsInDateGroup[0].id)}
|
||||||
{@const dateGroupTitle = new Date(assetsInDateGroup[0].fileCreatedAt).toLocaleDateString(
|
{@const dateGroupTitle = new Date(assetsInDateGroup[0].fileCreatedAt).toLocaleDateString(
|
||||||
|
@ -165,8 +160,6 @@
|
||||||
{#each assetsInDateGroup as asset (asset.id)}
|
{#each assetsInDateGroup as asset (asset.id)}
|
||||||
<div animate:flip={{ duration: 300 }}>
|
<div animate:flip={{ duration: 300 }}>
|
||||||
<Thumbnail
|
<Thumbnail
|
||||||
thumbnailWidth={clientWidth <= 768 ? clientWidth / 4 - 4 : undefined}
|
|
||||||
thumbnailHeight={clientWidth <= 768 ? clientWidth / 4 - 4 : undefined}
|
|
||||||
{asset}
|
{asset}
|
||||||
{groupIndex}
|
{groupIndex}
|
||||||
on:click={() => assetClickHandler(asset, assetsInDateGroup, dateGroupTitle)}
|
on:click={() => assetClickHandler(asset, assetsInDateGroup, dateGroupTitle)}
|
||||||
|
|
Loading…
Add table
Reference in a new issue