360 lines
11 KiB
Vue
360 lines
11 KiB
Vue
<template>
|
|
<Teleport to="#event .windowContent" defer>
|
|
<div class="sectionTitle" v-show="eventPannel">
|
|
<p>{{newEventText}}        → </p>
|
|
<button type="button" class="toggleBtn" ref="newEventBtn" @click="toggleNewEvent">
|
|
<svg class="icon" viewBox="0 0 53.73 53.59">
|
|
<path d="M26.87,40.16l-13.43,13.43L0,40.16l13.43-13.43L.29,13.43,13.72,0l13.15,13.29L40.01.14l13.43,13.43-13,13.15,13.29,13.29-13.43,13.43-13.43-13.29Z"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
<div class="editor" v-show="newEvent">
|
|
<div class="inputDiv" id="title">
|
|
<p>  Titre     →</p>
|
|
<input type="text" name="eventTitle" v-model="title">
|
|
</div>
|
|
<div class="inputDiv" id="date">
|
|
<p>  Date     →</p>
|
|
<input type="text" name="eventDate" v-model="date">
|
|
</div>
|
|
<div class="inputDiv" id="time">
|
|
<p>  Heure     →</p>
|
|
<input type="text" name="eventTime" v-model="time">
|
|
</div>
|
|
<div class="inputDiv" id="subtitle">
|
|
<p>  Sous-titre   →</p>
|
|
<input type="text" name="eventSub" v-model="sub">
|
|
</div>
|
|
<div class="inputDiv" id="desc">
|
|
<p> ↙ Description    </p>
|
|
<textarea name="eventDesc" rows="8" cols="80" v-model="desc"></textarea>
|
|
</div>
|
|
<button type="button" name="saveChanges" class="textBtnStyle" @click="saveEvent" :class="{alert: eventAlertActive}">SAUVEGARDER !</button>
|
|
</div>
|
|
<div class="sectionTitle" v-show="eventPannel">
|
|
<p>Éditer les évènements       → </p>
|
|
<button type="button" class="toggleBtn" ref="oldEventBtn" @click="toggleOldEvent">
|
|
<svg class="icon" viewBox="0 0 53.73 53.59">
|
|
<path d="M26.87,40.16l-13.43,13.43L0,40.16l13.43-13.43L.29,13.43,13.72,0l13.15,13.29L40.01.14l13.43,13.43-13,13.15,13.29,13.29-13.43,13.43-13.43-13.29Z"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
<div class="content" v-show="oldEvent">
|
|
<div class="eventEntry" v-for="item of displayedEvents" ref="item.title">
|
|
<p>{{item.title}}</p>
|
|
<div class="controls">
|
|
<button type="button" name="edit" class="toggleBtn" id="edit" @click='editEvent(item)'>
|
|
<svg class="icon" viewBox="0 0 40.19 38.9">
|
|
<path d="M8.61,30.26c-.64-.64-.96-1.41-.96-2.31s.32-1.63.96-2.26,1.41-.94,2.31-.94,1.67.31,2.31.94c.64.63.96,1.38.96,2.26s-.32,1.67-.96,2.31-1.41.96-2.31.96-1.67-.32-2.31-.96ZM17.78,30.26c-.64-.64-.96-1.41-.96-2.31s.32-1.63.96-2.26c.64-.63,1.41-.94,2.31-.94s1.67.31,2.31.94c.64.63.96,1.38.96,2.26s-.32,1.67-.96,2.31c-.64.64-1.41.96-2.31.96s-1.67-.32-2.31-.96ZM26.96,30.26c-.64-.64-.96-1.41-.96-2.31s.32-1.63.96-2.26c.64-.63,1.41-.94,2.31-.94s1.67.31,2.31.94c.64.63.96,1.38.96,2.26s-.32,1.67-.96,2.31-1.41.96-2.31.96-1.67-.32-2.31-.96Z"/>
|
|
<path d="M34.91,7.2l-1.92-1.92L27.71,0H0v38.9h40.19V12.48l-5.28-5.28ZM32.3,33.62H5.28V5.28h2.61s17.64,0,17.64,0v9.84h9.38v18.5h-2.61Z"/>
|
|
</svg>
|
|
</button>
|
|
<button type="button" name="remove" class="toggleBtn" id="remove" @click='removeEvent(item)'>
|
|
<svg class="icon" viewBox="0 0 53.73 53.59">
|
|
<path d="M26.87,40.16l-13.43,13.43L0,40.16l13.43-13.43L.29,13.43,13.72,0l13.15,13.29L40.01.14l13.43,13.43-13,13.15,13.29,13.29-13.43,13.43-13.43-13.29Z"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
#event .windowContent{
|
|
.sectionTitle{
|
|
width: 100%;
|
|
height: 44px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-style: solid;
|
|
border-color: var(--main-color);
|
|
border-radius: 0;
|
|
border-width: 0 0 1.61px 0;
|
|
padding-right: 33px;
|
|
padding-left: 33px;
|
|
box-sizing: border-box;
|
|
|
|
|
|
p{
|
|
font-family: 'velvelyne';
|
|
font-weight: bold;
|
|
font-size: 16.1px;
|
|
color: var(--main-color);
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.editor{
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 13.12px;
|
|
overflow-y: scroll;
|
|
padding-top: 7.77px;
|
|
padding-right: 7.77px;
|
|
border-style: solid;
|
|
border-color: var(--main-color);
|
|
border-radius: 0;
|
|
border-width: 0 0 1.61px 0;
|
|
box-sizing: border-box;
|
|
|
|
.textBtnStyle{
|
|
margin-bottom: 16.1px;
|
|
margin-right: 16.1px;
|
|
min-height: 33px;
|
|
}
|
|
|
|
.textBtnStyle.alert{
|
|
color: var(--back-color);
|
|
background-color: var(--main-color);
|
|
}
|
|
.inputDiv{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: var(--main-color);
|
|
width: 95%;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 44px;
|
|
|
|
input{
|
|
width: 60%;
|
|
background-color: var(--back-color);
|
|
height: 33px;
|
|
padding-left: 16.1px;
|
|
border-style: solid;
|
|
border-color: var(--main-color);
|
|
border-radius: 22px;
|
|
border-width: thin;
|
|
}
|
|
|
|
p{
|
|
font-family: 'velvelyne';
|
|
font-weight: normal;
|
|
font-size: 16.1px;
|
|
color: var(--main-color);
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
#desc.inputDiv{
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
height: 161px;
|
|
margin-bottom: 7.77px;
|
|
|
|
textarea{
|
|
width: 92%;
|
|
align-self: center;
|
|
background-color: var(--back-color);
|
|
height: 77px;
|
|
padding-left: 16.1px;
|
|
padding-right: 16.1px;
|
|
padding-top: 7.77px;
|
|
border-style: solid;
|
|
border-color: var(--main-color);
|
|
border-radius: 22px;
|
|
border-width: thin;
|
|
resize: none;
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.content{
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
background-color: var(--main-color);
|
|
overflow-y: scroll;
|
|
|
|
.eventEntry{
|
|
width: 100%;
|
|
height: 44px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
border-style: solid;
|
|
border-color: var(--back-color);
|
|
border-radius: 0;
|
|
border-width: 0 0 1.61px 0;
|
|
padding-left: 16.1px;
|
|
padding-right: 16.1px;
|
|
|
|
p{
|
|
font-family: 'velvelyne';
|
|
font-weight: bold;
|
|
font-size: 16.1px;
|
|
color: var(--back-color);
|
|
margin: 0;
|
|
}
|
|
|
|
.controls{
|
|
width: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: 7.77px;
|
|
|
|
.toggleBtn{
|
|
transform: rotate(0);
|
|
cursor: cell;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import { lolLinkList } from '/src/lolLinks.js'
|
|
import { lolEventsList } from '/src/lolEvents.js'
|
|
import { loadAudioData } from '/src/data/audioData.js'
|
|
|
|
import { pannelStatusList } from '../pannelStatus.js'
|
|
|
|
import { watch } from 'vue'
|
|
|
|
export default {
|
|
name : 'EventEditor',
|
|
data() {
|
|
return {
|
|
newEventText: 'Nouvel Évènement',
|
|
eventAlertActive: false,
|
|
hideTimer: null,
|
|
submitEventText: 'SAUVEGARDER',
|
|
newEvent: false,
|
|
oldEvent: false,
|
|
title: '',
|
|
date: '',
|
|
time: '',
|
|
sub: '',
|
|
desc: '',
|
|
eventDefault: {
|
|
title: 'Exemple de Titre',
|
|
date: '13/12/26',
|
|
time: '13h12',
|
|
sub: 'exemple de sous-titre',
|
|
desc: 'exemple de description \nsur plusieurs lignes'
|
|
},
|
|
editingEvent: null
|
|
}
|
|
},
|
|
computed: {
|
|
displayedEvents(){
|
|
return lolEventsList
|
|
},
|
|
eventPannel(){
|
|
return pannelStatusList.event;
|
|
}
|
|
},
|
|
methods: {
|
|
toggleNewEvent(){
|
|
this.newEvent = !this.newEvent;
|
|
if (this.newEvent){
|
|
this.oldEvent = false;
|
|
if(!this.editingEvent){
|
|
this.backToDefaultEvent();
|
|
}
|
|
}
|
|
this.$refs.newEventBtn.style.transform = this.newEvent ? 'rotate(0)' : 'rotate(45deg)';
|
|
this.$refs.oldEventBtn.style.transform = this.oldEvent ? 'rotate(0)' : 'rotate(45deg)';
|
|
},
|
|
toggleOldEvent(){
|
|
this.oldEvent = !this.oldEvent;
|
|
if (this.oldEvent){
|
|
this.newEvent = false;
|
|
}
|
|
this.$refs.newEventBtn.style.transform = this.newEvent ? 'rotate(0)' : 'rotate(45deg)';
|
|
this.$refs.oldEventBtn.style.transform = this.oldEvent ? 'rotate(0)' : 'rotate(45deg)';
|
|
},
|
|
backToDefaultEvent(){
|
|
this.title = this.eventDefault.title;
|
|
this.date = this.eventDefault.date;
|
|
this.time = this.eventDefault.time;
|
|
this.sub = this.eventDefault.sub;
|
|
this.desc = this.eventDefault.desc;
|
|
this.editingEvent = null;
|
|
this.newEventText = 'Nouvel Évènement';
|
|
},
|
|
createListEntry(){
|
|
let entry = {
|
|
title: this.title,
|
|
date: this.date,
|
|
time: this.time,
|
|
subtitle: this.sub,
|
|
desc: this.desc
|
|
}
|
|
|
|
return entry
|
|
},
|
|
saveEvent(){
|
|
let entry = this.createListEntry();
|
|
if(this.editingEvent){
|
|
Object.assign(this.editingEvent, {
|
|
title: this.title,
|
|
date: this.date,
|
|
time: this.time,
|
|
subtitle: this.sub,
|
|
desc: this.desc
|
|
})
|
|
} else {
|
|
this.displayedEvents.push(entry);
|
|
}
|
|
this.toggleOldEvent();
|
|
this.backToDefaultEvent();
|
|
},
|
|
removeEvent(obj){
|
|
let index = this.displayedEvents.indexOf(obj);
|
|
this.displayedEvents.splice(index, 1);
|
|
},
|
|
editEvent(obj){
|
|
console.log('selected :', obj)
|
|
this.editingEvent = obj;
|
|
|
|
this.title = obj.title;
|
|
this.date = obj.date;
|
|
this.time = obj.time;
|
|
this.sub = obj.subtitle;
|
|
this.desc = obj.desc;
|
|
this.newEventText = 'Éditer l\'évènement'
|
|
this.toggleNewEvent();
|
|
},
|
|
async eventSaveMsg(){
|
|
this.eventAlertActive = true;
|
|
this.submitEventText = "Enregistré !";
|
|
clearTimeout(this.hideTimer)
|
|
|
|
this.hideTimer = setTimeout(() => {
|
|
this.eventAlertActive = false;
|
|
this.submitEventText = 'SAUVEGARDER';
|
|
}, 1610)
|
|
}
|
|
},
|
|
mounted(){
|
|
watch( () => this.eventPannel, () => {
|
|
if(!this.eventPannel){
|
|
this.oldEvent = false;
|
|
this.newEvent = false;
|
|
}
|
|
})
|
|
console.log("Event editor is fully loaded!");
|
|
}
|
|
};
|
|
</script>
|