quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
203 lines (168 loc) • 4.54 kB
JavaScript
import Vue from 'vue'
import QResizeObserver from '../resize-observer/QResizeObserver.js'
import ListenersMixin from '../../mixins/listeners.js'
import { uniqueSlot } from '../../utils/slot.js'
import { stop } from '../../utils/event.js'
import cache from '../../utils/cache.js'
export default Vue.extend({
name: 'QHeader',
mixins: [ ListenersMixin ],
inject: {
layout: {
default () {
console.error('QHeader needs to be child of QLayout')
}
}
},
props: {
value: {
type: Boolean,
default: true
},
reveal: Boolean,
revealOffset: {
type: Number,
default: 250
},
bordered: Boolean,
elevated: Boolean,
heightHint: {
type: [String, Number],
default: 50
}
},
data () {
return {
size: parseInt(this.heightHint, 10),
revealed: true
}
},
watch: {
value (val) {
this.__update('space', val)
this.__updateLocal('revealed', true)
this.layout.__animate()
},
offset (val) {
this.__update('offset', val)
},
reveal (val) {
val === false && this.__updateLocal('revealed', this.value)
},
revealed (val) {
this.layout.__animate()
this.$emit('reveal', val)
},
'layout.scroll' (scroll) {
this.reveal === true && this.__updateLocal('revealed',
scroll.direction === 'up' ||
scroll.position <= this.revealOffset ||
scroll.position - scroll.inflexionPosition < 100
)
}
},
computed: {
fixed () {
return this.reveal === true ||
this.layout.view.indexOf('H') > -1 ||
this.layout.container === true
},
offset () {
if (this.value !== true) {
return 0
}
if (this.fixed === true) {
return this.revealed === true ? this.size : 0
}
const offset = this.size - this.layout.scroll.position
return offset > 0 ? offset : 0
},
hidden () {
return this.value !== true || (this.fixed === true && this.revealed !== true)
},
revealOnFocus () {
return this.value === true && this.hidden === true && this.reveal === true
},
classes () {
return (this.fixed === true ? 'fixed' : 'absolute') + '-top' +
(this.bordered === true ? ' q-header--bordered' : '') +
(this.hidden === true ? ' q-header--hidden' : '') +
(this.value !== true ? ' q-layout--prevent-focus' : '')
},
style () {
const
view = this.layout.rows.top,
css = {}
if (view[0] === 'l' && this.layout.left.space === true) {
css[this.$q.lang.rtl === true ? 'right' : 'left'] = `${this.layout.left.size}px`
}
if (view[2] === 'r' && this.layout.right.space === true) {
css[this.$q.lang.rtl === true ? 'left' : 'right'] = `${this.layout.right.size}px`
}
return css
},
onEvents () {
return {
...this.qListeners,
focusin: this.__onFocusin,
input: stop
}
}
},
render (h) {
const child = uniqueSlot(this, 'default', [])
this.elevated === true && child.push(
h('div', {
staticClass: 'q-layout__shadow absolute-full overflow-hidden no-pointer-events'
})
)
child.push(
h(QResizeObserver, {
props: { debounce: 0 },
on: cache(this, 'resize', { resize: this.__onResize })
})
)
return h('header', {
staticClass: 'q-header q-layout__section--marginal',
class: this.classes,
style: this.style,
on: this.onEvents
}, child)
},
created () {
this.layout.instances.header = this
this.value === true && this.__update('size', this.size)
this.__update('space', this.value)
this.__update('offset', this.offset)
},
beforeDestroy () {
if (this.layout.instances.header === this) {
this.layout.instances.header = void 0
this.__update('size', 0)
this.__update('offset', 0)
this.__update('space', false)
}
},
methods: {
__onResize ({ height }) {
this.__updateLocal('size', height)
this.__update('size', height)
},
__update (prop, val) {
if (this.layout.header[prop] !== val) {
this.layout.header[prop] = val
}
},
__updateLocal (prop, val) {
if (this[prop] !== val) {
this[prop] = val
}
},
__onFocusin (evt) {
if (this.revealOnFocus === true) {
this.__updateLocal('revealed', true)
}
this.$emit('focusin', evt)
}
}
})