mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-04-10 01:41:07 +00:00
78 lines
1.9 KiB
Vue
78 lines
1.9 KiB
Vue
<template>
|
|
<md-list-item
|
|
class="md-menu-item"
|
|
:class="classes"
|
|
@click="close"
|
|
:disabled="disabled">
|
|
<slot></slot>
|
|
</md-list-item>
|
|
</template>
|
|
|
|
<script>
|
|
import getClosestVueParent from '../../core/utils/getClosestVueParent';
|
|
import 'element.scrollintoviewifneeded-polyfill';
|
|
|
|
export default {
|
|
props: {
|
|
disabled: Boolean
|
|
},
|
|
data: () => ({
|
|
parentContent: {},
|
|
index: 0
|
|
}),
|
|
computed: {
|
|
classes() {
|
|
return {
|
|
'md-highlighted': this.highlighted
|
|
};
|
|
},
|
|
highlighted() {
|
|
if (this.index === this.parentContent.highlighted) {
|
|
if (this.disabled) {
|
|
if (this.parentContent.oldHighlight > this.parentContent.highlighted) {
|
|
this.parentContent.highlighted--;
|
|
} else {
|
|
this.parentContent.highlighted++;
|
|
}
|
|
}
|
|
|
|
if (this.index === 1) {
|
|
this.parentContent.$el.scrollTop = 0;
|
|
} else if (this.index === this.parentContent.itemsAmount) {
|
|
this.parentContent.$el.scrollTop = this.parentContent.$el.scrollHeight;
|
|
} else {
|
|
this.$el.scrollIntoViewIfNeeded(false);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
},
|
|
methods: {
|
|
close() {
|
|
if (!this.disabled) {
|
|
if (this.parentMenu.mdCloseOnSelect) {
|
|
this.parentContent.close();
|
|
}
|
|
|
|
this.$emit('click');
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
this.parentContent = getClosestVueParent(this.$parent, 'md-menu-content');
|
|
this.parentMenu = getClosestVueParent(this.$parent, 'md-menu');
|
|
|
|
if (!this.parentContent) {
|
|
this.$destroy();
|
|
|
|
throw new Error('You must wrap the md-menu-item in a md-menu-content');
|
|
}
|
|
|
|
this.parentContent.itemsAmount++;
|
|
this.index = this.parentContent.itemsAmount;
|
|
}
|
|
};
|
|
</script>
|