f44fa45aa0
* add unicorn to eslint * fix lint errors for cli * fix merge * fix album name extraction * Update cli/src/commands/upload.command.ts Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> * es2k23 * use lowercase os * return undefined album name * fix bug in asset response dto * auto fix issues * fix server code style * es2022 and formatting * fix compilation error * fix test * fix config load * fix last lint errors * set string type * bump ts * start work on web * web formatting * Fix UUIDParamDto as UUIDParamDto * fix library service lint * fix web errors * fix errors * formatting * wip * lints fixed * web can now start * alphabetical package json * rename error * chore: clean up --------- Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
70 lines
2.1 KiB
Svelte
70 lines
2.1 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import MenuOption from '$lib/components/shared-components/context-menu/menu-option.svelte';
|
|
import {
|
|
NotificationType,
|
|
notificationController,
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { api } from '@api';
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
import { mdiHeartMinusOutline, mdiHeartOutline, mdiTimerSand } from '@mdi/js';
|
|
import type { OnFavorite } from '$lib/utils/actions';
|
|
|
|
export let onFavorite: OnFavorite | undefined = undefined;
|
|
|
|
export let menuItem = false;
|
|
export let removeFavorite: boolean;
|
|
|
|
$: text = removeFavorite ? 'Remove from Favorites' : 'Favorite';
|
|
$: icon = removeFavorite ? mdiHeartMinusOutline : mdiHeartOutline;
|
|
|
|
let loading = false;
|
|
|
|
const { clearSelect, getOwnedAssets } = getAssetControlContext();
|
|
|
|
const handleFavorite = async () => {
|
|
const isFavorite = !removeFavorite;
|
|
loading = true;
|
|
|
|
try {
|
|
const assets = [...getOwnedAssets()].filter((asset) => asset.isFavorite !== isFavorite);
|
|
|
|
const ids = assets.map(({ id }) => id);
|
|
|
|
if (ids.length > 0) {
|
|
await api.assetApi.updateAssets({ assetBulkUpdateDto: { ids, isFavorite } });
|
|
}
|
|
|
|
for (const asset of assets) {
|
|
asset.isFavorite = isFavorite;
|
|
}
|
|
|
|
onFavorite?.(ids, isFavorite);
|
|
|
|
notificationController.show({
|
|
message: isFavorite ? `Added ${ids.length} to favorites` : `Removed ${ids.length} from favorites`,
|
|
type: NotificationType.Info,
|
|
});
|
|
|
|
clearSelect();
|
|
} catch (error) {
|
|
handleError(error, `Unable to ${isFavorite ? 'add to' : 'remove from'} favorites`);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
{#if menuItem}
|
|
<MenuOption {text} on:click={handleFavorite} />
|
|
{/if}
|
|
|
|
{#if !menuItem}
|
|
{#if loading}
|
|
<CircleIconButton title="Loading" icon={mdiTimerSand} />
|
|
{:else}
|
|
<CircleIconButton title={text} {icon} on:click={handleFavorite} />
|
|
{/if}
|
|
{/if}
|