Merge pull request #77 from Erant-s-r-o/Matt/preferenceUPD

Matt/preference upd
This commit is contained in:
Matthieu Morin 2023-03-20 08:51:10 +01:00 committed by GitHub
commit c0de14399f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
34 changed files with 367 additions and 144 deletions

View File

@ -13,7 +13,7 @@
<!-- Serviceworker registration --> <!-- Serviceworker registration -->
<script> <script>
if (typeof navigator.serviceWorker !== 'undefined') { if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js') navigator.serviceWorker.register('servicewworker.js')
} }
</script> </script>

36
package-lock.json generated
View File

@ -39,9 +39,10 @@
"eslint-plugin-promise": "^6.1.1", "eslint-plugin-promise": "^6.1.1",
"flowbite-svelte": "^0.28.11", "flowbite-svelte": "^0.28.11",
"postcss": "^8.4.19", "postcss": "^8.4.19",
"sass": "^1.56.1", "sass": "^1.59.3",
"svelte": "^3.52.0", "svelte": "^3.52.0",
"svelte-preprocess": "^4.10.7", "svelte-preprocess": "^4.10.7",
"svelte-preprocess-sass": "^2.0.1",
"tailwindcss": "^3.2.4", "tailwindcss": "^3.2.4",
"typescript": "^4.9.5", "typescript": "^4.9.5",
"vite": "^3.2.3" "vite": "^3.2.3"
@ -5823,6 +5824,24 @@
} }
} }
}, },
"node_modules/svelte-preprocess-filter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/svelte-preprocess-filter/-/svelte-preprocess-filter-1.0.0.tgz",
"integrity": "sha512-92innv59nyEx24xbfcSurB5ocwC8qFdDtGli/JVMHzJsxyvV2yjQKIcbUqU9VIV5mKUWO2PoY93nncS2yF4ULQ==",
"dev": true
},
"node_modules/svelte-preprocess-sass": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/svelte-preprocess-sass/-/svelte-preprocess-sass-2.0.1.tgz",
"integrity": "sha512-0y4FjRsRWcN7rJeNJnSfZ7LVAz6S7/j9Dg24XFRelr/rjMMjXORdEvXy4r38fUYmyk9Y7yjwlHCiqyGxMHhEbg==",
"dev": true,
"dependencies": {
"svelte-preprocess-filter": "^1.0.0"
},
"peerDependencies": {
"sass": "^1.35.2"
}
},
"node_modules/svelte-preprocess/node_modules/magic-string": { "node_modules/svelte-preprocess/node_modules/magic-string": {
"version": "0.25.9", "version": "0.25.9",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
@ -10417,6 +10436,21 @@
} }
} }
}, },
"svelte-preprocess-filter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/svelte-preprocess-filter/-/svelte-preprocess-filter-1.0.0.tgz",
"integrity": "sha512-92innv59nyEx24xbfcSurB5ocwC8qFdDtGli/JVMHzJsxyvV2yjQKIcbUqU9VIV5mKUWO2PoY93nncS2yF4ULQ==",
"dev": true
},
"svelte-preprocess-sass": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/svelte-preprocess-sass/-/svelte-preprocess-sass-2.0.1.tgz",
"integrity": "sha512-0y4FjRsRWcN7rJeNJnSfZ7LVAz6S7/j9Dg24XFRelr/rjMMjXORdEvXy4r38fUYmyk9Y7yjwlHCiqyGxMHhEbg==",
"dev": true,
"requires": {
"svelte-preprocess-filter": "^1.0.0"
}
},
"svelte-routing": { "svelte-routing": {
"version": "1.6.0", "version": "1.6.0",
"resolved": "https://registry.npmjs.org/svelte-routing/-/svelte-routing-1.6.0.tgz", "resolved": "https://registry.npmjs.org/svelte-routing/-/svelte-routing-1.6.0.tgz",

View File

@ -22,9 +22,10 @@
"eslint-plugin-promise": "^6.1.1", "eslint-plugin-promise": "^6.1.1",
"flowbite-svelte": "^0.28.11", "flowbite-svelte": "^0.28.11",
"postcss": "^8.4.19", "postcss": "^8.4.19",
"sass": "^1.56.1", "sass": "^1.59.3",
"svelte": "^3.52.0", "svelte": "^3.52.0",
"svelte-preprocess": "^4.10.7", "svelte-preprocess": "^4.10.7",
"svelte-preprocess-sass": "^2.0.1",
"tailwindcss": "^3.2.4", "tailwindcss": "^3.2.4",
"typescript": "^4.9.5", "typescript": "^4.9.5",
"vite": "^3.2.3" "vite": "^3.2.3"

View File

@ -2,5 +2,5 @@ const autoprefixer = require('autoprefixer')
const tailwind = require('tailwindcss') const tailwind = require('tailwindcss')
module.exports = { module.exports = {
plugins: [tailwind(), autoprefixer()], plugins: [tailwind(), autoprefixer()]
} }

View File

@ -1,9 +1,10 @@
// This is the service worker with the combined offline experience (Offline page + Offline copy of pages) // This is the service worker with the combined offline experience (Offline page + Offline copy of pages)
import { workbox } from 'https://storage.googleapis.com/workbox-cdn/releases/5.1.4/workbox-sw.js' import workbox from 'workbox-sw'
const CACHE = 'pwabuilder-offline-page' const CACHE = 'pwabuilder-offline-page'
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.4/workbox-sw.js') importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.4/workbox-sw.js')
// TODO: replace the following with the correct offline fallback page i.e.: const offlineFallbackPage = "offline.html"; // TODO: replace the following with the correct offline fallback page i.e.: const offlineFallbackPage = "offline.html";
const offlineFallbackPage = '/offline.html' const offlineFallbackPage = '/offline.html'

View File

@ -76,7 +76,7 @@
}, },
{ {
path: '/:gameurl', path: '/:gameurl',
component: () => import('$routes/game/game.svelte'), component: () => import('$root/src/routes/game/experience.svelte'),
}, },
{ {
path: '/terms-and-conditions', path: '/terms-and-conditions',
@ -94,5 +94,9 @@
path: '/forgot-pswd', path: '/forgot-pswd',
component: () => import('$routes/authorization/forgottonPassword/forgot-pswd.svelte'), component: () => import('$routes/authorization/forgottonPassword/forgot-pswd.svelte'),
}, },
{
path: '/preferences',
component: () => import('$root/src/routes/onboarding/interestsPage.svelte'),
}
]} ]}
/> />

