mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-09-09 14:40:32 +00:00
98 lines
2.2 KiB
Vue
98 lines
2.2 KiB
Vue
<template>
|
|
<FloatingMenu class="dialog-modal" :type="'Dialog'" :direction="'Center'" data-dialog-modal>
|
|
<LayoutRow>
|
|
<LayoutCol class="icon-column">
|
|
<!-- `dialog.state.icon` class exists to provide special sizing in CSS to specific icons -->
|
|
<IconLabel :icon="dialog.state.icon" :class="dialog.state.icon.toLowerCase()" />
|
|
</LayoutCol>
|
|
<LayoutCol class="main-column">
|
|
<TextLabel :bold="true" class="heading">{{ dialog.state.heading }}</TextLabel>
|
|
<TextLabel class="details">{{ dialog.state.details }}</TextLabel>
|
|
<LayoutRow class="buttons-row" v-if="dialog.state.buttons.length > 0">
|
|
<TextButton v-for="(button, index) in dialog.state.buttons" :key="index" :title="button.tooltip" :action="() => button.callback && button.callback()" v-bind="button.props" />
|
|
</LayoutRow>
|
|
</LayoutCol>
|
|
</LayoutRow>
|
|
</FloatingMenu>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.dialog-modal {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.floating-menu-container .floating-menu-content {
|
|
pointer-events: auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
.icon-column {
|
|
margin-right: 24px;
|
|
|
|
.icon-label {
|
|
width: 80px;
|
|
height: 80px;
|
|
|
|
&.file,
|
|
&.copy {
|
|
width: 60px;
|
|
|
|
svg {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin: 0 -10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-column {
|
|
.heading {
|
|
user-select: text;
|
|
white-space: pre-wrap;
|
|
max-width: 400px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.details {
|
|
user-select: text;
|
|
white-space: pre-wrap;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.buttons-row {
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
import LayoutCol from "@/components/layout/LayoutCol.vue";
|
|
import LayoutRow from "@/components/layout/LayoutRow.vue";
|
|
import TextButton from "@/components/widgets/buttons/TextButton.vue";
|
|
import FloatingMenu from "@/components/widgets/floating-menus/FloatingMenu.vue";
|
|
import IconLabel from "@/components/widgets/labels/IconLabel.vue";
|
|
import TextLabel from "@/components/widgets/labels/TextLabel.vue";
|
|
|
|
export default defineComponent({
|
|
inject: ["dialog"],
|
|
components: {
|
|
LayoutRow,
|
|
LayoutCol,
|
|
FloatingMenu,
|
|
IconLabel,
|
|
TextLabel,
|
|
TextButton,
|
|
},
|
|
methods: {
|
|
dismiss() {
|
|
this.dialog.dismissDialog();
|
|
},
|
|
},
|
|
});
|
|
</script>
|