-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Daniel Roe <[email protected]>
- Loading branch information
Showing
4 changed files
with
604 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<script setup> | ||
import { useNuxtApp, onBeforeUnmount, reactive } from '#imports' | ||
const props = defineProps({ | ||
throttle: { | ||
type: Number, | ||
default: 200 | ||
}, | ||
duration: { | ||
type: Number, | ||
default: 2000 | ||
}, | ||
height: { | ||
type: Number, | ||
default: 3 | ||
} | ||
}) | ||
const nuxtApp = useNuxtApp() | ||
// Options & Data | ||
const data = reactive({ | ||
percent: 0, | ||
show: false, | ||
canSucceed: true | ||
}) | ||
// Local variables | ||
let _timer = null | ||
let _throttle = null | ||
let _cut | ||
// Functions | ||
function clear () { | ||
_timer && clearInterval(_timer) | ||
_throttle && clearTimeout(_throttle) | ||
_timer = null | ||
} | ||
function start () { | ||
if (data.show) { return } | ||
clear() | ||
data.percent = 0 | ||
data.canSucceed = true | ||
if (props.throttle) { | ||
_throttle = setTimeout(startTimer, props.throttle) | ||
} else { | ||
startTimer() | ||
} | ||
} | ||
function increase (num) { | ||
data.percent = Math.min(100, Math.floor(data.percent + num)) | ||
} | ||
function finish () { | ||
data.percent = 100 | ||
hide() | ||
} | ||
function hide () { | ||
clear() | ||
setTimeout(() => { | ||
data.show = false | ||
setTimeout(() => { | ||
data.percent = 0 | ||
}, 400) | ||
}, 500) | ||
} | ||
function startTimer () { | ||
data.show = true | ||
_cut = 10000 / Math.floor(props.duration) | ||
_timer = setInterval(() => { | ||
increase(_cut) | ||
}, 100) | ||
} | ||
// Hooks | ||
nuxtApp.hook('content:middleware:start', start) | ||
nuxtApp.hook('page:start', start) | ||
nuxtApp.hook('page:finish', finish) | ||
onBeforeUnmount(() => clear) | ||
</script> | ||
|
||
<template> | ||
<div | ||
class="nuxt-progress" | ||
:class="{ | ||
'nuxt-progress-failed': !data.canSucceed, | ||
}" | ||
:style="{ | ||
width: `${data.percent}%`, | ||
left: data.left, | ||
height: `${props.height}px`, | ||
opacity: data.show ? 1 : 0, | ||
backgroundSize: `${(100 / data.percent) * 100}% auto`, | ||
}" | ||
/> | ||
</template> | ||
|
||
<style> | ||
.nuxt-progress { | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
right: 0px; | ||
width: 0%; | ||
opacity: 1; | ||
transition: width 0.1s, height 0.4s, opacity 0.4s; | ||
background: repeating-linear-gradient(to right, #00dc82 0%, #34cdfe 50%, #0047e1 100%); | ||
z-index: 999999; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
87b9873
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
content-wind – ./
content-wind.vercel.app
content-wind-atinux.vercel.app
content-wind-git-main-atinux.vercel.app
content-wind.nuxt.dev