1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<style lang="scss" scoped>
@import '~/assets/styles/_colors.scss';
.links {
margin-bottom: 3em;
align-items: stretch;
display: flex;
justify-content: space-between;
div.link { cursor: pointer; }
.link {
background: $backgroundAccent;
display: block;
width: calc(25% - 2rem);
border-radius: 6px;
box-shadow: 0 1.5rem 1.5rem -1.25rem rgba(10,10,10,.05);
transition-duration: 86ms;
transition-property: box-shadow,-webkit-transform;
transition-property: box-shadow,transform;
transition-property: box-shadow,transform,-webkit-transform;
will-change: box-shadow,transform;
header.bd-footer-star-header {
padding: 1.5rem;
&:hover .bd-footer-subtitle { color: $textColorHighlight; }
h4.bd-footer-title {
color: $textColorHighlight;
font-size: 1.5rem;
line-height: 1.25;
margin-bottom: .5rem;
transition-duration: 86ms;
transition-property: color;
font-weight: 700;
}
p.bd-footer-subtitle {
color: $textColor;
margin-top: -.5rem;
transition-duration: 86ms;
transition-property: color;
font-weight: 400;
}
}
&:hover {
box-shadow: 0 3rem 3rem -1.25rem rgba(10,10,10,.1);
-webkit-transform: translateY(-.5rem);
transform: translateY(-.5rem);
}
}
}
@media screen and (max-width: 768px) {
.links {
display: block;
padding: 0px 2em;
.link {
width: 100%;
margin-bottom: 1.5em;
}
}
}
</style>
<template>
<div class="links">
<a href="https://github.com/WeebDev/lolisafe"
target="_blank"
class="link">
<header class="bd-footer-star-header">
<h4 class="bd-footer-title">GitHub</h4>
<p class="bd-footer-subtitle">Deploy your own lolisafe</p>
</header>
</a>
<div v-if="loggedIn"
class="link"
@click="createShareXThing">
<header class="bd-footer-star-header">
<h4 class="bd-footer-title">ShareX</h4>
<p class="bd-footer-subtitle">Upload from your Desktop</p>
</header>
</div>
<a href="https://chrome.google.com/webstore/detail/lolisafe-uploader/enkkmplljfjppcdaancckgilmgoiofnj"
target="_blank"
class="link">
<header class="bd-footer-star-header">
<h4 class="bd-footer-title">Extension</h4>
<p class="bd-footer-subtitle">Upload from any website</p>
</header>
</a>
<router-link to="/faq"
class="link">
<header class="bd-footer-star-header">
<h4 class="bd-footer-title">FAQ</h4>
<p class="bd-footer-subtitle">dunno</p>
</header>
</router-link>
</div>
</template>
<script>
import { saveAs } from 'file-saver';
export default {
computed: {
loggedIn() {
return this.$store.state.loggedIn;
}
},
methods: {
createShareXThing() {
const sharexFile = `{
"Name": "${this.$store.state.config.serviceName}",
"DestinationType": "ImageUploader, FileUploader",
"RequestType": "POST",
"RequestURL": "${location.origin}/api/upload",
"FileFormName": "files[]",
"Headers": {
"authorization": "Bearer ${this.$store.state.token}",
"accept": "application/vnd.lolisafe.json"
},
"ResponseType": "Text",
"URL": "$json:url$",
"ThumbnailURL": "$json:url$"
}`;
const sharexBlob = new Blob([sharexFile], { type: 'application/octet-binary' });
saveAs(sharexBlob, `${location.hostname}.sxcu`);
}
}
};
</script>
|