This commit is contained in:
Alexander Drozdov
2021-01-12 19:30:10 +02:00
parent b9777ce117
commit 8ae2a1bc91
2 changed files with 79 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@
"main": "background.js",
"dependencies": {
"@fortawesome/fontawesome-free": "5.14.x",
"animate.css": "^4.1.1",
"dot-prop": "6.x.x",
"electron-overlay-window": "1.0.x",
"electron-store": "6.0.x",
+78
View File
@@ -0,0 +1,78 @@
<template>
<transition
enter-active-class="animate__animated animate__fadeIn"
leave-active-class="animate__animated animate__backOutDown">
<div :class="$style.widget" v-if="show">
<div :class="$style.box">
<div class="py-2 px-4">
<div class="text-base">Awakened PoE Trade</div>
<p>{{ t('Is ready and running in background') }}</p>
</div>
</div>
</div>
</transition>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
import { useI18n } from 'vue-i18n'
export default {
setup () {
const show = ref(false)
// @TODO
setTimeout(() => {
show.value = true
setTimeout(() => { show.value = false }, 2500)
}, 1000)
const { t } = useI18n()
return {
t,
show
}
}
}
</script>
<style lang="postcss" module>
.widget {
position: absolute;
display: flex;
width: 100%;
justify-content: center;
bottom: 20%;
}
.box {
position: relative;
display: flex;
@apply bg-gray-800;
@apply text-gray-100;
@apply rounded;
box-shadow: 0px 0px 1px 2px rgb(255 255 255 / 20%);
}
.box::before {
position: absolute;
content: '';
background: url('~@/assets/images/TransferOrb.png') no-repeat top right/contain;
right: 100%;
width: 100%;
height: 100%;
max-width: 78px;
@apply mr-2;
pointer-events: none;
filter: drop-shadow(2px 4px 6px #000);
}
</style>
<i18n>
{
"ru": {
"Is ready and running in background": "Запущен и работает в фоновом режиме"
}
}
</i18n>