View File

@ -2,8 +2,10 @@ import { Collection } from './appwrite'
const experiences = new Collection('63cef30d6da945dd4250', '63cef4bd210fdf2e5888') const experiences = new Collection('63cef30d6da945dd4250', '63cef4bd210fdf2e5888')
const users = new Collection('63ded6c18e8493bffc83', 'Users') const users = new Collection('63ded6c18e8493bffc83', 'Users')
const categories = new Collection('63cef30d6da945dd4250', '63cef4bd210fdf2e5888')
export default { export default {
experiences, experiences,
users, users,
categories,
} }

View File

@ -0,0 +1,55 @@
<!-- This component is imported to display a category to (de)select-->
<script lang="ts">
export let name;
export let image;
export let selected = false;
export let onToggle = () => {};
const handleClick = () => {
onToggle();
};
</script>
<div class="category" class:selected={selected} on:click={handleClick}>
<div class="image">
<img src={image} alt={name} />
</div>
<div class="name">{name}</div>
</div>
<style lang="scss">
.category {
display: flex;
flex-direction: column;
align-items: center;
width: 120px;
margin: 10px;
cursor: pointer;
.image {
width: 100%;
padding-top: 100%;
position: relative;
img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
}
.name {
margin-top: 5px;
font-size: 14px;
text-align: center;
}
&.selected {
border: 2px solid blue;
}
}
</style>

View File

