Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled
66 lines
1.4 KiB
Vue
66 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import type { CSSProperties } from 'vue';
|
|
|
|
import { computed, ref, useTemplateRef } from 'vue';
|
|
|
|
import { Check, ChevronsRight } from '@vben/icons';
|
|
|
|
import { Slot } from '@vben-core/shadcn-ui';
|
|
|
|
const props = defineProps<{
|
|
actionStyle: CSSProperties;
|
|
isPassing: boolean;
|
|
toLeft: boolean;
|
|
}>();
|
|
|
|
const actionRef = useTemplateRef<HTMLDivElement>('actionRef');
|
|
|
|
const left = ref('0');
|
|
|
|
const style = computed(() => {
|
|
const { actionStyle } = props;
|
|
return {
|
|
...actionStyle,
|
|
left: left.value,
|
|
};
|
|
});
|
|
|
|
const isDragging = computed(() => {
|
|
const currentLeft = Number.parseInt(left.value as string);
|
|
|
|
return currentLeft > 10 && !props.isPassing;
|
|
});
|
|
|
|
defineExpose({
|
|
getEl: () => {
|
|
return actionRef.value;
|
|
},
|
|
getStyle: () => {
|
|
return actionRef?.value?.style;
|
|
},
|
|
setLeft: (val: string) => {
|
|
left.value = val;
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
ref="actionRef"
|
|
:class="{
|
|
'transition-width !left-0 duration-300': toLeft,
|
|
'rounded-md': isDragging,
|
|
}"
|
|
:style="style"
|
|
class="bg-background dark:bg-accent absolute left-0 top-0 flex h-full cursor-move items-center justify-center px-3.5 shadow-md"
|
|
name="captcha-action"
|
|
>
|
|
<Slot :is-passing="isPassing" class="text-foreground/60 size-4">
|
|
<slot name="icon">
|
|
<ChevronsRight v-if="!isPassing" />
|
|
<Check v-else />
|
|
</slot>
|
|
</Slot>
|
|
</div>
|
|
</template>
|