mirror of
https://github.com/imputnet/cobalt.git
synced 2024-12-28 02:26:10 +00:00
web/Omnibox: add a cool animation to input icons
This commit is contained in:
parent
b38cb77952
commit
c67132d2cc
|
@ -17,13 +17,11 @@
|
|||
import type { Optional } from "$lib/types/generic";
|
||||
import type { DownloadModeOption } from "$lib/types/settings";
|
||||
|
||||
import IconLink from "@tabler/icons-svelte/IconLink.svelte";
|
||||
import IconLoader2 from "@tabler/icons-svelte/IconLoader2.svelte";
|
||||
|
||||
import ClearButton from "$components/save/buttons/ClearButton.svelte";
|
||||
import DownloadButton from "$components/save/buttons/DownloadButton.svelte";
|
||||
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import OmniboxIcon from "$components/save/OmniboxIcon.svelte";
|
||||
import ActionButton from "$components/buttons/ActionButton.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
|
||||
|
@ -142,17 +140,7 @@
|
|||
class:focused={isFocused}
|
||||
class:downloadable={validLink($link)}
|
||||
>
|
||||
<div
|
||||
id="input-link-icon"
|
||||
class:loading={isLoading || isBotCheckOngoing}
|
||||
>
|
||||
{#if isLoading || isBotCheckOngoing}
|
||||
<IconLoader2 />
|
||||
{:else}
|
||||
<IconLink />
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<OmniboxIcon loading={isLoading || isBotCheckOngoing} />
|
||||
<input
|
||||
id="link-area"
|
||||
bind:value={$link}
|
||||
|
@ -250,35 +238,11 @@
|
|||
outline: var(--secondary) 0.5px solid;
|
||||
}
|
||||
|
||||
#input-link-icon {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#input-link-icon :global(svg) {
|
||||
stroke: var(--gray);
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
#input-link-icon.loading :global(svg) {
|
||||
animation: spin 0.7s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
#input-container.focused #input-link-icon :global(svg) {
|
||||
#input-container.focused :global(#input-icons svg) {
|
||||
stroke: var(--secondary);
|
||||
}
|
||||
|
||||
#input-container.downloadable #input-link-icon :global(svg) {
|
||||
#input-container.downloadable :global(#input-icons svg) {
|
||||
stroke: var(--secondary);
|
||||
}
|
||||
|
||||
|
|
78
web/src/components/save/OmniboxIcon.svelte
Normal file
78
web/src/components/save/OmniboxIcon.svelte
Normal file
|
@ -0,0 +1,78 @@
|
|||
<script lang="ts">
|
||||
import IconLink from "@tabler/icons-svelte/IconLink.svelte";
|
||||
import IconLoader2 from "@tabler/icons-svelte/IconLoader2.svelte";
|
||||
|
||||
export let loading: boolean;
|
||||
</script>
|
||||
|
||||
<div id="input-icons" class:loading>
|
||||
<div class="input-icon spinner-icon">
|
||||
<IconLoader2 />
|
||||
</div>
|
||||
<div class="input-icon link-icon">
|
||||
<IconLink />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
#input-icons {
|
||||
display: flex;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
#input-icons :global(svg) {
|
||||
stroke: var(--gray);
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.input-icon {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
transition:
|
||||
transform 0.25s,
|
||||
opacity 0.25s;
|
||||
}
|
||||
|
||||
.link-icon {
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.spinner-icon {
|
||||
transform: scale(0.4);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.spinner-icon :global(svg) {
|
||||
animation: spin 0.7s infinite linear;
|
||||
}
|
||||
|
||||
.loading .link-icon :global(svg) {
|
||||
animation: spin 0.7s infinite linear;
|
||||
}
|
||||
|
||||
.loading .link-icon {
|
||||
transform: scale(0.4);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.loading .spinner-icon {
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in a new issue