126 lines
2.7 KiB
Vue
126 lines
2.7 KiB
Vue
<script setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import { SetupHandle, SetSize, ResetPosition, Top, CreateChildWindow, GetFirstWindowId } from '@/services/Windows';
|
|
|
|
import WindowHandle from './partials/WindowHandle.vue';
|
|
import VersionRender from '../partials/VersionRender.vue';
|
|
import EditUserPartial from '../partials/EditUserPartial.vue';
|
|
import CampaignEntry from '../partials/CampaignEntry.vue';
|
|
import Server from '~/services/Server';
|
|
|
|
const handle = ref(null);
|
|
const wrapper = ref(null);
|
|
|
|
const props = defineProps(['data']);
|
|
const data = props.data;
|
|
|
|
const campaings = ref([]);
|
|
|
|
let id = data.id;
|
|
|
|
function CreateCampaignWindow(){
|
|
CreateChildWindow(GetFirstWindowId('main_menu'), 'create_campaign');
|
|
}
|
|
|
|
function RefreshCampaigns(){
|
|
Server().get('/campaign/list').then((response) => {
|
|
console.log(response.data);
|
|
response.data.forEach((camp) => {
|
|
campaings.value.push(camp.campaign);
|
|
});
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
Top(wrapper);
|
|
SetupHandle(id, handle);
|
|
SetSize(id, {width: 580, height: 760});
|
|
ResetPosition(id, "center");
|
|
|
|
RefreshCampaigns();
|
|
});
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="window-wrapper" :id="'window-wrapper-' + id" ref="wrapper">
|
|
<WindowHandle :window="id" ref="handle"></WindowHandle>
|
|
|
|
<EditUserPartial></EditUserPartial>
|
|
<!-- Body -->
|
|
<div class="vert-expand">
|
|
<div class="vert top">
|
|
<h1>{{ $t("main-menu.main-menu")}}</h1>
|
|
|
|
<!-- HERE -->
|
|
<div class="campaign-list">
|
|
<CampaignEntry v-for="camp in myCampaigns" :key="camp._id" :data="camp"></CampaignEntry>
|
|
</div>
|
|
</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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped>
|
|
h1 {
|
|
margin-top: 20px;
|
|
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%;
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 20px;
|
|
|
|
flex-direction: column;
|
|
}
|
|
|
|
p {
|
|
user-select: none;
|
|
}
|
|
|
|
.window-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
user-select: none;
|
|
}
|
|
|
|
.splash-image {
|
|
width: 600px;
|
|
height: 250px;
|
|
user-select: none;
|
|
}
|
|
</style>
|
|
|
|
|