113 lines
2.2 KiB
Vue
113 lines
2.2 KiB
Vue
|
<script>
|
||
|
import BaseComponent from 'primevue/basecomponent';
|
||
|
import { useStyle } from 'primevue/usestyle';
|
||
|
|
||
|
const styles = `
|
||
|
.p-steps {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.p-steps .p-steps-list {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
list-style-type: none;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.p-steps-item {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
flex: 1 1 auto;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.p-steps-item .p-menuitem-link {
|
||
|
display: inline-flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
overflow: hidden;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.p-steps.p-steps-readonly .p-steps-item {
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
|
.p-steps-item.p-steps-current .p-menuitem-link {
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
.p-steps-title {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
.p-steps-number {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.p-steps-title {
|
||
|
display: block;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const classes = {
|
||
|
root: ({ instance }) => ['p-steps p-component', { 'p-readonly': instance.readonly }],
|
||
|
menu: 'p-steps-list',
|
||
|
menuitem: ({ instance, item }) => [
|
||
|
'p-steps-item',
|
||
|
{
|
||
|
'p-highlight p-steps-current': instance.isActive(item),
|
||
|
'p-disabled': instance.isItemDisabled(item)
|
||
|
}
|
||
|
],
|
||
|
action: ({ props, isActive, isExactActive }) => [
|
||
|
'p-menuitem-link',
|
||
|
{
|
||
|
'router-link-active': isActive,
|
||
|
'router-link-active-exact': props.exact && isExactActive
|
||
|
}
|
||
|
],
|
||
|
step: 'p-steps-number',
|
||
|
label: 'p-steps-title'
|
||
|
};
|
||
|
|
||
|
const { load: loadStyle } = useStyle(styles, { id: 'primevue_steps_style', manual: true });
|
||
|
|
||
|
export default {
|
||
|
name: 'BaseSteps',
|
||
|
extends: BaseComponent,
|
||
|
props: {
|
||
|
id: {
|
||
|
type: String
|
||
|
},
|
||
|
model: {
|
||
|
type: Array,
|
||
|
default: null
|
||
|
},
|
||
|
readonly: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
exact: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
}
|
||
|
},
|
||
|
css: {
|
||
|
classes,
|
||
|
loadStyle
|
||
|
},
|
||
|
provide() {
|
||
|
return {
|
||
|
$parentInstance: this
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|