tunnel: interface pour page admin sans backend + problème de gestion de la playlist (importé dans 2 script, l'un demande un focntion, l'autre une array et on est là hum...)
This commit is contained in:
@@ -0,0 +1,26 @@
|
|||||||
|
<template>
|
||||||
|
<eventEditor></eventEditor>
|
||||||
|
<linkEditor></linkEditor>
|
||||||
|
<playlistEditor></playlistEditor>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name : 'Admin',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
console.log("Admin app is fully loaded!");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,359 @@
|
|||||||
|
<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>
|
||||||
@@ -0,0 +1,363 @@
|
|||||||
|
<template>
|
||||||
|
<Teleport to="#link .windowContent" defer>
|
||||||
|
<div class="sectionTitle" v-show="linkPannel">
|
||||||
|
<p>{{newLinkText}}        → </p>
|
||||||
|
<button type="button" class="toggleBtn" ref="newLinkBtn" @click="toggleNewLink">
|
||||||
|
<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="newLink">
|
||||||
|
<div class="inputDiv" id="title">
|
||||||
|
<p>  Titre     →</p>
|
||||||
|
<input type="text" name="linkTitle" v-model="title">
|
||||||
|
</div>
|
||||||
|
<div class="inputDiv" id="desc">
|
||||||
|
<p> ↙ Description    </p>
|
||||||
|
<textarea name="linkDesc" rows="8" cols="80" v-model="desc"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="inputDiv" id="href">
|
||||||
|
<p> ↙ Lien    </p>
|
||||||
|
<textarea name="linkDesc" rows="8" cols="80" v-model="href"></textarea>
|
||||||
|
</div>
|
||||||
|
<button type="button" name="saveChanges" class="textBtnStyle" @click="saveLink" :class="{alert: linkAlertActive}">SAUVEGARDER !</button>
|
||||||
|
</div>
|
||||||
|
<div class="sectionTitle" v-show="linkPannel">
|
||||||
|
<p>Éditer les liens       → </p>
|
||||||
|
<button type="button" class="toggleBtn" ref="oldLinkBtn" @click="toggleOldLink">
|
||||||
|
<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="oldLink">
|
||||||
|
<div class="linkEntry" v-for="item of displayedLinks" ref="item.title">
|
||||||
|
<p>{{item.title}}</p>
|
||||||
|
<div class="controls">
|
||||||
|
<button type="button" name="edit" class="toggleBtn" id="edit" @click='editLink(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='removeLink(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>
|
||||||
|
#link .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;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#href.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;
|
||||||
|
|
||||||
|
.linkEntry{
|
||||||
|
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 { pannelStatusList } from '../pannelStatus.js'
|
||||||
|
|
||||||
|
import { watch } from 'vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name : 'LinkEditor',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
newLinkText: 'Nouveau Lien',
|
||||||
|
linkAlertActive: false,
|
||||||
|
hideTimer: null,
|
||||||
|
submitLinkText: 'SAUVEGARDER',
|
||||||
|
newLink: false,
|
||||||
|
oldLink: false,
|
||||||
|
title: '',
|
||||||
|
href: '',
|
||||||
|
desc: '',
|
||||||
|
linkDefault: {
|
||||||
|
title: 'Exemple de Titre',
|
||||||
|
href: 'https://example.com/',
|
||||||
|
desc: 'exemple de description'
|
||||||
|
},
|
||||||
|
editingLink: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
displayedLinks(){
|
||||||
|
return lolLinkList
|
||||||
|
},
|
||||||
|
linkPannel(){
|
||||||
|
return pannelStatusList.link;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
toggleNewLink(){
|
||||||
|
this.newLink = !this.newLink;
|
||||||
|
if (this.newLink){
|
||||||
|
this.oldLink = false;
|
||||||
|
if(!this.editingLink){
|
||||||
|
this.backToDefaultLink();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.$refs.newLinkBtn.style.transform = this.newLink ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
this.$refs.oldLinkBtn.style.transform = this.oldLink ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
},
|
||||||
|
toggleOldLink(){
|
||||||
|
this.oldLink = !this.oldLink;
|
||||||
|
if (this.oldLink){
|
||||||
|
this.newLink = false;
|
||||||
|
}
|
||||||
|
this.$refs.newLinkBtn.style.transform = this.newLink ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
this.$refs.oldLinkBtn.style.transform = this.oldLink ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
},
|
||||||
|
backToDefaultLink(){
|
||||||
|
this.title = this.linkDefault.title;
|
||||||
|
this.href = this.linkDefault.href;
|
||||||
|
this.desc = this.linkDefault.desc;
|
||||||
|
this.editingLink = null;
|
||||||
|
this.newLinkText = 'Nouveau Lien';
|
||||||
|
},
|
||||||
|
createListEntry(){
|
||||||
|
let entry = {
|
||||||
|
title: this.title,
|
||||||
|
href: this.href,
|
||||||
|
desc: this.desc
|
||||||
|
}
|
||||||
|
|
||||||
|
return entry
|
||||||
|
},
|
||||||
|
saveLink(){
|
||||||
|
let entry = this.createListEntry();
|
||||||
|
if(this.editingLink){
|
||||||
|
Object.assign(this.editingLink, {
|
||||||
|
title: this.title,
|
||||||
|
href: this.href,
|
||||||
|
desc: this.desc
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.displayedLinks.push(entry);
|
||||||
|
}
|
||||||
|
this.toggleOldLink();
|
||||||
|
this.backToDefaultLink();
|
||||||
|
},
|
||||||
|
removeLink(obj){
|
||||||
|
let index = this.displayedLinks.indexOf(obj);
|
||||||
|
this.displayedLinks.splice(index, 1);
|
||||||
|
},
|
||||||
|
editLink(obj){
|
||||||
|
console.log('selected :', obj)
|
||||||
|
this.editingLink = obj;
|
||||||
|
|
||||||
|
this.title = obj.title;
|
||||||
|
this.href = obj.href
|
||||||
|
this.desc = obj.desc;
|
||||||
|
this.newLinkText = 'Éditer le lien'
|
||||||
|
this.toggleNewLink();
|
||||||
|
},
|
||||||
|
async linkSaveMsg(){
|
||||||
|
this.linkAlertActive = true;
|
||||||
|
this.submitLinkText = "Enregistré !";
|
||||||
|
clearTimeout(this.hideTimer)
|
||||||
|
|
||||||
|
this.hideTimer = setTimeout(() => {
|
||||||
|
this.eventAlertActive = false;
|
||||||
|
this.submitLinkText = 'SAUVEGARDER';
|
||||||
|
}, 1610)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
watch( () => this.linkPannel, () => {
|
||||||
|
if(!this.linkPannel){
|
||||||
|
this.oldLink = false;
|
||||||
|
this.newLink = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
console.log("Link editor is fully loaded!");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,352 @@
|
|||||||
|
<template>
|
||||||
|
<Teleport to="#playlist .windowContent" defer>
|
||||||
|
<div class="sectionTitle" v-show="playlistPannel">
|
||||||
|
<p>{{newSongText}}           → </p>
|
||||||
|
<button type="button" class="toggleBtn" ref="newSongBtn" @click="toggleNewPlaylist">
|
||||||
|
<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="newSong">
|
||||||
|
<div class="inputDiv" id="track">
|
||||||
|
<p>  Titre      →</p>
|
||||||
|
<input type="text" name="songTitle" v-model="track">
|
||||||
|
</div>
|
||||||
|
<div class="inputDiv" id="artist">
|
||||||
|
<p>  Artiste     →</p>
|
||||||
|
<input type="text" name="songArtist" v-model="artist">
|
||||||
|
</div>
|
||||||
|
<div class="inputDiv" id="src">
|
||||||
|
<p>  Fichier MP3   →</p>
|
||||||
|
<input type="file" name="songFile" ref="audioFile" @change="loadFile">
|
||||||
|
</div>
|
||||||
|
<button type="button" name="saveChanges" class="textBtnStyle" @click="savePlaylist" :class="{alert: playlistAlertActive}">SAUVEGARDER !</button>
|
||||||
|
</div>
|
||||||
|
<div class="sectionTitle" v-show="playlistPannel">
|
||||||
|
<p>Modifier la playlist       → </p>
|
||||||
|
<button type="button" class="toggleBtn" ref="currentPlaylistBtn" @click="toggleCurrentPlaylist">
|
||||||
|
<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="currentPlaylist">
|
||||||
|
<div class="playlistEntry" v-for="item of displayedPlaylists" ref="item.track">
|
||||||
|
<p>{{item.track}} — {{item.artist}}</p>
|
||||||
|
<div class="controls">
|
||||||
|
<button type="button" name="edit" class="toggleBtn" id="edit" @click='editPlaylist(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='removePlaylist(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>
|
||||||
|
#playlist .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: 22px;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#src.inputDiv{
|
||||||
|
|
||||||
|
input[type=file]::file-selector-button{
|
||||||
|
font-family: 'karrik';
|
||||||
|
font-size: 10px;
|
||||||
|
background-color: var(--back-color);
|
||||||
|
color: var(--main-color);
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 0;
|
||||||
|
border-width: 0 1.61px 0 0;
|
||||||
|
height: 100%;
|
||||||
|
padding-left: 16.1px;
|
||||||
|
padding-right: 7.77px;
|
||||||
|
margin-left: -22px;
|
||||||
|
margin-right: 7.77px;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=file]::file-selector-button:hover{
|
||||||
|
font-family: 'karrik';
|
||||||
|
font-size: 13.12px;
|
||||||
|
background-color: var(--main-color);
|
||||||
|
color: var(--back-color);
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 0;
|
||||||
|
border-width: 0 1.61px 0 0;
|
||||||
|
height: 100%;
|
||||||
|
padding-left: 16.1px;
|
||||||
|
padding-right: 7.77px;
|
||||||
|
margin-left: -22px;
|
||||||
|
margin-right: 7.77px;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.content{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: var(--main-color);
|
||||||
|
overflow-y: scroll;
|
||||||
|
|
||||||
|
.playlistEntry{
|
||||||
|
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 { loadAudioData } from '/src/data/audioData.js'
|
||||||
|
import { watch } from 'vue'
|
||||||
|
|
||||||
|
import { pannelStatusList } from '../pannelStatus.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name : 'PlaylistEditor',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
newSongText: 'Nouveau Son',
|
||||||
|
playlistAlertActive: false,
|
||||||
|
hideTimer: null,
|
||||||
|
submitPlaylistText: 'SAUVEGARDER',
|
||||||
|
newSong: false,
|
||||||
|
currentPlaylist: false,
|
||||||
|
track: '',
|
||||||
|
artist: '',
|
||||||
|
src: null,
|
||||||
|
playlistDefault: {
|
||||||
|
track: 'exemple',
|
||||||
|
artist: 'exemple',
|
||||||
|
src: null
|
||||||
|
},
|
||||||
|
editingSong: null,
|
||||||
|
fileInput: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
displayedPlaylists(){
|
||||||
|
let list = loadAudioData()
|
||||||
|
return list
|
||||||
|
},
|
||||||
|
playlistPannel(){
|
||||||
|
return pannelStatusList.playlist;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
toggleNewPlaylist(){
|
||||||
|
this.newSong = !this.newSong;
|
||||||
|
if (this.newSong){
|
||||||
|
this.currentPlaylist = false;
|
||||||
|
if(!this.editingSong){
|
||||||
|
this.backToDefaultPlaylist();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.$refs.newSongBtn.style.transform = this.newSong ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
this.$refs.currentPlaylistBtn.style.transform = this.currentPlaylist ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
},
|
||||||
|
toggleCurrentPlaylist(){
|
||||||
|
this.currentPlaylist = !this.currentPlaylist;
|
||||||
|
if (this.currentPlaylist){
|
||||||
|
this.newSong = false;
|
||||||
|
}
|
||||||
|
this.$refs.newSongBtn.style.transform = this.newSong ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
this.$refs.currentPlaylistBtn.style.transform = this.currentPlaylist ? 'rotate(0)' : 'rotate(45deg)';
|
||||||
|
},
|
||||||
|
backToDefaultPlaylist(){
|
||||||
|
this.track = this.playlistDefault.track;
|
||||||
|
this.artist = this.playlistDefault.artist;
|
||||||
|
this.src = this.playlistDefault.src;
|
||||||
|
this.editingSong = null;
|
||||||
|
this.newSongText = 'Nouveau Son';
|
||||||
|
},
|
||||||
|
createListEntry(){
|
||||||
|
let entry = {
|
||||||
|
track: this.track,
|
||||||
|
artist: this.artist,
|
||||||
|
src: this.src
|
||||||
|
}
|
||||||
|
|
||||||
|
return entry
|
||||||
|
},
|
||||||
|
savePlaylist(){
|
||||||
|
let entry = this.createListEntry();
|
||||||
|
if(this.editingSong){
|
||||||
|
Object.assign(this.editingSong, {
|
||||||
|
title: this.title,
|
||||||
|
href: this.href,
|
||||||
|
desc: this.desc
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.displayedPlaylists.push(entry);
|
||||||
|
}
|
||||||
|
this.toggleCurrentPlaylist();
|
||||||
|
this.backToDefaultPlaylist();
|
||||||
|
},
|
||||||
|
removePlaylist(obj){
|
||||||
|
let index = this.displayedPlaylists.indexOf(obj);
|
||||||
|
this.displayedPlaylists.splice(index, 1);
|
||||||
|
},
|
||||||
|
editPlaylist(obj){
|
||||||
|
console.log('selected :', obj)
|
||||||
|
this.editingSong = obj;
|
||||||
|
|
||||||
|
this.track = obj.track;
|
||||||
|
this.artist = obj.artist;
|
||||||
|
this.src = obj.src;
|
||||||
|
this.newSongText = 'Éditer les infos'
|
||||||
|
this.toggleNewPlaylist();
|
||||||
|
},
|
||||||
|
async playlistSaveMsg(){
|
||||||
|
this.playlistAlertActive = true;
|
||||||
|
this.submitPlaylistText = "Enregistré !";
|
||||||
|
clearTimeout(this.hideTimer)
|
||||||
|
|
||||||
|
this.hideTimer = setTimeout(() => {
|
||||||
|
this.eventAlertActive = false;
|
||||||
|
this.submitPlaylistText = 'SAUVEGARDER';
|
||||||
|
}, 1610)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
this.fileInput = this.$refs.audioFile;
|
||||||
|
watch( () => this.playlistPannel, () => {
|
||||||
|
if(!this.playlistPannel){
|
||||||
|
this.newSong = false;
|
||||||
|
this.currentPlaylist = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
console.log("Playlist editor is fully loaded!");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
width="94.468002"
|
||||||
|
height="94.468002"
|
||||||
|
viewBox="0 0 94.468002 94.468003"
|
||||||
|
sodipodi:docname="favicon.svg"
|
||||||
|
inkscape:export-filename="logo.png"
|
||||||
|
inkscape:export-xdpi="130.08"
|
||||||
|
inkscape:export-ydpi="130.08"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1341"
|
||||||
|
inkscape:window-height="927"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.8680853"
|
||||||
|
inkscape:cx="38.824299"
|
||||||
|
inkscape:cy="53.306379"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
inkscape:window-x="56"
|
||||||
|
inkscape:window-y="50"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#ffff4d;stroke-width:5.58135;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4542"
|
||||||
|
width="88.88665"
|
||||||
|
height="88.88665"
|
||||||
|
x="2.7906749"
|
||||||
|
y="2.7906749" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#ffff4d;fill-opacity:1;stroke:none;stroke-width:33.0659;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="circle868"
|
||||||
|
cx="47.234001"
|
||||||
|
cy="47.234001"
|
||||||
|
r="16.613539" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,72 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>LOL : admin</title>
|
||||||
|
<link rel="icon" type="image/svg" href="./favicon.svg" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="./style/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="adminWelcome">
|
||||||
|
<p>
|
||||||
|
<strong>Bienvenue sur la page admin du LOL !</strong><br>
|
||||||
|
Ici tu peux éditer le contenu visible sur le site, dans les sections évènements & liens utiles, et aussi ajouter de la musique dans le player.<br>
|
||||||
|
On précise quand même (au cas où), que <strong>les auteurices des sons qu'on poste doivent avoir donné leur accord explicite avant que ça soit posté !</strong>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div id="adminContainer">
|
||||||
|
<div class="">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="adminSection" id="event">
|
||||||
|
<div class="windowStyle">
|
||||||
|
<div class="windowTitle">
|
||||||
|
<p>
|
||||||
|
Évènements affichés :
|
||||||
|
</p>
|
||||||
|
<button type="button" class="toggleBtn" id="eventBtn">
|
||||||
|
<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="windowContent">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="adminSection" id="other">
|
||||||
|
<div class="windowStyle" id="link">
|
||||||
|
<div class="windowTitle">
|
||||||
|
<p>
|
||||||
|
Panneau liens :
|
||||||
|
</p>
|
||||||
|
<button type="button" class="toggleBtn" id="linkBtn">
|
||||||
|
<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="windowContent">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="windowStyle" id="playlist">
|
||||||
|
<div class="windowTitle">
|
||||||
|
<p>
|
||||||
|
Playlist :
|
||||||
|
</p>
|
||||||
|
<button type="button" class="toggleBtn" id="playlistBtn">
|
||||||
|
<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="windowContent">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="adminContent"></div>
|
||||||
|
<script type="module" src="./main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
import { createApp } from 'vue'
|
||||||
|
// import css
|
||||||
|
import './style.css'
|
||||||
|
// import app racine pour page admin
|
||||||
|
import Admin from './Admin.vue'
|
||||||
|
// import composants
|
||||||
|
import EventEditor from './components/EventEditor.vue'
|
||||||
|
import LinkEditor from './components/LinkEditor.vue'
|
||||||
|
import PlaylistEditor from './components/PlaylistEditor.vue'
|
||||||
|
|
||||||
|
// creation app
|
||||||
|
const app = createApp(Admin);
|
||||||
|
// Composants
|
||||||
|
app.component('eventEditor', EventEditor);
|
||||||
|
app.component('linkEditor', LinkEditor);
|
||||||
|
app.component('playlistEditor', PlaylistEditor)
|
||||||
|
|
||||||
|
// montage dans div#adminContent
|
||||||
|
app.mount('#adminContent');
|
||||||
|
|
||||||
|
//import variables reactive
|
||||||
|
import { pannelStatusList } from './pannelStatus.js'
|
||||||
|
|
||||||
|
document.documentElement.setAttribute('data-theme', 'main');
|
||||||
|
|
||||||
|
let eventBtn = document.querySelector('#eventBtn');
|
||||||
|
let eventTarget = document.querySelector('#event .windowContent');
|
||||||
|
|
||||||
|
let linkBtn = document.querySelector('#linkBtn');
|
||||||
|
let linkTarget = document.querySelector('#link .windowContent');
|
||||||
|
|
||||||
|
let playlistBtn = document.querySelector('#playlistBtn');
|
||||||
|
let playlistTarget = document.querySelector('#playlist .windowContent');
|
||||||
|
|
||||||
|
|
||||||
|
eventBtn.addEventListener('click', () => {
|
||||||
|
pannelStatusList.event = !pannelStatusList.event;
|
||||||
|
eventTarget.style.height = pannelStatusList.event ? '75vh' : 'auto';
|
||||||
|
document.querySelector('#eventBtn .icon').style.transform = pannelStatusList.event ? 'rotate(45deg)' : 'rotate(0)'
|
||||||
|
})
|
||||||
|
|
||||||
|
linkBtn.addEventListener('click', () => {
|
||||||
|
pannelStatusList.link = !pannelStatusList.link;
|
||||||
|
if(pannelStatusList.link){
|
||||||
|
pannelStatusList.playlist = false;
|
||||||
|
playlistTarget.style.height = 'auto';
|
||||||
|
document.querySelector('#playlistBtn .icon').style.transform = 'rotate(45deg)'
|
||||||
|
}
|
||||||
|
linkTarget.style.height = pannelStatusList.link ? '64.5vh' : '0';
|
||||||
|
document.querySelector('#linkBtn .icon').style.transform = pannelStatusList.link ? 'rotate(45deg)' : 'rotate(0)'
|
||||||
|
})
|
||||||
|
|
||||||
|
playlistBtn.addEventListener('click', () => {
|
||||||
|
pannelStatusList.playlist = !pannelStatusList.playlist;
|
||||||
|
if(pannelStatusList.playlist){
|
||||||
|
pannelStatusList.link = false
|
||||||
|
linkTarget.style.height = 'auto';
|
||||||
|
document.querySelector('#linkBtn .icon').style.transform = 'rotate(45deg)'
|
||||||
|
}
|
||||||
|
playlistTarget.style.height = pannelStatusList.playlist ? '64.5vh' : 'auto';
|
||||||
|
document.querySelector('#playlistBtn .icon').style.transform = pannelStatusList.playlist ? 'rotate(45deg)' : 'rotate(0)'
|
||||||
|
})
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import { reactive } from 'vue'
|
||||||
|
|
||||||
|
export const pannelStatusList = reactive({
|
||||||
|
event: false,
|
||||||
|
link: false,
|
||||||
|
playlist: false
|
||||||
|
})
|
||||||
+248
@@ -0,0 +1,248 @@
|
|||||||
|
:root[data-theme="main"]{
|
||||||
|
--back-color: #FFFF4D;
|
||||||
|
--main-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*====================Typo*/
|
||||||
|
@font-face {
|
||||||
|
font-family: 'karrik';
|
||||||
|
src: url('/typo/Karrik-Italic.woff2').format('woff2');
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'karrik';
|
||||||
|
src: url('/typo/Karrik-Regular.woff2') format('woff2');
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'velvelyne';
|
||||||
|
src: url('/typo/Velvelyne-Book.ttf') format('truetype');
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'avara';
|
||||||
|
src: url('/typo/Avara-Black.woff2') format('woff2');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'pressStart2P';
|
||||||
|
src: url('/typo/PressStart2P-Regular.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'velvelyne';
|
||||||
|
src:url('/typo/Velvelyne-Bold.ttf') format('truetype');
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*=============Désact défault*/
|
||||||
|
input {
|
||||||
|
-webkit-appearance: none !important;
|
||||||
|
appearance: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
cursor: alias;
|
||||||
|
}
|
||||||
|
|
||||||
|
button{
|
||||||
|
cursor: cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
a p{
|
||||||
|
cursor:inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
a button{
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
cursor: inherit;
|
||||||
|
pointer-events: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dg{
|
||||||
|
display: none !important;
|
||||||
|
height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*====================BODY & BACKGROUND*/
|
||||||
|
html, body{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
background-color: var(--main-color);
|
||||||
|
width: 100%;
|
||||||
|
height:100%;
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: scroll;
|
||||||
|
display: block;
|
||||||
|
scrollbar-color: var(--back-color) var(--main-color);
|
||||||
|
scrollbar-width: thin;
|
||||||
|
z-index: -33;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*=======================pseudo-Fenetres*/
|
||||||
|
.windowStyle{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
background-color: var(--back-color);
|
||||||
|
border-style: solid;
|
||||||
|
border-width: thin;
|
||||||
|
border-radius: 16.1px;
|
||||||
|
border-color: var(--main-color);
|
||||||
|
overflow: hidden;
|
||||||
|
height: auto;
|
||||||
|
width: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.windowTitle{
|
||||||
|
width:100%;
|
||||||
|
height:44px;
|
||||||
|
background-color: var(--main-color);
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: 'karrik';
|
||||||
|
font-weight: normal;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 16.1px;
|
||||||
|
color: var(--back-color);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
cursor: move;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.windowTitleLower{
|
||||||
|
font-family: 'velvelyne';
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 13.12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggleBtn{
|
||||||
|
color: var(--back-color);
|
||||||
|
background-color: var(--main-color);
|
||||||
|
border-style: solid;
|
||||||
|
border-width: thin;
|
||||||
|
border-radius: 16.1px;
|
||||||
|
border-color: var(--back-color);
|
||||||
|
width: 27px;
|
||||||
|
height: 27px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
cursor: copy;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggleBtn:hover{
|
||||||
|
color: var(--main-color);
|
||||||
|
background-color: var(--back-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.windowContent{
|
||||||
|
height:77%;
|
||||||
|
width:100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon{
|
||||||
|
fill: currentColor;
|
||||||
|
height: 13.12px;
|
||||||
|
width: auto;
|
||||||
|
pointer-events: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textBtnStyle{
|
||||||
|
font-family: 'karrik';
|
||||||
|
font-size: 13.12px;
|
||||||
|
background-color: var(--back-color);
|
||||||
|
color: var(--main-color);
|
||||||
|
border-color: var(--main-color);
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1.75px;
|
||||||
|
border-radius: 16.1px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-around;
|
||||||
|
width: 161px;
|
||||||
|
height: 77px;
|
||||||
|
align-self: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textBtnStyle:hover{
|
||||||
|
background-color: var(--main-color);
|
||||||
|
color: var(--back-color);
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*==================INTERFACE*/
|
||||||
|
#adminWelcome{
|
||||||
|
width: 100%;
|
||||||
|
height: 13.12vh;
|
||||||
|
padding: 13.12px;
|
||||||
|
padding-top: 7.77px;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
p{
|
||||||
|
font-family: 'velvelyne';
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 13.12px;
|
||||||
|
color: var(--back-color);
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong{
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminContainer{
|
||||||
|
width: 100%;
|
||||||
|
height: 90vh;
|
||||||
|
inset: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: var(--back-color);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.adminSection{
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-top: 7.77px;
|
||||||
|
gap: 1vh;
|
||||||
|
}
|
||||||
@@ -14,5 +14,13 @@ export default defineConfig({
|
|||||||
alias: {
|
alias: {
|
||||||
'@': path.resolve(__dirname, './src')
|
'@': path.resolve(__dirname, './src')
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
build: {
|
||||||
|
rollupOptions: {
|
||||||
|
input: {
|
||||||
|
main: path.resolve(import.meta.dirname, 'index.html'),
|
||||||
|
admin: path.resolve(import.meta.dirname, 'admin/index.html'),
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user