2022-05-23 08:56:15 -07:00
|
|
|
<template>
|
2022-09-22 08:41:15 -07:00
|
|
|
<Draggable type="panel-resize" @drag="onDrag" @dragstart="onDragStart" @dragend="onDragEnd" :class="$style.dragContainer">
|
2022-05-23 08:56:15 -07:00
|
|
|
<template v-slot="{ isDragging }">
|
|
|
|
<div
|
|
|
|
:class="{ [$style.dragButton]: true }"
|
|
|
|
>
|
|
|
|
<span v-if="canMoveLeft" :class="{ [$style.leftArrow]: true, [$style.visible]: isDragging }">
|
|
|
|
<font-awesome-icon icon="arrow-left" />
|
|
|
|
</span>
|
|
|
|
<span v-if="canMoveRight" :class="{ [$style.rightArrow]: true, [$style.visible]: isDragging }">
|
|
|
|
<font-awesome-icon icon="arrow-right" />
|
|
|
|
</span>
|
|
|
|
<div :class="$style.grid">
|
|
|
|
<div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</Draggable>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
import Draggable from './Draggable.vue';
|
|
|
|
import dragging from './Draggable.vue';
|
|
|
|
|
|
|
|
export default mixins(dragging).extend({
|
|
|
|
components: {
|
|
|
|
Draggable,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
canMoveRight: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
canMoveLeft: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onDrag(e: {x: number, y: number}) {
|
|
|
|
this.$emit('drag', e);
|
|
|
|
},
|
|
|
|
onDragStart() {
|
|
|
|
this.$emit('dragstart');
|
|
|
|
},
|
|
|
|
onDragEnd() {
|
|
|
|
this.$emit('dragend');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
2022-09-22 08:41:15 -07:00
|
|
|
.dragContainer {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
2022-05-23 08:56:15 -07:00
|
|
|
.dragButton {
|
|
|
|
background-color: var(--color-background-base);
|
|
|
|
width: 64px;
|
|
|
|
height: 21px;
|
|
|
|
border-top-left-radius: var(--border-radius-base);
|
|
|
|
border-top-right-radius: var(--border-radius-base);
|
|
|
|
cursor: grab;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: visible;
|
2022-09-22 08:41:15 -07:00
|
|
|
position: relative;
|
|
|
|
z-index: 3;
|
2022-05-23 08:56:15 -07:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.leftArrow, .rightArrow {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.visible {
|
|
|
|
visibility: visible !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow {
|
|
|
|
position: absolute;
|
|
|
|
color: var(--color-background-xlight);
|
|
|
|
font-size: var(--font-size-3xs);
|
|
|
|
visibility: hidden;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leftArrow {
|
|
|
|
composes: arrow;
|
|
|
|
left: -16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rightArrow {
|
|
|
|
composes: arrow;
|
|
|
|
right: -16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid {
|
|
|
|
> div {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
> div {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
height: 2px;
|
|
|
|
width: 2px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: var(--color-foreground-xdark);
|
|
|
|
margin-right: 4px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|