|
| 1 | +<script> |
| 2 | + import MdListItemButton from './MdListItemButton' |
| 3 | + import MdListItemLink from './MdListItemLink' |
| 4 | + import MdListItemRouter from './MdListItemRouter' |
| 5 | + import MdButton from 'components/MdButton/MdButton' |
| 6 | +
|
| 7 | + export default { |
| 8 | + name: 'MdListItem', |
| 9 | + functional: true, |
| 10 | + components: { |
| 11 | + MdButton |
| 12 | + }, |
| 13 | + render (createElement, { data, parent, props, listeners, children }) { |
| 14 | + let listComponent = MdListItemButton |
| 15 | +
|
| 16 | + if (parent && parent.$router && props.to) { |
| 17 | + listComponent = MdListItemRouter |
| 18 | + listComponent.props = { |
| 19 | + target: String, |
| 20 | + ...parent.$options.components['router-link'].options.props |
| 21 | + } |
| 22 | + delete listComponent.props.href |
| 23 | + } else if (props.href) { |
| 24 | + listComponent = MdListItemLink |
| 25 | + } |
| 26 | +
|
| 27 | + return createElement('li', { |
| 28 | + on: listeners, |
| 29 | + staticClass: 'md-list-item ' + data.staticClass |
| 30 | + }, [ |
| 31 | + createElement(listComponent, { |
| 32 | + staticClass: 'md-list-item-container md-button-clean', |
| 33 | + props |
| 34 | + }, [children]) |
| 35 | + ]) |
| 36 | + } |
| 37 | + } |
| 38 | +</script> |
| 39 | + |
| 40 | +<style lang="scss"> |
| 41 | + @import "~components/MdAnimation/variables"; |
| 42 | +
|
| 43 | + .md-list-item { |
| 44 | + height: auto; |
| 45 | + position: relative; |
| 46 | + z-index: 2; |
| 47 | +
|
| 48 | + .md-icon { |
| 49 | + margin: 0; |
| 50 | + transition-property: color, margin-right; |
| 51 | + } |
| 52 | +
|
| 53 | + &.md-inset { |
| 54 | + .md-list-item-content { |
| 55 | + padding-left: 72px; |
| 56 | + } |
| 57 | + } |
| 58 | + } |
| 59 | +
|
| 60 | + .md-list-item-container { |
| 61 | + width: 100%; |
| 62 | + display: flex; |
| 63 | + font-size: 16px; |
| 64 | + font-weight: 400; |
| 65 | + text-align: left; |
| 66 | + text-transform: none; |
| 67 | + cursor: pointer; |
| 68 | +
|
| 69 | + &.md-button-clean:hover { |
| 70 | + opacity: 1; |
| 71 | + text-decoration: none; |
| 72 | + } |
| 73 | + } |
| 74 | +
|
| 75 | + .md-list-item-content { |
| 76 | + min-height: 48px; |
| 77 | + padding: 0 16px; |
| 78 | + display: flex; |
| 79 | + flex-flow: row nowrap; |
| 80 | + align-items: center; |
| 81 | + flex: 1; |
| 82 | +
|
| 83 | + > .md-icon:first-child { |
| 84 | + margin-right: 32px; |
| 85 | + } |
| 86 | +
|
| 87 | + .md-list-action { |
| 88 | + margin: 0 -10px 0 0; |
| 89 | +
|
| 90 | + &:last-of-type { |
| 91 | + margin: 0 -10px 0 16px; |
| 92 | + } |
| 93 | + } |
| 94 | + } |
| 95 | +
|
| 96 | + .md-list-item-text { |
| 97 | + flex: 1; |
| 98 | + } |
| 99 | +</style> |
0 commit comments