-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
238 lines (209 loc) · 7.6 KB
/
App.vue
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<template>
<Story />
<Prompt icon="system-uicons:document-stack" prompt-title="Detaylar" id="detailsPrompt">
<h1>
<Icon icon="system-uicons:document-words" /> Kaynaklar
</h1>
<p>Depremleri gösterebilmek için <a href="https://github.com/orhanayd">orhanayd</a>'nin yapmış olduğu <a href="https://github.com/orhanayd/kandilli-rasathanesi-api">kandilli-rasathanesi-api</a> kaynağının açık sitesini kullandım ve tasarımı zenginleştirmek adına SystemUI Icon setini kullandım.</p>
<div class="button-group">
<Button icon="system-uicons:document-stack" @click="openPage('https://github.com/orhanayd/kandilli-rasathanesi-api')">Kandilli Rasathanesi API</Button>
<Button icon="system-uicons:grid" @click="openPage('https://icones.js.org/collection/system-uicons')">System UI Icons</Button>
</div>
<div class="line"></div>
<h1>
<Icon icon="system-uicons:warning-circle" /> Bilgilendirme
</h1>
<p>Kullanmış olduğum API'nin kaynak kodları <a href="https://github.com/orhanayd">orhanayd</a>'ye aittir, ticari amaçla kullanıma Boğaziçi Üniversitesi Rektörlüğü'nün yazılı izni olmadan izin verilmemektedir.</p>
<div class="line"></div>
<h1>
<Icon icon="system-uicons:heart" /> Bağış
</h1>
<p>Buradan Türkiye'de ki, depremzedeler için bağışta bulunabilirsiniz.</p>
<div class="button-group">
<Button icon="system-uicons:heart" @click="openPage('https://www.afad.gov.tr/depremkampanyasi2')">AFAD</Button>
<Button icon="system-uicons:heart" @click="openPage('https://ahbap.org/bagisci-ol')">Ahbap</Button>
<Button icon="system-uicons:heart" @click="openPage('https://www.kizilay.org.tr/Bagis/BagisYap/404/pazarcik-elbistan-depremi-bagisi')">Kızılay</Button>
</div>
<div class="line"></div>
<center>
<p><a href="mailto:support@wersdown.dev">support@wersdown.dev</a></p>
</center>
</Prompt>
<Prompt icon="system-uicons:document-list" prompt-title="Son 400 Deprem" id="allEarthquakesPrompt">
<ul>
<li v-for="f of store.state.data">
<div
@click="
mapData.map?.setCenter({ lat: f.geojson.coordinates[1], lng: f.geojson.coordinates[0] });
mapData.map?.setZoom(11);
mapData.infoWindow?.setPosition({ lat: f.geojson.coordinates[1], lng: f.geojson.coordinates[0] });
mapData.infoWindow?.setContent(`<div><h3>${f.title}</h3><p>Büyüklük: ${f.mag}</p><p>Tarih: ${f.date}</p></div>`);
mapData.infoWindow?.open(mapData.map);
closePrompt();
">
{{ f.title }} - {{ f.mag }}</div>
</li>
</ul>
</Prompt>
<Prompt icon="system-uicons:list" prompt-title="Deprem" id="earthquakeDetailsPrompt"></Prompt>
<div class="control-panel">
<Select :values="selectValues" v-model="selectValue" class="view-type" body-position="upper">Görüntüleme
Türü</Select>
<PromptButton icon="system-uicons:document-stack" button-type="icon" promptID="detailsPrompt" />
<PromptButton icon="system-uicons:document-list" button-type="icon" promptID="allEarthquakesPrompt" />
<Button icon="system-uicons:location" button-type="icon" @click="findCurrentLocation()" />
</div>
<Map v-model="mapData" promptID="earthquakeDetailsPrompt" />
</template>
<script lang="ts" setup>
import Map from '@/components/map/Map.vue';
import store from '@/store';
import Button from '@/components/input/Button.vue';
import Select from '@/components/input/Select.vue';
import PromptButton from './components/input/PromptButton.vue';
import Prompt from './components/input/Prompt.vue';
import Story from './components/view/Story.vue';
import { Icon } from '@iconify/vue';
import { SelectValue } from './types';
import { ref, watch, onMounted } from 'vue';
const selectValue = ref<string>('circle');
const mapData = ref<{map: google.maps.Map | null, infoWindow: google.maps.InfoWindow | null}>({ map: null, infoWindow: null });
let allEarthquakes: HTMLElement | null = null;
const selectValues: Array<SelectValue> = [
{
icon: 'system-uicons:circle',
value: 'circle',
title: 'Daire'
},
{
icon: 'system-uicons:loader',
value: 'heat',
title: 'Isı'
},
{
icon: 'system-uicons:location',
value: 'point',
title: 'İşaret'
}
]
store.commit('safeLoadValues');
function openPage(url: string) {
window.open(url, '_blank');
}
function closePrompt() {
if (!allEarthquakes) return;
allEarthquakes.classList.add('close');
setTimeout(() => {
allEarthquakes!.style.display = 'none';
}, 400)
}
function handleLocationError(browserHasGeolocation: any, infoWindow: any, pos: any) {
infoWindow.setPosition(pos);
infoWindow.setContent(
browserHasGeolocation
? "Hata: Konum servisi başarısız oldu."
: "Hata: Tarayıcınız konum servisini desteklemiyor."
);
infoWindow.open(mapData.value.map);
}
function findCurrentLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
(position) => {
const pos = {
lat: position.coords.latitude,
lng: position.coords.longitude,
};
mapData.value.infoWindow?.setPosition(pos);
mapData.value.infoWindow?.setContent("Şimdiki konumunuz");
mapData.value.infoWindow?.open(mapData.value.map);
mapData.value.map?.setCenter(pos);
console.log(mapData.value.map?.getCenter()?.lat());
},
() => {
handleLocationError(true, mapData.value.infoWindow, mapData.value.map?.getCenter());
}
);
} else {
// Browser doesn't support Geolocation
handleLocationError(false, mapData.value.infoWindow, mapData.value.map?.getCenter());
}
}
selectValue.value = store.state.mapType;
watch(selectValue, (val: any) => {
localStorage.setItem('mapType', val);
store.state.mapType = val;
window.initMap();
})
onMounted(() => {
allEarthquakes = document.getElementById("allEarthquakesPrompt");
})
</script>
<style lang="scss">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
font-size: clamp(1rem, 1.5vw, 2rem);
height: 100vh;
}
.control-panel {
position: absolute;
z-index: 11;
bottom: 1em;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
.select,
.button {
margin: .4em;
}
}
.prompt {
.line {
margin: 1em auto;
background: #747474;
width: 80%;
position: relative;
height: 1px;
}
h1 {
margin-bottom: .3em;
display: flex;
align-items: center;
svg {
width: 1em;
height: 1em;
margin-right: .4em;
}
}
.button-group {
display: flex;
justify-content: center;
flex-wrap: wrap;
.button {
margin: .4em;
}
}
ul {
overflow: auto;
max-height: 70vh;
li {
list-style: none;
padding: .4em .8em;
margin: 0.4em;
border-radius: .6em;
cursor: pointer;
&:hover {
background-color: rgba(0, 0, 0, 0.5019607843);
color: #fff;
background-image: url(/noise.png);
}
}
}
}
</style>