@ -3,6 +3,7 @@
import collections from '$lib/collections' import collections from '$lib/collections'
import { Query } from 'appwrite' import { Query } from 'appwrite'
import { navigate } from 'svelte-routing' import { navigate } from 'svelte-routing'
import Category from "$lib/components/Categories/category.svelte";
export let current_state = 1 export let current_state = 1

View File

@ -33,3 +33,4 @@
{/if} {/if}
{/each} {/each}
</Router> </Router>

View File

@ -1,4 +1,4 @@
async function send({ method, path, body, token, headers }) { async function send ({ method, path, body, token, headers }) {
const opts = { method, headers: new Headers(), mode: 'cors' } const opts = { method, headers: new Headers(), mode: 'cors' }
opts.headers.append('Content-Type', 'application/json') opts.headers.append('Content-Type', 'application/json')
opts.headers.append('Access-Control-Allow-Origin', '*') opts.headers.append('Access-Control-Allow-Origin', '*')
@ -14,7 +14,7 @@ async function send({ method, path, body, token, headers }) {
} }
if (token) { if (token) {
opts.headers['Authorization'] = `Bearer ${token}` opts.headers.Authorization = `Bearer ${token}`
} }
const res = fetch(path, opts) const res = fetch(path, opts)
@ -36,19 +36,19 @@ async function send({ method, path, body, token, headers }) {
return res return res
} }
export function get(path, token = null) { export function get (path, token = null) {
return send({ method: 'GET', path, body: null, token }) return send({ method: 'GET', path, body: null, token })
} }
export function del(path, token = null) { export function del (path, token = null) {
return send({ method: 'DELETE', path, body: null, token }) return send({ method: 'DELETE', path, body: null, token })
} }
export function post(path, body, token = null) { export function post (path, body, token = null) {
return send({ method: 'POST', path, body, token }) return send({ method: 'POST', path, body, token })
} }
export function put(path, body, token = null, headers = []) { export function put (path, body, token = null, headers = []) {
return send({ method: 'PUT', path, body, token, headers }) return send({ method: 'PUT', path, body, token, headers })
} }

View File

