{WIP} Bulma => Knacss (add album)
This commit is contained in:
parent
5b0f5a69c4
commit
21a184bf8d
7 changed files with 321 additions and 154 deletions
16
sass/ajouter-un-album.scss
Normal file
16
sass/ajouter-un-album.scss
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
.ajouter-un-album {
|
||||||
|
span.item {
|
||||||
|
margin-right: 0.6rem;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: ",";
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,15 @@
|
||||||
.field {
|
.field {
|
||||||
padding-top: .6rem;
|
padding-top: .6rem;
|
||||||
|
|
||||||
|
&.has-addons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
.button {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
}
|
}
|
||||||
|
@ -24,6 +34,8 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
margin-bottom: .5rem;
|
margin-bottom: .5rem;
|
||||||
|
background-color: #fff;
|
||||||
|
border-color: #dbdbdb;
|
||||||
|
|
||||||
&.is-danger {
|
&.is-danger {
|
||||||
background-color: #f14668;
|
background-color: #f14668;
|
||||||
|
@ -48,4 +60,14 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.is-primary {
|
||||||
|
background-color: #48c78e;
|
||||||
|
border-color: transparent;
|
||||||
|
color: #fff;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: #3ec487;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -15,5 +15,6 @@ body {
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #485fc7;
|
color: #485fc7;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -28,5 +28,8 @@
|
||||||
@import './global';
|
@import './global';
|
||||||
@import './navbar';
|
@import './navbar';
|
||||||
@import './forms';
|
@import './forms';
|
||||||
|
@import './table';
|
||||||
|
@import './modal';
|
||||||
@import './home';
|
@import './home';
|
||||||
@import './connexion';
|
@import './connexion';
|
||||||
|
@import './ajouter-un-album';
|
124
sass/modal.scss
Normal file
124
sass/modal.scss
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
.modal {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
align-items: center;
|
||||||
|
display: none;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 40;
|
||||||
|
|
||||||
|
&.is-visible {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-background {
|
||||||
|
background-color: rgba(10,10,10,.86);
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-card {
|
||||||
|
position: relative;
|
||||||
|
width: 300px;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
max-height: calc(100vh - 40px);
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
@include respond-to("small-up") {
|
||||||
|
width: 560px;
|
||||||
|
}
|
||||||
|
@include respond-to("medium-up") {
|
||||||
|
width: 980px;
|
||||||
|
}
|
||||||
|
@include respond-to("large-up") {
|
||||||
|
width: 1200;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
header,
|
||||||
|
footer {
|
||||||
|
align-items: center;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
display: flex;
|
||||||
|
flex-shrink: 0;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding: 20px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
border-bottom: 1px solid #dbdbdb;
|
||||||
|
border-top-left-radius: 6px;
|
||||||
|
border-top-right-radius: 6px;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
|
||||||
|
button {
|
||||||
|
user-select: none;
|
||||||
|
background-color: rgba(10,10,10,.2);
|
||||||
|
border: none;
|
||||||
|
border-radius: 9999px;
|
||||||
|
cursor: pointer;
|
||||||
|
pointer-events: auto;
|
||||||
|
display: inline-block;
|
||||||
|
flex-grow: 0;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 0;
|
||||||
|
height: 20px;
|
||||||
|
max-height: 20px;
|
||||||
|
max-width: 20px;
|
||||||
|
min-height: 20px;
|
||||||
|
min-width: 20px;
|
||||||
|
outline: none;
|
||||||
|
position: relative;
|
||||||
|
width: 20px;
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
background-color: #fff;
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
left: 50%;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
||||||
|
transform-origin: center center;
|
||||||
|
}
|
||||||
|
&::before {
|
||||||
|
height: 2px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
height: 50%;
|
||||||
|
width: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
section {
|
||||||
|
background-color: #fff;
|
||||||
|
flex-grow: 1;
|
||||||
|
flex-shrink: 1;
|
||||||
|
overflow: auto;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
border-bottom-left-radius: 6px;
|
||||||
|
border-bottom-right-radius: 6px;
|
||||||
|
border-top: 1px solid #dbdbdb;
|
||||||
|
|
||||||
|
.button:not(:last-child) {
|
||||||
|
margin-right: .5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
24
sass/table.scss
Normal file
24
sass/table.scss
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
table {
|
||||||
|
color: #363636;
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: .5em .75em;
|
||||||
|
border-bottom: 1px solid #dbdbdb;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
border-bottom-width: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(2n) {
|
||||||
|
background-color: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody {
|
||||||
|
tr {
|
||||||
|
&:hover {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,19 +1,109 @@
|
||||||
<div class="container" id="app">
|
<section class="layout-maxed ajouter-un-album" id="app">
|
||||||
|
<div class="modal" :class="{'is-visible': modalIsVisible}" id="addAlbum">
|
||||||
|
<div class="modal-background"></div>
|
||||||
|
<div class="modal-card">
|
||||||
|
<header>
|
||||||
|
<div>{{details.artists_sort}} - {{details.title}}</div>
|
||||||
|
<button aria-label="close" @click="toggleModal"></button>
|
||||||
|
</header>
|
||||||
|
<section>
|
||||||
|
<div class="grid grid-cols-2 gap-16">
|
||||||
|
<div>
|
||||||
|
<div class="text-center">
|
||||||
|
<img :src="details.thumb %>" alt="Miniature" />
|
||||||
|
<hr />
|
||||||
|
<img v-for="image in details.images" :src="image.uri150" alt="Miniature" style="max-width: 60px;" />
|
||||||
|
<hr />
|
||||||
|
</div>
|
||||||
|
<ol class="ml-4">
|
||||||
|
<li v-for="track in details.tracklist">{{ track.title }} ({{track.duration}})</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="grid grid-cols-2 gap-10">
|
||||||
|
<div>
|
||||||
|
<strong>Genres</strong>
|
||||||
|
<br />
|
||||||
|
<span class="item" v-for="genre in details.genres">{{genre}}</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Styles</strong>
|
||||||
|
<br />
|
||||||
|
<span class="item" v-for="style in details.styles">{{style}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<div class="grid grid-cols-3 gap-10">
|
||||||
|
<div>
|
||||||
|
<strong>Pays</strong>
|
||||||
|
<br />
|
||||||
|
<span>{{details.country}}</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Année</strong>
|
||||||
|
<br />
|
||||||
|
<span>{{details.year}}</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Date de sortie</strong>
|
||||||
|
<br />
|
||||||
|
<span>{{details.released}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<div class="grid grid-cols-2 gap-10">
|
||||||
|
<div>
|
||||||
|
<strong>Format</strong>
|
||||||
|
<br />
|
||||||
|
<span v-for="format in details.formats">{{format.name}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<div class="grid grid-cols-2 gap-10">
|
||||||
|
<div>
|
||||||
|
<strong>Codes barres</strong>
|
||||||
|
<ol>
|
||||||
|
<li v-for="identifier in details.identifiers">
|
||||||
|
{{identifier.value}} ({{identifier.type}})
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Label</strong>
|
||||||
|
<ol>
|
||||||
|
<li v-for="label in details.labels">
|
||||||
|
{{label.name}}
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<strong>Société</strong>
|
||||||
|
<ol>
|
||||||
|
<li v-for="company in details.companie">
|
||||||
|
{{company.name}}
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
<button class="button is-primary" @click="add">Ajouter</button>
|
||||||
|
<button class="button" @click="toggleModal">Annuler</button>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="layout-hero">
|
||||||
<form @submit="search">
|
<form @submit="search">
|
||||||
<div class="field has-addons">
|
<div class="field has-addons">
|
||||||
<div class="control">
|
<input type="text" name="q" v-model="q" placeholder="Nom de l'album ou code barre (ex : Hybrid Theory)">
|
||||||
<input class="input" type="text" name="q" v-model="q" placeholder="Nom de l'album ou code barre (ex : Hybrid Theory">
|
|
||||||
</div>
|
|
||||||
<div class="control">
|
|
||||||
<button class="button is-link" :disabled="loading">
|
<button class="button is-link" :disabled="loading">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fas fa-search"></i>
|
<i class="fas fa-search"></i>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</form>
|
</form>
|
||||||
<table class="table is-striped is-hoverable is-fullwidth">
|
<table class="mt-20">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Pochette</th>
|
<th>Pochette</th>
|
||||||
|
@ -37,7 +127,6 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a @click="loadDetails(item.id)">{{ item.title }}</a>
|
<a @click="loadDetails(item.id)">{{ item.title }}</a>
|
||||||
<!-- <a :href="'/ajouter-un-album/' + item.id">{{ item.title }}</a> -->
|
|
||||||
</td>
|
</td>
|
||||||
<td>{{ item.year }}</td>
|
<td>{{ item.year }}</td>
|
||||||
<td>{{ item.country }}</td>
|
<td>{{ item.country }}</td>
|
||||||
|
@ -59,121 +148,9 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="modal" :class="{'is-active': modalIsVisible}" id="addAlbum">
|
|
||||||
<div class="modal-background"></div>
|
|
||||||
<div class="modal-card">
|
|
||||||
<header class="modal-card-head">
|
|
||||||
<p class="modal-card-title">{{details.artists_sort}} - {{details.title}}</p>
|
|
||||||
<button class="delete" aria-label="close" @click="toggleModal"></button>
|
|
||||||
</header>
|
|
||||||
<section class="modal-card-body">
|
|
||||||
<div class="columns is-mobile">
|
|
||||||
<div class="column is-12-mobile is-4-desktop">
|
|
||||||
<div class="has-text-centered">
|
|
||||||
<img :src="details.thumb %>" alt="Miniature" />
|
|
||||||
<hr />
|
|
||||||
<img v-for="image in details.images" :src="image.uri150" alt="Miniature" style="max-width: 60px;" />
|
|
||||||
<hr />
|
|
||||||
</div>
|
|
||||||
<ol class="ml-4">
|
|
||||||
<li v-for="track in details.tracklist">{{ track.title }} ({{track.duration}})</li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
<div class="column is-12-mobile is-8-desktop">
|
|
||||||
<div class="column is-12">
|
|
||||||
<div class="columns is-mobile is-multiline">
|
|
||||||
<div class="column is-12-mobile is-6-desktop" v-for="genre in details.genres">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="company">Genre</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="genres" name="genres" class="input" v-model="genre" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="column is-12-mobile is-6-desktop" v-for="style in details.styles">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="company">Style</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="style" name="style" class="input" v-model="style" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr />
|
|
||||||
<div class="columns is-mobile">
|
|
||||||
<div class="column is-12-mobile is-6-desktop">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="year">Année</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="year" name="year" class="input" v-model="details.year" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="column is-12-mobile is-6-desktop">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="released">Date de sortie</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="released" name="released" class="input" v-model="details.released" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr />
|
|
||||||
<div class="columns is-mobile">
|
|
||||||
<div class="column is-12-mobile is-6-desktop">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="country">Pays</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="country" name="country" class="input" v-model="details.country" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="column is-12-mobile is-6-desktop" v-for="format in details.formats">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="format">Format</label>
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" id="format" name="format" class="input" v-model="format.name" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr />
|
|
||||||
<div class="columns is-mobile">
|
|
||||||
<div class="column is-12-mobile is-6-desktop">
|
|
||||||
<span class="label">Codes barres</span>
|
|
||||||
<ol>
|
|
||||||
<li v-for="identifier in details.identifiers">
|
|
||||||
{{identifier.value}} ({{identifier.type}})
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
<div class="column is-12-mobile is-6-desktop">
|
|
||||||
<span class="label">Label</span>
|
|
||||||
<div class="field" v-for="label in details.labels">
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" name="label" class="input" v-model="label.name" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<span class="label">Société</span>
|
|
||||||
<div class="field" v-for="company in details.companies">
|
|
||||||
<div class="control">
|
|
||||||
<input type="text" name="company" class="input" v-model="company.name" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<footer class="modal-card-foot">
|
|
||||||
<button class="button is-success" @click="add">Ajouter</button>
|
|
||||||
<button class="button" @click="toggleModal">Annuler</button>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
<button class="modal-close is-large" aria-label="close" @click="toggleModal"></button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script>
|
<script>
|
||||||
Vue.createApp({
|
Vue.createApp({
|
||||||
data() {
|
data() {
|
||||||
|
|
Loading…
Reference in a new issue