2018-12-28 10:46:01 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
2019-01-04 16:11:27 -05:00
|
|
|
<headful :title="'Editor|' + deckInfo.meta.name"> </headful>
|
2018-12-28 10:46:01 -05:00
|
|
|
<div id="controls">
|
|
|
|
<div>
|
|
|
|
<button type="button" @click="upload"> Save Deck </button>
|
2019-01-06 10:20:42 -05:00
|
|
|
<Loader :loading="uploading"></Loader>
|
2019-01-06 09:54:04 -05:00
|
|
|
Download:
|
2018-12-28 10:46:01 -05:00
|
|
|
<button type="button" @click="jsonInputDownload">
|
2019-01-06 09:54:04 -05:00
|
|
|
Input JSON
|
2018-12-28 10:46:01 -05:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="button"
|
2019-01-06 09:54:04 -05:00
|
|
|
@click="downloadFile(`/decks/${deckID}.tts.json`, deckInfo.meta.name + '.tts.json')">
|
|
|
|
Tabletop Output JSON
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="button"
|
|
|
|
@click="downloadFile(`/decks/${deckID}.png`, deckInfo.meta.name + '.png')">
|
|
|
|
Deck PNG
|
2018-12-28 10:46:01 -05:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<label> Upload JSON: WARNING: WILL CLEAR DECK
|
|
|
|
<input @change="jsonUpload" type="file">
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
2019-01-06 09:54:04 -05:00
|
|
|
<div>
|
|
|
|
<label> Deck Name: <input type="text" v-model="deckInfo.meta.name"> </label>
|
|
|
|
<label> Deck Type:
|
|
|
|
<select v-model="deckInfo.meta.type">
|
|
|
|
<option value="hero">hero</option>
|
|
|
|
<option value="villain">villain</option>
|
|
|
|
<option value="environment">environment</option>
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
</div>
|
2018-12-28 10:46:01 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="cardEditor" v-if="selected">
|
|
|
|
<button class="close-editor" @click="selected = null">X</button>
|
2019-01-04 17:04:30 -05:00
|
|
|
<div v-for="(type, prop) in selected.props">
|
2018-12-28 10:46:01 -05:00
|
|
|
<label> {{ prop }}
|
2019-01-06 09:59:34 -05:00
|
|
|
<input v-if="type === 'image'" type="file" accept="image/*"
|
2019-01-04 17:04:30 -05:00
|
|
|
@change="fileUploaded(prop, $event)" />
|
2019-01-06 09:59:34 -05:00
|
|
|
<textarea v-else-if="type === 'textarea'" v-model="selected.card[prop]"> </textarea>
|
|
|
|
<input v-else :type="type" v-model="selected.card[prop]"/>
|
2018-12-28 10:46:01 -05:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-01-01 11:43:57 -05:00
|
|
|
<Deck ref="deck" :cards="deckInfo.cards" v-model="selected"> </Deck>
|
2018-12-28 10:46:01 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-01-03 15:12:16 -05:00
|
|
|
import yaml from 'js-yaml';
|
2019-01-04 17:04:30 -05:00
|
|
|
import Deck from './Deck.vue';
|
2019-01-06 10:20:42 -05:00
|
|
|
import Loader from './Loader.vue';
|
2018-12-28 10:46:01 -05:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Editor',
|
2019-01-06 10:20:42 -05:00
|
|
|
components: {Deck, Loader},
|
2018-12-28 10:46:01 -05:00
|
|
|
|
2019-01-04 17:04:30 -05:00
|
|
|
props: ['deckID'],
|
2018-12-28 10:46:01 -05:00
|
|
|
data() {
|
|
|
|
return {
|
2019-01-06 10:20:42 -05:00
|
|
|
uploading: false,
|
2018-12-28 10:46:01 -05:00
|
|
|
selected: null,
|
2019-01-01 11:43:57 -05:00
|
|
|
deckInfo: {meta: {name: "", type: ""},
|
|
|
|
cards: {}},
|
2018-12-28 10:46:01 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2019-01-04 17:04:30 -05:00
|
|
|
if (this.deckID !== 'new') {
|
|
|
|
fetch('/decks/' + this.deckID + '.json')
|
2019-01-01 11:43:57 -05:00
|
|
|
.then(r => r.json())
|
2019-01-06 09:48:51 -05:00
|
|
|
.then(j => this.deckInfo = j.deck)
|
2019-01-01 11:43:57 -05:00
|
|
|
.catch((err) => console.log('did not get old JSON, starting new deck'));
|
2019-01-04 17:04:30 -05:00
|
|
|
}
|
|
|
|
|
2018-12-28 10:46:01 -05:00
|
|
|
/* window.addEventListener(
|
|
|
|
* 'beforeunload', e => e.returnValue = "Unsaved changes blah blah"); */
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
// deck JSON uploader
|
|
|
|
jsonUpload(event) {
|
|
|
|
let files = event.target.files;
|
|
|
|
let reader = new FileReader();
|
2019-01-03 15:12:16 -05:00
|
|
|
reader.onload = e => this.deckInfo = yaml.safeLoad(e.target.result);
|
2018-12-28 10:46:01 -05:00
|
|
|
reader.readAsText(files[0]);
|
|
|
|
},
|
|
|
|
|
|
|
|
// download input JSON
|
|
|
|
jsonInputDownload() {
|
|
|
|
console.log(JSON.stringify(this.deckInfo));
|
|
|
|
this.downloadFile('data:application/json;charset=utf-8,' +
|
|
|
|
encodeURIComponent(JSON.stringify(this.deckInfo)),
|
2019-01-04 17:04:30 -05:00
|
|
|
this.deckID + '.input.json')
|
2018-12-28 10:46:01 -05:00
|
|
|
},
|
|
|
|
|
2019-01-04 17:04:30 -05:00
|
|
|
fileUploaded(event, prop) {
|
|
|
|
let reader = new FileReader();
|
|
|
|
reader.onload = e => {
|
|
|
|
this.selected.card[prop] = e.target.result;
|
|
|
|
};
|
|
|
|
reader.readAsDataURL(event.target.files[0]);
|
2018-12-28 10:46:01 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
downloadFile(file, name) {
|
|
|
|
let dl = document.createElement('a');
|
|
|
|
dl.setAttribute('href', file);
|
|
|
|
dl.setAttribute('download', name);
|
|
|
|
document.body.appendChild(dl);
|
|
|
|
dl.click();
|
|
|
|
document.body.removeChild(dl);
|
|
|
|
},
|
|
|
|
|
|
|
|
upload() {
|
2019-01-04 17:04:30 -05:00
|
|
|
// POST the inputed json to the server
|
2019-01-06 10:20:42 -05:00
|
|
|
this.uploading = true;
|
2019-01-04 17:04:30 -05:00
|
|
|
fetch('/upload', {
|
2018-12-28 10:46:01 -05:00
|
|
|
method: 'post',
|
|
|
|
headers: {'Content-Type': 'application/json'},
|
2019-01-04 17:04:30 -05:00
|
|
|
body: JSON.stringify({
|
|
|
|
deck: this.deckInfo,
|
2019-01-01 11:43:57 -05:00
|
|
|
_id: this.deckID === 'new' ? undefined : this.deckID,
|
|
|
|
dom: (new XMLSerializer()).serializeToString(this.$refs.deck.$el),
|
2019-01-06 09:47:19 -05:00
|
|
|
css: document.styleSheets[0].href,
|
2019-01-01 11:43:57 -05:00
|
|
|
})})
|
2019-01-04 17:04:30 -05:00
|
|
|
.then(r => r.json())
|
2019-01-06 10:20:42 -05:00
|
|
|
.then(j => {
|
|
|
|
this.$router.replace('/edit/' + j.id);
|
|
|
|
this.uploading = false;
|
|
|
|
})
|
2019-01-04 17:04:30 -05:00
|
|
|
.catch(err => console.log('Failed to upload' + err));
|
2018-12-28 10:46:01 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#cardEditor {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: gray;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close-editor {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
</style>
|