Elif Karlı: matamdan has güýçli çykdym
Adamsyny ýitirenden soň, Elif Karl durmuşyny güýçli dowam etdirmek kararyna geldi we karýerasyna täze taslamalar bilen ünsi jemledi.
Elif Karly 30 ýyl adamsy ölenden soň ýas döwrüni terk edendigini habar berdi. Meşhur hudo .nik öz duýgularyny "Aşakdan çykmaly boldum, Atarly Elifini küýsedim" sözleri bilen beýan etdi. Şeýle-de bolsa, bu döwürde sagalmagy we durmuşyny dowam etdirmegi ýüregine düwdi. Karly bu kyn günleri yzda galdyrmagyň möhümdigini aýtdy.
c.toLowerCase().includes(s));
},
selectCity(city) {
this.selectedCity = city;
this.open = false;
this.search = '';
// Cookie ayarla (30 gün)
document.cookie = 'user_city=' + encodeURIComponent(city) + '; path=/; max-age=' + (60*60*24*30);
// POST ile sunucuya da bildir
fetch('/api/set-city', {
method: 'POST',
headers: {'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name=csrf-token]')?.content || ''},
body: JSON.stringify({city: city})
});
// Livewire widget'larını güncelle
if (window.Livewire) {
Livewire.dispatch('cityChanged', { city: city });
}
},
detectLocation() {
this.detectingLocation = true;
fetch('/api/detect-city')
.then(r => r.json())
.then(data => {
if (data.city) {
this.selectCity(data.city);
}
this.detectingLocation = false;
})
.catch(() => { this.detectingLocation = false; });
},
autoDetect() {
if (!document.cookie.includes('user_city=')) {
this.detectLocation();
}
}
}"
x-init="autoDetect()"
>