* Add new links card and feature flag system for incremental dev. * Switch to env variable for dev flags * Add members card * fix order of creators card * Fix owner icon color and bring org owner to top of list * lint + other fixes * Revamp feature flag system, add flag config page * Add button to flags page in dev mode * fix env overrides * make typescript happy with the refs
108 lines
2.4 KiB
Vue
108 lines
2.4 KiB
Vue
<template>
|
|
<div class="vue-notification-group">
|
|
<transition-group name="notifs">
|
|
<div
|
|
v-for="(item, index) in notifications"
|
|
:key="item.id"
|
|
class="vue-notification-wrapper"
|
|
@click="notifications.splice(index, 1)"
|
|
@mouseenter="stopTimer(item)"
|
|
@mouseleave="setNotificationTimer(item)"
|
|
>
|
|
<div class="vue-notification-template vue-notification" :class="{ [item.type]: true }">
|
|
<div class="notification-title" v-html="item.title"></div>
|
|
<div class="notification-content" v-html="item.text"></div>
|
|
</div>
|
|
</div>
|
|
</transition-group>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
const notifications = useNotifications()
|
|
|
|
function stopTimer(notif) {
|
|
clearTimeout(notif.timer)
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.vue-notification {
|
|
background: var(--color-blue) !important;
|
|
border-left: 5px solid var(--color-blue) !important;
|
|
color: var(--color-brand-inverted) !important;
|
|
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
padding: 10px;
|
|
margin: 0 5px 5px;
|
|
|
|
&.success {
|
|
background: var(--color-green) !important;
|
|
border-left-color: var(--color-green) !important;
|
|
}
|
|
|
|
&.warn {
|
|
background: var(--color-orange) !important;
|
|
border-left-color: var(--color-orange) !important;
|
|
}
|
|
|
|
&.error {
|
|
background: var(--color-red) !important;
|
|
border-left-color: var(--color-red) !important;
|
|
}
|
|
}
|
|
|
|
.vue-notification-group {
|
|
position: fixed;
|
|
right: 25px;
|
|
bottom: 25px;
|
|
z-index: 99999999;
|
|
width: 300px;
|
|
|
|
.vue-notification-wrapper {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
margin-bottom: 10px;
|
|
|
|
.vue-notification-template {
|
|
border-radius: var(--size-rounded-card);
|
|
margin: 0;
|
|
|
|
.notification-title {
|
|
font-size: var(--font-size-lg);
|
|
margin-right: auto;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.notification-content {
|
|
margin-right: auto;
|
|
font-size: var(--font-size-md);
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 750px) {
|
|
transition: bottom 0.25s ease-in-out;
|
|
bottom: calc(var(--size-mobile-navbar-height) + 10px) !important;
|
|
|
|
&.browse-menu-open {
|
|
bottom: calc(var(--size-mobile-navbar-height-expanded) + 10px) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.notifs-enter-active,
|
|
.notifs-leave-active,
|
|
.notifs-move {
|
|
transition: all 0.5s;
|
|
}
|
|
.notifs-enter-from,
|
|
.notifs-leave-to {
|
|
opacity: 0;
|
|
}
|
|
</style>
|