Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
43d6d2d
GH-365: [feat] UI template for Gifted Chat library, might have to cha…
JRB958 Feb 28, 2025
bb03a71
add the library back to package.json
JRB958 Mar 1, 2025
a711aad
GH-365: [Feat] Initial commit
DanDuguay Mar 6, 2025
61a14b7
GH-365: [Feat] Connecting to the websocket with authorization and sub…
DanDuguay Mar 24, 2025
1231556
GH-365: [Feat] Sending messages works
DanDuguay Mar 24, 2025
93675d9
GH-365: [feat] Getting started on frontend
Mar 28, 2025
47609e4
GH-365: [refactor] Add messaging types to message.ts
Mar 28, 2025
c9ed02b
GH-365: [feat] Create a chat from a friend's profile page, doesn't ro…
Mar 28, 2025
a37ac8b
GH-365: [refactor] Some temporary cleanups
Mar 28, 2025
6191220
GH-365: [feat] Route to chatroom from friend user profile and fix tab…
Mar 29, 2025
0bdc880
GH-365: [feat] Starter code for creating a group chat
Mar 29, 2025
b4e4bff
GH-365: [feat] Customize the list of friends inside the modal to matc…
Mar 29, 2025
5e27670
GH-365: [feat] starter code for group/user chat creation
Mar 30, 2025
593042f
GH-365: [feat] leave/delete chatroom implemented, final touch ups
Mar 31, 2025
bba49ad
GH-365: [test] Test commit for git configuration
JRB958 Mar 31, 2025
359088f
GH-365: [feat] Add the french language to chat
JRB958 Mar 31, 2025
1c9f344
GH-365: [feat] Push for Nico
JRB958 Apr 1, 2025
40c4b24
GH-358: [feature] updated interfaces to implement new Member object
DanDuguay Apr 1, 2025
db3364f
GH-365: [feat] Work on messages UI
JRB958 Apr 1, 2025
ed31129
GH-365: [feat] Emergency commit to save work
JRB958 Apr 2, 2025
569c266
GH-365: [feat] chats work real time and chatlist updates every 3 seco…
JRB958 Apr 2, 2025
ea78805
add package-lock.json
JRB958 Apr 2, 2025
f7fc4be
GH-365: [feat] Minor changes for demo
JRB958 Apr 3, 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
2 changes: 1 addition & 1 deletion ClientApp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ web-build/
# macOS
.DS_Store

package-lock.json
# package-lock.json
# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli

Expand Down
9 changes: 5 additions & 4 deletions ClientApp/app/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,18 @@ export default function TabLayout() {
}}
/>
<Tabs.Screen
name="chats/index"
name="chats"
options={{
title: t('tab_layout.chats'),
headerShown: false,
tabBarIcon: ({ color }) => (
<FontAwesome size={24} name="comments" color={color} style={iconStyle} />
),
}}
listeners={{
tabPress: (e) => {
console.log('Chats tab pressed');
},
// tabPress: (e) => {
// console.log('Chats tab pressed');
// },
}}
/>
<Tabs.Screen
Expand Down
Loading