Skip to content

feat: placeholder in a new chat #765

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d0546b6
feat: starting a new chat placholder init
skranee Apr 6, 2025
4e39a86
switch AChat.vue to composition API and fix ts errors
skranee Apr 6, 2025
53c08f0
fix ts error and change props declaration
skranee Apr 6, 2025
cf10972
fix: sender can be undefined
skranee Apr 6, 2025
97a8dad
fix: reloading a chat - placholder not visible
skranee Apr 8, 2025
432f5e7
resolve conflicts
skranee Apr 11, 2025
46cff7e
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee Apr 12, 2025
1888bb9
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee Apr 15, 2025
4740f63
feat: display getting public key in chatroom
skranee Apr 16, 2025
b476078
feat: notify if public key is missing
skranee Apr 17, 2025
9788df9
refactor: AChatForm to composition API
skranee Apr 17, 2025
6403cf6
hotfix: remove new chat from newChats when leaving chatroom
skranee Apr 17, 2025
a369071
refactor: add types and locale
skranee Apr 18, 2025
974f91b
feat: update placeholder logic and refactor code
skranee Apr 19, 2025
81c3bc0
refactor: declare function after component lifecycle stages
skranee Apr 19, 2025
36ee15b
refactor: fix bugs after last merge and finish placeholder logic
skranee Apr 24, 2025
176f207
resolve conflicts and do not do additional network requests
skranee Apr 25, 2025
b545dfc
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee Apr 29, 2025
a65e875
refactor: fix styles
skranee Apr 29, 2025
0571157
fix: autofocus in new chat and little styles corrections
skranee Apr 30, 2025
bf13a93
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee May 1, 2025
fdd9855
fix: floating bug with chats not loading
skranee May 1, 2025
e9ed80b
fix: reset state when logout
skranee May 2, 2025
8417473
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee May 4, 2025
bbd3f45
Merge branch 'dev' into feat/starting-new-chat-placeholder
skranee May 22, 2025
ddb6e94
minor refactor (add types, change to usetemplateref)
skranee May 22, 2025
f5bb809
resolve conflicts
skranee May 24, 2025
f71ea49
refactor: remove computed and rename var
skranee May 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/assets/styles/components/_chat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ $chat-avatar-size: 40px;

$scroll-bar-width: 4px;

$placeholder-height: 248px;

.a-chat {
display: block;
text-decoration: none;
Expand Down Expand Up @@ -53,6 +55,7 @@ $scroll-bar-width: 4px;
left: 0;
overflow-y: scroll;
overflow-x: hidden;
scrollbar-gutter: stable both-edges;
width: 100%;
height: 100%;
padding: 16px 16px 0 16px;
Expand Down
Loading