-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
723a5ba
commit 763215f
Showing
16 changed files
with
158 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<script lang="ts" setup> | ||
defineProps<{ | ||
title: string; | ||
}>(); | ||
</script> | ||
|
||
<template> | ||
<header class="w-full"> | ||
<h3> | ||
{{ title }} | ||
</h3> | ||
</header> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
enum DayTime { | ||
Morning = "Morning! ⛅", | ||
Afternoon = "Afternoon! 🌞", | ||
Evening = "Evening! ⛺", | ||
Night = "Night! 🌙", | ||
} | ||
|
||
export default DayTime; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
enum Language { | ||
Polish = "pl-PL", | ||
English = "en-EN", | ||
} | ||
|
||
export default Language; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
enum Status { | ||
Offline, | ||
Online, | ||
Away, | ||
DoNotDisturb, | ||
} | ||
|
||
export default Status; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
enum Theme { | ||
System, | ||
Light, | ||
Dark, | ||
} | ||
|
||
export default Theme; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Language from "@/types/language"; | ||
import Status from "@/types/status"; | ||
import Theme from "@/types/theme"; | ||
|
||
interface User { | ||
principal: any; | ||
username: string; | ||
avatar: string; | ||
language: Language; | ||
theme: Theme; | ||
status: Status; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts" setup></script> | ||
|
||
<template> | ||
<section> | ||
<h2>Conversation</h2> | ||
<p>{{ $route.params.id }}</p> | ||
</section> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<script lang="ts" setup> | ||
import HeaderModule from "@/components/module/settings/HeaderModule.vue"; | ||
import SearchBarModule from "@/components/module/SearchBarModule.vue"; | ||
</script> | ||
|
||
<template> | ||
<HeaderModule title="Settings" /> | ||
<SearchBarModule /> | ||
<h1>General</h1> | ||
<ul> | ||
<li>Your profile</li> | ||
<li>Online status</li> | ||
<li>Language</li> | ||
<li>Theme</li> | ||
</ul> | ||
|
||
<h1>Privacy</h1> | ||
<ul> | ||
<li>Blocked users</li> | ||
<li>Profile visibility</li> | ||
</ul> | ||
|
||
<h1>Security</h1> | ||
<ul> | ||
<li>Multi-factor authentication</li> | ||
<li>Your devices</li> | ||
<li>Account recovery</li> | ||
<li>Profile visibility</li> | ||
</ul> | ||
|
||
<h1>Notifications</h1> | ||
<ul> | ||
<li>Do not disturb Mode</li> | ||
<li>Notifications sound</li> | ||
<li>Vibrations</li> | ||
</ul> | ||
|
||
<h1>About</h1> | ||
<ul> | ||
<li>Terms of Service</li> | ||
<li>Privacy Policy</li> | ||
<li>App version</li> | ||
</ul> | ||
|
||
<h1>Advanced</h1> | ||
<ul> | ||
<li>Developer Mode</li> | ||
<li>Diagnostics data</li> | ||
</ul> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,6 @@ export default defineConfig({ | |
}, | ||
}, | ||
server: { | ||
port: 3000, | ||
port: 80, | ||
}, | ||
}); |