asciibird/src/Dashboard.vue
2021-11-20 11:10:15 +10:00

557 lines
14 KiB
Vue

<template>
<div id="app">
<div> <vue-file-toolbar-menu :content="myMenu" /> </div>
<NewAscii />
<Options v-if="asciibirdMeta.length" />
<EditAscii v-if="asciibirdMeta.length" />
<PasteAscii />
<ImageOverlay v-if="asciibirdMeta.length" />
<KeyboardShortcuts
:selected-blocks="selectedBlocks"
:text-editing="textEditing"
:selecting="selecting"
:is-showing-dialog="isShowingDialog"
@updatecanvas="updatecanvas"
:is-inputting-brush-size="this.isInputtingBrushSize"
:canvas-x="canvasX"
:canvas-y="canvasY"
@triggerbrush="triggerbrush"
/>
<t-dialog
name="dialog-posthttp"
title="Enter URL"
text="Enter URL for POST command"
icon="question"
:clickToClose=false
:showCloseButton=true
:disableBodyScroll=true
@closed="postHttp()"
>
<t-input v-model="lastPostURL" />
</t-dialog>
<context-menu :display="showContextMenu" ref="menu" class="z-50">
<ul>
<li
@click="$store.commit('openModal', 'new-ascii')"
class="ml-1"
@contextmenu.prevent
>
New ASCII
</li>
<li
@click="$store.commit('openModal', 'edit-ascii')"
class="ml-1"
v-if="asciibirdMeta.length"
>
Edit Ascii
</li>
<li
@click="closeTab(currentTab)"
class="ml-1 border-b"
v-if="asciibirdMeta.length"
>
Close Ascii
</li>
<li
@click="$store.commit('openModal', 'options')"
class="ml-1 border-b"
v-if="asciibirdMeta.length"
>
Options
</li>
<li @click="startImport('mirc')" class="ml-1">Import mIRC from File</li>
<li
@click="startExport('file')"
class="ml-1 border-b"
v-if="asciibirdMeta.length"
>
Export mIRC to File
</li>
<li class="ml-1" @click="$store.commit('openModal', 'paste-ascii')">
Import mIRC from Clipboard
</li>
<li
class="ml-1"
@click="startExport('clipboard')"
v-if="asciibirdMeta.length"
>
Export mIRC to Clipboard
</li>
<li
class="ml-1 border-b"
@click="startExport('post')"
v-if="asciibirdMeta.length"
>
Export mIRC to HTTP POST
</li>
<li
@click="exportAsciibirdState()"
class="ml-1"
v-if="asciibirdMeta.length"
>
Save Asciibird State
</li>
<li @click="startImport('asb')" class="ml-1">Load Asciibird State</li>
</ul>
</context-menu>
<span
@mouseup.right="openContextMenu"
@contextmenu.prevent
style="width: 100%; height: 100%; position: absolute; z-index: -1"
/>
<input
type="file"
style="display: none"
ref="asciiInput"
@change="onImport()"
/>
<template v-if="asciibirdMeta.length">
<div
class="bg-gray-500 relative z-auto"
ref="tabbar"
:style="toolbarString"
>
<span
v-for="(value, key) in asciibirdMeta"
:key="key"
class="mr-2 z-40"
>
<t-button
class="p-1 z-40"
:class="buttonStyle(key)"
@click="changeTab(key, value)"
>
{{ value.title }}
<t-button class="z-40" @click="closeTab(key)"> X </t-button>
</t-button>
</span>
</div>
<Editor
@coordsupdate="updateCoords"
@selectedblocks="selectedblocks"
@textediting="textediting"
:update-canvas="updateCanvas"
@selecting="updateSelecting"
:y-offset="scrollOffset"
:brush="drawBrush"
/>
<Toolbar :y-offset="scrollOffset" />
<DebugPanel
:canvas-x="canvasX"
:canvas-y="canvasY"
v-if="debugPanelState.visible"
:y-offset="scrollOffset"
/>
<BrushLibrary
v-if="brushLibraryState.visible"
:y-offset="scrollOffset"
/>
<BrushPreview
@inputtingbrush="inputtingbrush"
:y-offset="scrollOffset"
/>
<LayersLibrary :y-offset="scrollOffset" />
<CharPicker
v-if="toolbarState.isChoosingChar"
class="z-50"
:y-offset="scrollOffset"
/>
<ColourPicker
v-if="toolbarState.isChoosingFg || toolbarState.isChoosingBg"
class="z-50"
:y-offset="scrollOffset"
/>
</template>
<template v-else>
<div
class="
absolute
top-1/2
left-1/2
transform
-translate-x-1/2 -translate-y-1/2
text-center
"
@mouseup.right="openContextMenu"
@contextmenu.prevent
>
<!-- <h1 class="text-4xl">ASCIIBIRD</h1>
<h3>Right click to start</h3> -->
<BrushCanvas :blocks="splashAscii" />
</div>
</template>
</div>
</template>
<style>
.bar {
background-color: rgba(107, 114, 128) !important;
}
</style>
<script>
import LZString from "lz-string";
import Toolbar from "./components/Toolbar.vue";
import DebugPanel from "./components/DebugPanel.vue";
import BrushLibrary from "./components/BrushLibrary.vue";
import LayersLibrary from "./components/LayersLibrary.vue";
import Editor from "./views/Editor.vue";
import CharPicker from "./components/parts/CharPicker.vue";
import ColourPicker from "./components/parts/ColourPicker.vue";
import ContextMenu from "./components/parts/ContextMenu.vue";
import NewAscii from "./components/modals/NewAscii.vue";
import Options from "./components/modals/Options.vue";
import ImageOverlay from "./components/modals/ImageOverlay.vue";
import EditAscii from "./components/modals/EditAscii.vue";
import PasteAscii from "./components/modals/PasteAscii.vue";
import BrushCanvas from "./components/parts/BrushCanvas.vue";
import BrushPreview from "./components/parts/BrushPreview.vue";
import KeyboardShortcuts from "./components/parts/KeyboardShortcuts.vue";
import {
parseMircAscii,
toolbarIcons,
exportMirc,
downloadFile,
checkForGetRequest,
splashAscii,
} from "./ascii";
import VueFileToolbarMenu from 'vue-file-toolbar-menu'
export default {
async created() {
// Load from irc watch if present in the URL bar
checkForGetRequest();
var isThis = this;
window.addEventListener("scroll", function (event) {
isThis.scrollOffset = this.scrollY;
});
},
destroyed() {
window.removeEventListener("scroll", function (event) {
isThis.scrollOffset = this.scrollY;
});
},
components: {
Toolbar,
DebugPanel,
Editor,
CharPicker,
ColourPicker,
ContextMenu,
NewAscii,
EditAscii,
PasteAscii,
BrushLibrary,
BrushCanvas,
BrushPreview,
KeyboardShortcuts,
LayersLibrary,
Options,
ImageOverlay,
VueFileToolbarMenu
},
name: "Dashboard",
data: () => ({
canvasX: null,
canvasY: null,
dashboardX: 0,
dashboardY: 0,
importType: null,
showContextMenu: false,
selectedBlocks: null,
textEditing: null,
updateCanvas: false,
selecting: null,
isInputtingBrushSize: false,
scrollOffset: 0,
toolbarString: "top: 0px;",
lastPostURL: "",
isShowingDialog: false,
drawBrush: false,
happy: false
}),
computed: {
splashAscii() {
return splashAscii;
},
currentTool() {
return toolbarIcons[this.$store.getters.currentTool] ?? null;
},
icon() {
return [
this.currentTool.fa ?? "fas",
this.currentTool.icon ?? "mouse-pointer",
];
},
// options() {
// return this.$store.getters.options;
// },
canFg() {
return this.$store.getters.isTargettingFg;
},
canBg() {
return this.$store.getters.isTargettingBg;
},
canText() {
return this.$store.getters.isTargettingChar;
},
currentFg() {
return this.$store.getters.currentFg;
},
currentBg() {
return this.$store.getters.currentBg;
},
currentChar() {
return this.$store.getters.currentChar;
},
toolbarState() {
return this.$store.getters.toolbarState;
},
asciibirdMeta() {
return this.$store.getters.asciibirdMeta;
},
debugPanelState() {
return this.$store.getters.debugPanel;
},
brushLibraryState() {
return this.$store.getters.brushLibraryState;
},
currentAscii() {
return this.$store.getters.currentAscii;
},
currentTab() {
return this.$store.getters.currentTab;
},
myMenu () {
return [
{
text: "File", menu: [
{ text: "New ASCII", click: () => this.$store.commit('openModal', 'new-ascii') },
{ text: "Edit ASCII", click: () => this.$store.commit('openModal', 'edit-ascii') },
{ text: "Close ASCII", click: () => this.closeTab(this.currentTab) }
],
},{
text: "Options", menu: [
{ text: "Show Options", click: () => this.$store.commit('openModal', 'options') },
],
},{
text: "Import", menu: [
{ text: "mIRC File", click: () => startImport('mirc') },
{ text: "mIRC Clipboard", click: () => this.$store.commit('openModal', 'paste-ascii') },
{ text: "ASCIIBIRD State", click: () => this.startImport('asb') },
],
},{
text: "Export", menu: [
{ text: "mIRC File", click: () => this.startExport('file') },
{ text: "mIRC Clipboard", click: () => this.startExport('clipboard') },
{ text: "HTTP POST", click: () => this.startExport('post') },
{ text: "ASCIIBIRD State", click: () => this.exportAsciibirdState() },
],
}
]
}
},
watch: {
// scrollOffset(val) {
// this.$refs.tabbar.style.top = val;
// this.toolbarString = `top: ${val}px`;
// },
},
methods: {
triggerbrush() {
this.drawBrush = ! this.drawBrush
},
inputtingbrush(val) {
this.isInputtingBrushSize = val;
},
buttonStyle(key) {
return this.currentTab === key
? `text-sm pl-1 p-1 h-10 text-white border border-transparent shadow-sm hover:bg-blue-500 bg-gray-900`
: `text-sm pl-1 p-1 h-10 text-white border border-transparent shadow-sm hover:bg-blue-500 bg-gray-400`;
},
openContextMenu(e) {
e.preventDefault();
this.$refs.menu.open(e);
},
updateCoords(value) {
this.canvasX = value.x;
this.canvasY = value.y;
},
selectedblocks(value) {
this.selectedBlocks = value;
},
updateSelecting(value) {
this.selecting = value;
},
textediting(value) {
this.textEditing = value;
},
updatecanvas() {
this.updateCanvas = !this.updateCanvas;
},
async onImport() {
const { files } = this.$refs.asciiInput;
const filename = files[0].name;
const fileReader = new FileReader();
const fileType = this.importType;
fileReader.addEventListener("load", () => {
switch (fileType) {
case "asb":
this.importAsciibirdState(fileReader.result, filename);
break;
default:
case "mirc":
parseMircAscii(fileReader.result, filename);
break;
}
});
// This will fire the file reader 'load' event
fileReader.readAsText(files[0]);
},
startImport(type) {
// For ANSI we'll need to add back in the
// type cariable here
this.importType = type;
// console.log(this.importType);
this.$refs.asciiInput.click();
},
importAsciibirdState(fileContents) {
const contents = JSON.parse(
LZString.decompressFromEncodedURIComponent(fileContents)
);
this.$store.commit("changeState", { ...contents });
},
exportAsciibirdState() {
let output;
try {
output = LZString.compressToEncodedURIComponent(
JSON.stringify(this.$store.getters.state)
);
// Default timestamp for filename
const today = new Date();
const y = today.getFullYear();
const m = today.getMonth() + 1; // JavaScript months are 0-based.
const d = today.getDate();
const h = today.getHours();
const mi = today.getMinutes();
const s = today.getSeconds();
downloadFile(
output,
`asciibird-${y}-${m}-${d}-${h}-${mi}-${s}.asb`,
"application/gzip"
);
} catch (err) {
this.$toasted.show(err, {
type: "error",
});
}
},
startExport(type) {
let ascii = exportMirc();
switch (type) {
case "clipboard":
this.$copyText(ascii.output.join("")).then(
(e) => {
this.$toasted.show("Copied mIRC to clipboard!", {
type: "success",
});
},
(e) => {
this.$toasted.show("Error when copying mIRC to clipboard!", {
type: "error",
});
}
);
break;
default:
case "file":
downloadFile(ascii.output.join(""), ascii.filename, "text/plain");
break;
case "post":
this.$store.commit("toggleDisableKeyboard", true);
this.$dialog.show('dialog-posthttp');
this.isShowingDialog = true;
break;
}
},
postHttp() {
let ascii = exportMirc();
// this.lastPostURL = result.input;
const requestOptions = {
method: "POST",
headers: { "Content-Type": "application/octet-stream" },
body: ascii.output.join(""),
};
fetch(this.lastPostURL, requestOptions)
.then((response) => {
this.$toasted.show("POSTed ascii!");
})
.catch((error) => {
this.$toasted.show("Error POSTing");
});
this.$store.commit("toggleDisableKeyboard", false);
this.isShowingDialog = false;
},
changeTab(key) {
// Update the tab index in vuex store
this.$store.commit("changeTab", key);
},
closeTab(key) {
this.$dialog
.confirm({
title: `Close ${this.asciibirdMeta[key].title}?`,
text: "This action cannot be undone and the ASCII will be gone.",
icon: "info",
})
.then((result) => {
if (result.isOk) {
this.$store.commit("closeTab", key);
}
});
},
captureMouse(event) {
this.dashboardX = event.pageX;
this.dashboardY = event.pageY;
},
},
};
</script>