fix: nav notify positioning + timeout indicator
This commit is contained in:
parent
d7676513ac
commit
9b8a886798
@ -207,6 +207,7 @@ Vue.component('page-source', () => import(/* webpackChunkName: "source" */ './co
|
|||||||
Vue.component('loader', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/loader.vue'))
|
Vue.component('loader', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/loader.vue'))
|
||||||
Vue.component('login', () => import(/* webpackPrefetch: true, webpackChunkName: "login" */ './components/login.vue'))
|
Vue.component('login', () => import(/* webpackPrefetch: true, webpackChunkName: "login" */ './components/login.vue'))
|
||||||
Vue.component('nav-header', () => import(/* webpackMode: "eager" */ './components/common/nav-header.vue'))
|
Vue.component('nav-header', () => import(/* webpackMode: "eager" */ './components/common/nav-header.vue'))
|
||||||
|
Vue.component('notify', () => import(/* webpackMode: "eager" */ './components/common/notify.vue'))
|
||||||
Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/page-selector.vue'))
|
Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/page-selector.vue'))
|
||||||
Vue.component('profile', () => import(/* webpackChunkName: "profile" */ './components/profile.vue'))
|
Vue.component('profile', () => import(/* webpackChunkName: "profile" */ './components/profile.vue'))
|
||||||
Vue.component('register', () => import(/* webpackChunkName: "register" */ './components/register.vue'))
|
Vue.component('register', () => import(/* webpackChunkName: "register" */ './components/register.vue'))
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
router-view
|
router-view
|
||||||
|
|
||||||
nav-footer
|
nav-footer
|
||||||
|
notify
|
||||||
search-results
|
search-results
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -321,6 +321,8 @@ export default {
|
|||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
|
|
||||||
.nav-header {
|
.nav-header {
|
||||||
|
z-index: 1000;
|
||||||
|
|
||||||
.v-toolbar__extension {
|
.v-toolbar__extension {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
|
58
client/components/common/notify.vue
Normal file
58
client/components/common/notify.vue
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<template lang='pug'>
|
||||||
|
v-snackbar.nav-notify(
|
||||||
|
:color='notification.style'
|
||||||
|
top
|
||||||
|
multi-line
|
||||||
|
auto-height
|
||||||
|
v-model='notificationState'
|
||||||
|
)
|
||||||
|
.text-xs-left
|
||||||
|
v-icon.mr-3(dark) {{ notification.icon }}
|
||||||
|
span {{ notification.message }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { get, sync } from 'vuex-pathify'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return { }
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
notification: get('notification'),
|
||||||
|
notificationState: sync('notification@isActive')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang='scss'>
|
||||||
|
.nav-notify {
|
||||||
|
top: 60px;
|
||||||
|
z-index: 999;
|
||||||
|
|
||||||
|
.v-snack__content {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 2px;
|
||||||
|
background-color: rgba(255,255,255,.4);
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
animation: nav-notify-anim 6s linear;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes nav-notify-anim {
|
||||||
|
0% {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
width: 0%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -92,17 +92,25 @@ export default {
|
|||||||
|
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
body.page-deleted-pending {
|
body.page-deleted-pending {
|
||||||
|
perspective: 50vw;
|
||||||
|
height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
.application {
|
.application {
|
||||||
background-color: mc('grey', '900');
|
background-color: mc('grey', '900');
|
||||||
}
|
}
|
||||||
.application--wrap {
|
.application--wrap {
|
||||||
|
transform-style: preserve-3d;
|
||||||
transform: translateZ(-5vw) rotateX(2deg);
|
transform: translateZ(-5vw) rotateX(2deg);
|
||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
body.page-deleted {
|
body.page-deleted {
|
||||||
|
perspective: 50vw;
|
||||||
|
|
||||||
.application--wrap {
|
.application--wrap {
|
||||||
|
transform-style: preserve-3d;
|
||||||
transform: translateZ(-1000vw) rotateX(60deg);
|
transform: translateZ(-1000vw) rotateX(60deg);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
@ -39,16 +39,7 @@
|
|||||||
component(:is='activeModal')
|
component(:is='activeModal')
|
||||||
|
|
||||||
loader(v-model='dialogProgress', :title='$t(`editor:save.processing`)', :subtitle='$t(`editor:save.pleaseWait`)')
|
loader(v-model='dialogProgress', :title='$t(`editor:save.processing`)', :subtitle='$t(`editor:save.pleaseWait`)')
|
||||||
v-snackbar(
|
notify
|
||||||
:color='notification.style'
|
|
||||||
bottom,
|
|
||||||
right,
|
|
||||||
multi-line,
|
|
||||||
v-model='notificationState'
|
|
||||||
)
|
|
||||||
.text-xs-left
|
|
||||||
v-icon.mr-3(dark) {{ notification.icon }}
|
|
||||||
span {{ notification.message }}
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -134,8 +125,6 @@ export default {
|
|||||||
darkMode: get('site/dark'),
|
darkMode: get('site/dark'),
|
||||||
activeModal: sync('editor/activeModal'),
|
activeModal: sync('editor/activeModal'),
|
||||||
mode: get('editor/mode'),
|
mode: get('editor/mode'),
|
||||||
notification: get('notification'),
|
|
||||||
notificationState: sync('notification@isActive'),
|
|
||||||
welcomeMode() { return this.mode === `create` && this.path === `home` },
|
welcomeMode() { return this.mode === `create` && this.path === `home` },
|
||||||
currentPageTitle: get('page/title')
|
currentPageTitle: get('page/title')
|
||||||
},
|
},
|
||||||
|
@ -103,6 +103,7 @@
|
|||||||
v-card.mt-3(light, v-html='diffHTML')
|
v-card.mt-3(light, v-html='diffHTML')
|
||||||
|
|
||||||
nav-footer
|
nav-footer
|
||||||
|
notify
|
||||||
search-results
|
search-results
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -130,6 +130,7 @@
|
|||||||
|
|
||||||
loader(v-model='isLoading', :color='loaderColor', :title='loaderTitle', :subtitle='$t(`auth:pleaseWait`)')
|
loader(v-model='isLoading', :color='loaderColor', :title='loaderTitle', :subtitle='$t(`auth:pleaseWait`)')
|
||||||
nav-footer(color='grey darken-4')
|
nav-footer(color='grey darken-4')
|
||||||
|
notify
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
router-view
|
router-view
|
||||||
|
|
||||||
nav-footer
|
nav-footer
|
||||||
|
notify
|
||||||
search-results
|
search-results
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
|
|
||||||
loader(v-model='isLoading', :mode='loaderMode', :icon='loaderIcon', :color='loaderColor', :title='loaderTitle', :subtitle='loaderSubtitle')
|
loader(v-model='isLoading', :mode='loaderMode', :icon='loaderIcon', :color='loaderColor', :title='loaderTitle', :subtitle='loaderSubtitle')
|
||||||
nav-footer(color='grey darken-4', dark-color='grey darken-4')
|
nav-footer(color='grey darken-4', dark-color='grey darken-4')
|
||||||
|
notify
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
slot
|
slot
|
||||||
|
|
||||||
nav-footer
|
nav-footer
|
||||||
|
notify
|
||||||
search-results
|
search-results
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
perspective: 50vw;
|
|
||||||
background-color: mc('grey', '900');
|
background-color: mc('grey', '900');
|
||||||
}
|
}
|
||||||
*, *:before, *:after {
|
*, *:before, *:after {
|
||||||
@ -23,7 +22,6 @@ html {
|
|||||||
|
|
||||||
.application--wrap {
|
.application--wrap {
|
||||||
transition: all 1.2s ease;
|
transition: all 1.2s ease;
|
||||||
transform-style: preserve-3d;
|
|
||||||
transform-origin: 50% 50%;
|
transform-origin: 50% 50%;
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
|
|
||||||
|
@ -3,17 +3,6 @@
|
|||||||
.caption.grey--text.text--darken-1
|
.caption.grey--text.text--darken-1
|
||||||
span(v-if='company && company.length > 0') {{ $t('common:footer.copyright', { company: company, year: currentYear, interpolation: { escapeValue: false } }) }} |
|
span(v-if='company && company.length > 0') {{ $t('common:footer.copyright', { company: company, year: currentYear, interpolation: { escapeValue: false } }) }} |
|
||||||
span {{ $t('common:footer.poweredBy') }} #[a(href='https://wiki.js.org', ref='nofollow') Wiki.js]
|
span {{ $t('common:footer.poweredBy') }} #[a(href='https://wiki.js.org', ref='nofollow') Wiki.js]
|
||||||
|
|
||||||
v-snackbar(
|
|
||||||
:color='notification.style'
|
|
||||||
bottom
|
|
||||||
right
|
|
||||||
multi-line
|
|
||||||
v-model='notificationState'
|
|
||||||
)
|
|
||||||
.text-xs-left
|
|
||||||
v-icon.mr-3(dark) {{ notification.icon }}
|
|
||||||
span {{ notification.message }}
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -37,9 +26,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
company: get('site/company'),
|
company: get('site/company'),
|
||||||
notification: get('notification'),
|
|
||||||
darkMode: get('site/dark'),
|
darkMode: get('site/dark'),
|
||||||
notificationState: sync('notification@isActive'),
|
|
||||||
bgColor() {
|
bgColor() {
|
||||||
if (!this.darkMode) {
|
if (!this.darkMode) {
|
||||||
return this.color
|
return this.color
|
||||||
|
@ -117,6 +117,7 @@
|
|||||||
span Print Format
|
span Print Format
|
||||||
v-spacer
|
v-spacer
|
||||||
nav-footer
|
nav-footer
|
||||||
|
notify
|
||||||
search-results
|
search-results
|
||||||
v-fab-transition
|
v-fab-transition
|
||||||
v-btn(v-if='upBtnShown', fab, fixed, bottom, right, small, @click='$vuetify.goTo(0, scrollOpts)', color='primary')
|
v-btn(v-if='upBtnShown', fab, fixed, bottom, right, small, @click='$vuetify.goTo(0, scrollOpts)', color='primary')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user