@ -5,6 +5,7 @@ import { getLocationDataFromLatAndLong } from '../locations'
import { writable } from 'svelte/store' import { writable } from 'svelte/store'
import { CheckPoint, Experience } from '$lib/TStypes/experiences' import { CheckPoint, Experience } from '$lib/TStypes/experiences'
//Loading of checkpoints and rating is done in the same function to prevent multiple requests to the database
export const load = async (pathName: string, previewQuestionsCount?: number, preview?: Function) => { export const load = async (pathName: string, previewQuestionsCount?: number, preview?: Function) => {
const checkPoints: Array<CheckPoint> = [] const checkPoints: Array<CheckPoint> = []
// @ts-ignore // @ts-ignore
@ -30,13 +31,13 @@ export const load = async (pathName: string, previewQuestionsCount?: number, pre
return experience return experience
} }
//Fetch of Rating
const getRating = async (expId: string) => { const getRating = async (expId: string) => {
const { documents, total } = await databases.listDocuments('63cef30d6da945dd4250', '63ee6353ebb174cf815d', [Query.equal('ExpID', expId)]) const { documents, total } = await databases.listDocuments('63cef30d6da945dd4250', '63ee6353ebb174cf815d', [Query.equal('ExpID', expId)])
const sum = documents.reduce((accumulator, rating) => accumulator + rating.ExpUserRating, 0) const sum = documents.reduce((accumulator, rating) => accumulator + rating.ExpUserRating, 0)
return sum / total || 0 return sum / total || 0
} }
// Fetch of answers to the checkpoints
export const answer = async (checkPointId: string, answer: any) => { export const answer = async (checkPointId: string, answer: any) => {
const checkPoint = await databases.getDocument('63cef30d6da945dd4250', '63cef84d908acf805758', checkPointId) const checkPoint = await databases.getDocument('63cef30d6da945dd4250', '63cef84d908acf805758', checkPointId)
console.log({ checkPoint }) console.log({ checkPoint })
@ -46,29 +47,29 @@ export const answer = async (checkPointId: string, answer: any) => {
if (CPType === 'CHECKBOX') return JSON.stringify(answer) === JSON.stringify(correctAnswer) if (CPType === 'CHECKBOX') return JSON.stringify(answer) === JSON.stringify(correctAnswer)
if (CPType === 'RADIO' || CPType === 'NUMBER' || CPType === 'TEXT') return answer === correctAnswer[0] if (CPType === 'RADIO' || CPType === 'NUMBER' || CPType === 'TEXT') return answer === correctAnswer[0]
} }
// Fetch of all experiences
export const getExpiriences = async () => { export const getExperiences = async () => {
const expiriences = (await databases.listDocuments('63cef30d6da945dd4250', '63cef4bd210fdf2e5888', [Query.equal('ExpApproved', true)])).documents const experiences = (await databases.listDocuments('63cef30d6da945dd4250', '63cef4bd210fdf2e5888', [Query.equal('ExpApproved', true)])).documents
let items = [] let items = []
for (const expirience of expiriences) { for (const experience of experiences) {
items.push({ items.push({
city: (await getLocationDataFromLatAndLong(expirience.ExpLocation[0], expirience.ExpLocation[1])).city, city: (await getLocationDataFromLatAndLong(experience.ExpLocation[0], experience.ExpLocation[1])).city,
...expirience, ...experience,
}) })
} }
return items return items
} }
// Fetch of all experiences as store
export const getExpiriencesAsStore = () => { export const getExperiencesAsStore = () => {
const store = writable([]) const store = writable([])
const loading = writable<boolean>(true) const loading = writable<boolean>(true)
databases.listDocuments('63cef30d6da945dd4250', '63cef4bd210fdf2e5888', [Query.equal('ExpApproved', true)]).then(async ({ documents }) => { databases.listDocuments('63cef30d6da945dd4250', '63cef4bd210fdf2e5888', [Query.equal('ExpApproved', true)]).then(async ({ documents }) => {
let items: Array<any> = [] let items: Array<any> = []
for (const expirience of documents) { for (const experience of documents) {
items.push({ items.push({
city: (await getLocationDataFromLatAndLong(expirience.ExpLocation[0], expirience.ExpLocation[1])).city, city: (await getLocationDataFromLatAndLong(experience.ExpLocation[0], experience.ExpLocation[1])).city,
...expirience, ...experience,
}) })
} }
loading.set(false) loading.set(false)
@ -77,3 +78,10 @@ export const getExpiriencesAsStore = () => {
return [store, loading] as const return [store, loading] as const
} }
// !pridat trideni podle kategorie! export const getExperiencesByCategory = async (category: string) => {}

View File

@ -0,0 +1,25 @@
import { databases } from '$lib/appwrite';
import { Query } from 'appwrite';
export const getPreferences = async () => {
const { documents } = await databases.listDocuments('6417cf1de159d094b370', '6417cf29f2118829b3b4', [
Query.orderAsc('Name')
]);
const preferences = documents.map(({ Name, Image }) => ({ name: Name, img: Image }));
return preferences;
};
export const addSelectedPreferences = async (userId, preferences) => {
const { document: user } = await databases.getDocument('63ded6c18e8493bffc83', 'Users', userId);
const updatedUser = {
...user,
userPreferences: preferences
};
await databases.updateDocument('6417cf1de159d094b370', 'user-collection', user.$id, updatedUser);
return updatedUser;
};

View File

@ -2,28 +2,28 @@ import { writable } from 'svelte/store'
import * as api from './api' import * as api from './api'
class FetchArray extends Array { class FetchArray extends Array {
constructor(items, caller = () => null) { constructor (items, caller = () => null) {
super() super()
this.push(...items) this.push(...items)
this.caller = caller this.caller = caller
} }
setFetch(caller) { setFetch (caller) {
this.caller = caller this.caller = caller
return this return this
} }
fetch(fetchBody = {}, then = () => null) { fetch (fetchBody = {}, then = () => null) {
return this.caller(fetchBody, then) return this.caller(fetchBody, then)
} }
} }
export function fetchable(path, initBody = {}) { export function fetchable (path, initBody = {}) {
const { subscribe, set } = writable(null) const { subscribe, set } = writable(null)
return { return {
subscribe, subscribe,
fetch(fetchBody = {}, then = () => null) { fetch (fetchBody = {}, then = () => null) {
const body = Object.assign(initBody, fetchBody) const body = Object.assign(initBody, fetchBody)
api.post(path, body).then((result) => { api.post(path, body).then((result) => {
@ -36,7 +36,7 @@ export function fetchable(path, initBody = {}) {
} }
} }
export function loadable(path, initBody = {}) { export function loadable (path, initBody = {}) {
const fetcher = fetchable(path, initBody) const fetcher = fetchable(path, initBody)
const fetchCaller = fetcher.fetch const fetchCaller = fetcher.fetch
@ -56,7 +56,7 @@ export function loadable(path, initBody = {}) {
return new FetchArray([fetcher, isFetching], fetcher.fetch) return new FetchArray([fetcher, isFetching], fetcher.fetch)
} }
export function mutable(path, callback = () => null) { export function mutable (path, callback = () => null) {
const isFetching = writable(false) const isFetching = writable(false)
const { subscribe, set } = writable(null) const { subscribe, set } = writable(null)
@ -73,7 +73,7 @@ export function mutable(path, callback = () => null) {
return [ return [
{ {
subscribe, subscribe,
mutate(fetchBody = {}) { mutate (fetchBody = {}) {
callback(mutateCall, fetchBody) callback(mutateCall, fetchBody)
return this return this
} }

0
src/locales/cz.json Normal file
View File

13
src/locales/en.json Normal file
View File

@ -0,0 +1,13 @@
{
"page": {
"home": {
"title": "Discover the best Travel Experiences"
},
"Map": {
"title": "Map the best Travel Experiences"
},
"register": {
"title": "Register to the best Travel Experiences"
}
}
}

11
src/locales/i18n.ts Normal file
View File

@ -0,0 +1,11 @@
import { register, init, getLocaleFromNavigator, isLoading, locale, locales } from 'svelte-i18n'
import registers from './languages'
Object.entries(registers).forEach(([key, file]) => register(key, file))
export const i18n = () => init({
fallbackLocale: 'en',
initialLocale: getLocaleFromNavigator(),
})
export { isLoading, locale, locales }

4
src/locales/languages.ts Normal file
View File

@ -0,0 +1,4 @@
export default {
'en': () => import('./en.json'),
'cz': () => import('./cz.json')
}

View File

@ -10,11 +10,11 @@
import { Helper } from 'flowbite-svelte' import { Helper } from 'flowbite-svelte'
import Button from '$lib/components/Buttons/Button.svelte' import Button from '$lib/components/Buttons/Button.svelte'
let email = 'dfsafads' let email = ''
let password = 'aaaaaaaaa' let password = ''
let repeatPassword = 'aaaaaaaaa' let repeatPassword = ''
let name = 'fdsafsda' let name = ''
let erantId = 'dfsafdsa' let erantId = ''
let state: 'email-sent' | 'register' | 'loading' = 'register' let state: 'email-sent' | 'register' | 'loading' = 'register'
let error: string | null = null let error: string | null = null
@ -26,7 +26,7 @@
state = 'loading' state = 'loading'
error = null error = null
if (await getUserByErantId(erantId)) { if (await getUserByErantId(erantId)) {
const err = new Error('fdjsaůl') const err = new Error('Erant ID is already taken')
err['code'] = 1001 err['code'] = 1001
throw err throw err
} }
@ -57,8 +57,8 @@
<Helper class="ml-4" color="red">{error}</Helper> <Helper class="ml-4" color="red">{error}</Helper>
{/if} {/if}
<div class="inform"> <div class="inform">
<input bind:value={name} type="text" placeholder="Name" autocomplete="full-name" required /> <input bind:value={name} type="text" placeholder="Your name" autocomplete="full-name" required />
<input bind:value={email} type="text" placeholder="E-mail" autocomplete="email" required /> <input bind:value={email} type="text" placeholder="Your e-mail" autocomplete="email" required />
<input bind:value={erantId} type="text" placeholder="@your_nickname" autocomplete="email" required /> <input bind:value={erantId} type="text" placeholder="@your_nickname" autocomplete="email" required />
<HiddenInput bind:value={password} placeholder="Password" /> <HiddenInput bind:value={password} placeholder="Password" />
<HiddenInput bind:value={repeatPassword} placeholder="Re-type password" /> <HiddenInput bind:value={repeatPassword} placeholder="Re-type password" />

View File

@ -2,7 +2,7 @@
import NavigationBarLayout from '../../lib/components/Layouts/NavigationBarLayout.svelte' import NavigationBarLayout from '../../lib/components/Layouts/NavigationBarLayout.svelte'
import Result from './Components/Result.svelte' import Result from './Components/Result.svelte'
import Top from './Components/Top.svelte' import Top from './Components/Top.svelte'
import { getExpiriences } from '$lib/utils/database/game' import { getExperiences } from '$lib/utils/database/experience'
import Loading from '$lib/components/Common/Loading.svelte' import Loading from '$lib/components/Common/Loading.svelte'
import Comparment from '../homepage/Components/Comparment.svelte' import Comparment from '../homepage/Components/Comparment.svelte'
@ -14,7 +14,7 @@
<Top bind:search_value={Search} /> <Top bind:search_value={Search} />
<div class="results"> <div class="results">
{#await getExpiriences()} {#await getExperiences()}
<div class="w-full h-24 flex items-center justify-center"> <div class="w-full h-24 flex items-center justify-center">
<Loading /> <Loading />
</div> </div>

View File

@ -2,7 +2,7 @@
import Layout from '../Components/Layout.svelte' import Layout from '../Components/Layout.svelte'
import CheckBox from '../../../lib/components/Inputs/Checkbox.svelte' import CheckBox from '../../../lib/components/Inputs/Checkbox.svelte'
import { CheckPoint } from '$lib/TStypes/experiences' import { CheckPoint } from '$lib/TStypes/experiences'
import { answer } from '$lib/utils/database/game' import { answer } from '$lib/utils/database/experience'
export let checkPoint: CheckPoint export let checkPoint: CheckPoint
export let myAnswer export let myAnswer

View File

@ -1,5 +1,7 @@
<script lang="ts"> <script lang="ts">
import Input from '../../../lib/components/Inputs/Input.svelte' import Input from '../../../lib/components/Inputs/Input.svelte'
import { CheckPoint } from '$lib/TStypes/experiences'
import { answer } from '$lib/utils/database/experience'
export let myAnswer = '' export let myAnswer = ''
export let clear: false | true = false export let clear: false | true = false

View File

@ -7,7 +7,7 @@
import IntervalForm from './IntervalForm.svelte' import IntervalForm from './IntervalForm.svelte'
import QrCode from './QrCode.svelte' import QrCode from './QrCode.svelte'
import Finish from './Finish.svelte' import Finish from './Finish.svelte'
import { data } from '$lib/stores/game' import { data } from '$lib/stores/stores'
import Erantmap from '$lib/components/Map/Erantmap.svelte' import Erantmap from '$lib/components/Map/Erantmap.svelte'
import Info from './Info.svelte' import Info from './Info.svelte'
import { Experience } from '$lib/TStypes/experiences' import { Experience } from '$lib/TStypes/experiences'

View File

@ -2,7 +2,7 @@
import Radio from '../../../lib/components/Inputs/Radio.svelte' import Radio from '../../../lib/components/Inputs/Radio.svelte'
import Layout from '../Components/Layout.svelte' import Layout from '../Components/Layout.svelte'
import { CheckPoint } from '$lib/TStypes/experiences' import { CheckPoint } from '$lib/TStypes/experiences'
import { answer } from '$lib/utils/database/game' import { answer } from '$lib/utils/database/experience'
export let checkPoint: CheckPoint export let checkPoint: CheckPoint
export let myAnswer = '' export let myAnswer = ''

View File

@ -2,7 +2,7 @@
import Layout from '../Components/Layout.svelte' import Layout from '../Components/Layout.svelte'
import Input from '../../../lib/components/Inputs/Input.svelte' import Input from '../../../lib/components/Inputs/Input.svelte'
import { CheckPoint } from '$lib/TStypes/experiences' import { CheckPoint } from '$lib/TStypes/experiences'
import { answer } from '$lib/utils/database/game' import { answer } from '$lib/utils/database/experience'
export let myAnswer = '' export let myAnswer = ''
export let clear: false | true = false export let clear: false | true = false

View File

@ -6,12 +6,13 @@
import IconStar from '../../lib/svg/Star.svelte' import IconStar from '../../lib/svg/Star.svelte'
import IconPoint from '../../lib/svg/Point.svelte' import IconPoint from '../../lib/svg/Point.svelte'
import Loading from '../../lib/components/Common/Loading.svelte' import Loading from '../../lib/components/Common/Loading.svelte'
import { data } from '../../lib/stores/game' import { data } from '../../lib/stores/stores'
import GeolocateControl from '@beyonk/svelte-mapbox/src/lib/map/controls/GeolocateControl.svelte'
import Map from '../../lib/components/Map/Map.svelte' import Map from '../../lib/components/Map/Map.svelte'
import Renderer from './Forms/Renderer.svelte' import Renderer from './Forms/Renderer.svelte'
import Marker from '../../lib/components/Map/Marker.svelte' import Marker from '../../lib/components/Map/Marker.svelte'
import { onMount } from 'svelte' import { onMount } from 'svelte'
import { load } from '$lib/utils/database/game' import { load } from '$lib/utils/database/experience'
import { getLocationDataFromLatAndLong } from '$lib/utils/locations' import { getLocationDataFromLatAndLong } from '$lib/utils/locations'
import { navigate } from '$lib/router' import { navigate } from '$lib/router'
@ -21,8 +22,9 @@
try { try {
$data = await load(params.gameurl, 10, (preview) => { $data = await load(params.gameurl, 10, (preview) => {
$data = preview $data = preview
view = 'game-preview' view = 'experience-preview'
}) })
view = 'experience-preview'
} catch (error) { } catch (error) {
navigate('/error') navigate('/error')
} }
@ -33,19 +35,19 @@
?.slice(0, 8) ?.slice(0, 8)
?.map((q) => q.thumbnail)*/ ?.map((q) => q.thumbnail)*/
let view: 'game-play' | 'game-loading' | 'game-preview' = 'game-loading' let view: 'experience-play' | 'experience-loading' | 'experience-preview' = 'experience-loading'
//is user already in game //is user already in game
//const userInGame = JSON.parse(localStorage.getItem(location.pathname)) //const userInGame = JSON.parse(localStorage.getItem(location.pathname))
//$: if ($data && userInGame) view = 'game-play' //$: if ($data && userInGame) view = 'game-play'
</script> </script>
{#if view === 'game-loading'} {#if view === 'experience-loading'}
<h1 class="flex items-center justify-center flex-col"> <h1 class="flex items-center justify-center flex-col">
<span>Experience is loading...</span> <span>Experience is loading...</span>
<Loading /> <Loading />
</h1> </h1>
{:else if view === 'game-preview'} {:else if view === 'experience-preview'}
<Overlay shareData={{ url: window.location.href }} img={$data.ExpImage}> <Overlay shareData={{ url: window.location.href }} img={$data.ExpImage}>
<div> <div>
<span class="text-[36px]">{$data.ExpName}</span> <span class="text-[36px]">{$data.ExpName}</span>
@ -93,7 +95,7 @@
<Button on:click={() => (view = 'game-play')} primary>Hrát</Button> <Button on:click={() => (view = 'game-play')} primary>Hrát</Button>
{/if} {/if}
</Overlay> </Overlay>
{:else if view === 'game-play'} {:else if view === 'experience-play'}
<Renderer gameData={$data} /> <Renderer gameData={$data} />
{/if} {/if}

View File

@ -6,7 +6,7 @@
import Comparment from './Components/Comparment.svelte' //do budoucna bych to udělal pomocí komponent import Comparment from './Components/Comparment.svelte' //do budoucna bych to udělal pomocí komponent
import { onMount } from 'svelte' import { onMount } from 'svelte'
import Animation from './Components/Animation.svelte' import Animation from './Components/Animation.svelte'
import { getExpiriences } from '$lib/utils/database/game' import { getExperiences } from '$lib/utils/database/experience'
import Loading from '$lib/components/Common/Loading.svelte' import Loading from '$lib/components/Common/Loading.svelte'
let fitstTime = false let fitstTime = false
@ -45,12 +45,12 @@
<Categories /> <Categories />
{#await getExpiriences()} {#await getExperiences()}
<div class="w-full h-24 flex items-center justify-center"> <div class="w-full h-24 flex items-center justify-center">
<Loading /> <Loading />
</div> </div>
{:then expiriences} {:then experiences}
<Comparment items={expiriences} /> <Comparment items={experiences} />
{/await} {/await}
{:else} {:else}
<div class="content"> <div class="content">

View File

@ -4,7 +4,7 @@
import LocationRequest from '$lib/components/Map/LocationRequest.svelte' import LocationRequest from '$lib/components/Map/LocationRequest.svelte'
import Marker from '$lib/components/Map/Marker.svelte' import Marker from '$lib/components/Map/Marker.svelte'
import { navigate } from '$lib/router' import { navigate } from '$lib/router'
import { getExpiriencesAsStore } from '$lib/utils/database/game' import { getExpiriencesAsStore } from '$lib/utils/database/experience'
import { onMount } from 'svelte' import { onMount } from 'svelte'
let user: { lat: number; lng: number } = { lat: 0, lng: 0 } let user: { lat: number; lng: number } = { lat: 0, lng: 0 }

View File

@ -0,0 +1,59 @@
<script lang="ts">
import Loading from './../../lib/components/Common/Loading.svelte';
// Import necessary modules and components
import { user } from '$lib/appwrite';
import collections from '$lib/collections';
import Loading from '$lib/components/Common/Loading.svelte';
import Category2InRow from '$lib/components/categories/Category2InRow.svelte';
import Category3InRow from '$lib/components/categories/Category3InRow.svelte';
import { getPreferences, addSelectedPreferences } from '$lib/utils/database/preferences';
import { navigate } from '$lib/router'
import { onMount } from 'svelte';
// Define a variable to store the preferences
let preferences = [];
// Define a variable to store the selected preferences
let selectedPreferences = [];
onMount(async () => {
preferences = await getPreferences();
});
function updateSelectedPreferences(preference) {
if (selectedPreferences.includes(preference)) {
selectedPreferences = selectedPreferences.filter((item) => item !== preference);
} else {
selectedPreferences = [...selectedPreferences, preference];
}
}
// Define a function to handle the form submission
async function submitPreferences() {
await addSelectedPreferences(user, selectedPreferences);
selectedPreferences = [];
}
</script>
{#if preferences.length > 0}
<div class="preferences-page">
<div class="progress-bar"></div>
<h2>What are your interests?</h2>
<Category3InRow
preferences={preferences.slice(0, 3)}
on:preferenceSelect={updateSelectedPreferences}
/>
<h2>Who do you like to travel with?</h2>
<Category2InRow
preferences={preferences.slice(3, 5)}
on:preferenceSelect={updateSelectedPreferences}
/>
<h2>What brought you to our app?</h2>
<Category3InRow
preferences={preferences.slice(5)}
on:preferenceSelect={updateSelectedPreferences}
/>
<button on:click={submitPreferences}>Submit Preferences</button>
</div>
{:else}
<Loading>
{/if}

View File

@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import Interests from "$lib/components/Interests/Interests.svelte" import Interests from "$lib/components/Categories/interests.svelte"
let current_state = 1 let current_state = 1
</script> </script>