364 lines
11 KiB
Vue
364 lines
11 KiB
Vue
<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>
|