Good
This commit is contained in:
@@ -4,13 +4,9 @@ import { windows, getComponent } from '@/services/Windows';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="window-container">
|
||||
<TransitionGroup name="window" tag="div">
|
||||
<div v-for="win in windows" :key="win.id">
|
||||
<component :is="getComponent(win.type)" :data="win" />
|
||||
</div>
|
||||
</TransitionGroup>
|
||||
</div>
|
||||
<TransitionGroup name="window" tag="div">
|
||||
<component v-for="win in windows" :key="win.id" :is="getComponent(win.type)" :data="win" />
|
||||
</TransitionGroup>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -21,16 +17,18 @@ import { windows, getComponent } from '@/services/Windows';
|
||||
}
|
||||
.window-enter-from,
|
||||
.window-leave-to {
|
||||
transition: all 0.15s ease;
|
||||
opacity: 0;
|
||||
transform: translateY(15px);
|
||||
}
|
||||
.window-move {
|
||||
transition: transform 0.15s ease;
|
||||
}
|
||||
|
||||
.window-wrapper {
|
||||
background-color: var(--color-window-background);
|
||||
|
||||
/* backdrop-filter: blur(10px); */
|
||||
position: fixed;
|
||||
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
42
frontend/app/components/windows/CreateCampaignWindow.vue
Normal file
42
frontend/app/components/windows/CreateCampaignWindow.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { onMounted, ref } from 'vue';
|
||||
import { SetupHandle, SetSize, ResetPosition, Top } from '@/services/Windows';
|
||||
|
||||
import WindowHandle from './partials/WindowHandle.vue';
|
||||
|
||||
const handle = ref(null);
|
||||
const wrapper = ref(null);
|
||||
|
||||
const props = defineProps(['data']);
|
||||
const data = props.data;
|
||||
|
||||
let id = data.id;
|
||||
|
||||
onMounted(() => {
|
||||
Top(wrapper);
|
||||
SetupHandle(id, handle);
|
||||
SetSize(id, {width: 500, height: 380});
|
||||
ResetPosition(id, "center");
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<div class="window-wrapper" :id="'window-wrapper-' + id" ref="wrapper">
|
||||
<WindowHandle :window="id" ref="handle"></WindowHandle>
|
||||
|
||||
<!-- Body -->
|
||||
<div ref="test"></div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<style scoped>
|
||||
.window-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script setup>
|
||||
import { onMounted, ref } from 'vue';
|
||||
import { SetupHandle, SetSize, ResetPosition, Top } from '@/services/Windows';
|
||||
import { SetupHandle, SetSize, ResetPosition, Top, CreateChildWindow, GetFirstWindowId } from '@/services/Windows';
|
||||
|
||||
import WindowHandle from './partials/WindowHandle.vue';
|
||||
import VersionRender from '../partials/VersionRender.vue';
|
||||
@@ -14,6 +14,11 @@ const data = props.data;
|
||||
|
||||
let id = data.id;
|
||||
|
||||
function CreateCampaignWindow(){
|
||||
CreateChildWindow(GetFirstWindowId('main_menu'), 'create_campaign', {
|
||||
});
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
Top(wrapper);
|
||||
SetupHandle(id, handle);
|
||||
@@ -29,12 +34,18 @@ onMounted(() => {
|
||||
|
||||
<EditUserPartial></EditUserPartial>
|
||||
<!-- Body -->
|
||||
<h1>{{ $t("main-menu.main-menu")}}</h1>
|
||||
|
||||
<div class="button-container">
|
||||
<button class="btn-primary button-expand sound-click" v-on:click="OpenCampaigns" ref="campaignButton">{{ $t("main-menu.campaigns") }}</button>
|
||||
<div class="vert-expand">
|
||||
<div class="vert top">
|
||||
<h1>{{ $t("main-menu.main-menu")}}</h1>
|
||||
</div>
|
||||
|
||||
<div class="vert bot">
|
||||
<div class="button-container">
|
||||
<button class="btn-primary button-expand sound-click" v-on:click="CreateCampaignWindow" ref="campaignButton">{{ $t("main-menu.create-campaign") }}</button>
|
||||
</div>
|
||||
<VersionRender></VersionRender>
|
||||
</div>
|
||||
</div>
|
||||
<VersionRender></VersionRender>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -45,6 +56,25 @@ h1 {
|
||||
font-family: MrEavesRemake;
|
||||
}
|
||||
|
||||
.expand {
|
||||
width: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
> * {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.vert-expand {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
.button-expand {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@@ -21,6 +21,7 @@ const defWindows = {
|
||||
main_menu: {
|
||||
title: 'windows.main-menu',
|
||||
component: () => import('~/components/windows/MainMenuWindow.vue'),
|
||||
movable: true
|
||||
},
|
||||
edit_profile: {
|
||||
title: "windows.edit-profile",
|
||||
@@ -33,6 +34,12 @@ const defWindows = {
|
||||
component: () => import('~/components/windows/SettingsWindow.vue'),
|
||||
close: () => ClearWindow({type: 'settings'}),
|
||||
movable: true
|
||||
},
|
||||
create_campaign: {
|
||||
title: "windows.create-campaign",
|
||||
component: () => import('~/components/windows/CreateCampaignWindow.vue'),
|
||||
close: () => ClearWindow({type: 'create_campaign'}),
|
||||
movable: true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user