198 lines
4.4 KiB
Vue
198 lines
4.4 KiB
Vue
<template>
|
|
<div id="app">
|
|
<div id="title" :style="titleStyle">
|
|
<div id="title-text">{{config.title.text}}</div>
|
|
<div id="title-sub">{{config.title.sub}}</div>
|
|
</div>
|
|
|
|
<el-card class="artwork" :body-style="{padding: '0px'}"
|
|
v-for="artwork in artworks">
|
|
<div class="image" :style="{'background-image': artwork.imgThumb}"></div>
|
|
<div style="padding: 14px;">
|
|
<div class="title">{{artwork.title}}</div>
|
|
<div class="time">{{artwork.rawDate}}</div>
|
|
</div>
|
|
</el-card>
|
|
|
|
<div id="footer" :style="footerStyle">
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {Component, Vue} from 'vue-property-decorator';
|
|
|
|
import config from '@/content/charlie-config.json';
|
|
|
|
/**
|
|
* Data class for artworks
|
|
*/
|
|
class Artwork
|
|
{
|
|
rawDate: string;
|
|
title: string;
|
|
format: string;
|
|
|
|
constructor(date: string, title: string, format: string)
|
|
{
|
|
this.rawDate = date;
|
|
this.title = title;
|
|
this.format = format;
|
|
}
|
|
|
|
get date()
|
|
{
|
|
return new Date(this.rawDate);
|
|
}
|
|
|
|
get imgThumb()
|
|
{
|
|
return this.getURL(`${this.rawDate}.pic.${this.format}`)
|
|
}
|
|
|
|
get imgFull()
|
|
{
|
|
return this.getURL(`${this.rawDate}.pic_hd.${this.format}`);
|
|
}
|
|
|
|
getURL(img: string)
|
|
{
|
|
try
|
|
{
|
|
return 'url(' + require('./assets/' + img) + ')';
|
|
}
|
|
catch (e)
|
|
{
|
|
return './404.jpg'
|
|
}
|
|
}
|
|
}
|
|
|
|
@Component
|
|
export default class App extends Vue
|
|
{
|
|
// Create variable from imported config
|
|
config = config;
|
|
|
|
// Parsed artworks
|
|
artworks: Artwork[] = [];
|
|
|
|
/**
|
|
* Initialize
|
|
*/
|
|
mounted()
|
|
{
|
|
// Set title
|
|
document.title = config.title.text;
|
|
|
|
// Parse artworks
|
|
config.artworks.forEach((a: any) =>
|
|
{
|
|
// Check null case
|
|
if (a.date == null) Error('Error: No date specified.');
|
|
if (a.title == null) a.title = config.artwork.default_title;
|
|
if (a.format == null) a.format = config.artwork.default_format;
|
|
|
|
// Add it
|
|
this.artworks.push(new Artwork(a.date, a.title, a.format));
|
|
});
|
|
|
|
// Sort by date
|
|
this.artworks.sort((a, b) => b.date.getTime() - a.date.getTime());
|
|
}
|
|
|
|
/**
|
|
* Style for title
|
|
*/
|
|
get titleStyle()
|
|
{
|
|
let dim = `rgba(0, 0, 0, ${config.title.dim / 100})`;
|
|
let url = require('./assets/' + config.title.background);
|
|
|
|
return {
|
|
'padding': (config.title.height / 2 - 5) + 'vh 0',
|
|
'background-image': `linear-gradient(${dim}, ${dim}), url(${url})`,
|
|
'color': config.title.text_color,
|
|
'font-family': config.title.font
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Style for footer
|
|
*/
|
|
get footerStyle()
|
|
{
|
|
return {
|
|
height: config.footer.height + 'vh',
|
|
background: config.footer.background
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
// Global div property
|
|
div
|
|
{
|
|
// Center and scale the image nicely
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
#app
|
|
{
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
#title
|
|
{
|
|
|
|
// Alignment
|
|
margin-bottom: -10vh;
|
|
|
|
// Shadow
|
|
box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
|
|
|
|
#title-text
|
|
{
|
|
font-size: 46px;
|
|
}
|
|
|
|
#title-sub
|
|
{
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
.artwork
|
|
{
|
|
display: inline-block;
|
|
margin: 3vh;
|
|
|
|
.image
|
|
{
|
|
height: 30vh;
|
|
width: 30vh;
|
|
}
|
|
|
|
.time
|
|
{
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
#footer
|
|
{
|
|
margin-top: 10vh;
|
|
|
|
// Shadow
|
|
box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
|
|
}
|
|
</style>
|