12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import 'package:hive/hive.dart';
- import 'package:openapi/api.dart';
- import '../constants/hive_box.dart';
- String getThumbnailUrl(
- final AssetResponseDto asset, {
- ThumbnailFormat type = ThumbnailFormat.WEBP,
- }) {
- return _getThumbnailUrl(asset.id, type: type);
- }
- String getThumbnailCacheKey(
- final AssetResponseDto asset, {
- ThumbnailFormat type = ThumbnailFormat.WEBP,
- }) {
- return _getThumbnailCacheKey(asset.id, type);
- }
- String _getThumbnailCacheKey(final String id, final ThumbnailFormat type) {
- if (type == ThumbnailFormat.WEBP) {
- return 'thumbnail-image-$id';
- } else {
- return '${id}_previewStage';
- }
- }
- String getAlbumThumbnailUrl(
- final AlbumResponseDto album, {
- ThumbnailFormat type = ThumbnailFormat.WEBP,
- }) {
- if (album.albumThumbnailAssetId == null) {
- return '';
- }
- return _getThumbnailUrl(album.albumThumbnailAssetId!, type: type);
- }
- String getAlbumThumbNailCacheKey(
- final AlbumResponseDto album, {
- ThumbnailFormat type = ThumbnailFormat.WEBP,
- }) {
- if (album.albumThumbnailAssetId == null) {
- return '';
- }
- return _getThumbnailCacheKey(album.albumThumbnailAssetId!, type);
- }
- String getImageUrl(final AssetResponseDto asset) {
- final box = Hive.box(userInfoBox);
- return '${box.get(serverEndpointKey)}/asset/file/${asset.id}?isThumb=false';
- }
- String getImageCacheKey(final AssetResponseDto asset) {
- return '${asset.id}_fullStage';
- }
- String _getThumbnailUrl(
- final String id, {
- ThumbnailFormat type = ThumbnailFormat.WEBP,
- }) {
- final box = Hive.box(userInfoBox);
- return '${box.get(serverEndpointKey)}/asset/thumbnail/$id?format=${type.value}';
- }
|