Draft
Conversation
srcs/nginx/src/components/atoms/BracketLines.tsx srcs/nginx/src/components/atoms/MatchNode.tsx srcs/nginx/src/components/atoms/PlayerCapsule.tsx srcs/nginx/src/components/molecules/TournamentBracket.tsx srcs/nginx/src/pages/TournamentPage.tsx srcs/nginx/src/types/types.ts
BREAKING_CHANGES: add components in one page to test layout info: i use mock data for the moment next: connect the component to the backend add navigation logic package-lock.json srcs/nginx/src/components/atoms/BracketLines.tsx srcs/nginx/src/components/atoms/CircleButton.tsx srcs/nginx/src/components/atoms/MatchNode.tsx srcs/nginx/src/components/atoms/NavDropDown.tsx srcs/nginx/src/components/atoms/PlayerCapsule.tsx srcs/nginx/src/components/atoms/TournamentList.tsx srcs/nginx/src/components/molecules/TournamentBracket.tsx srcs/nginx/src/pages/TournamentPage.tsx
adding translation for each element improve layout for mobile srcs/nginx/src/components/atoms/MatchNode.tsx srcs/nginx/src/components/atoms/PlayerCapsule.tsx srcs/nginx/src/components/atoms/TournamentList.tsx srcs/nginx/src/components/molecules/TournamentBracket.tsx srcs/nginx/src/locales/en/common.json srcs/nginx/src/locales/fr/common.json srcs/nginx/src/locales/tf/common.json srcs/nginx/src/pages/TournamentPage.tsx srcs/nginx/src/types/types.ts
update: checking the translation of all the componets i did checking css layout ans style next: Integrate components into navigation logic package-lock.json srcs/nginx/src/api/auth-api.ts srcs/nginx/src/components/atoms/CircleButton.tsx srcs/nginx/src/components/atoms/MatchNode.tsx srcs/nginx/src/components/atoms/PlayerCapsule.tsx srcs/nginx/src/components/atoms/TournamentList.tsx srcs/nginx/src/components/molecules/FriendsList.tsx srcs/nginx/src/components/molecules/TournamentBracket.tsx srcs/nginx/src/locales/en/common.json srcs/nginx/src/locales/fr/common.json srcs/nginx/src/locales/tf/common.json srcs/nginx/src/pages/TournamentPage.tsx srcs/nginx/src/types/types.ts
…ation to different screen sizes. Separation of components within their respective pages. Added navigation between tournament pages. package-lock.json srcs/nginx/src/App.tsx srcs/nginx/src/components/atoms/BracketLines.tsx srcs/nginx/src/components/atoms/CircleButton.tsx srcs/nginx/src/components/atoms/MatchNode.tsx srcs/nginx/src/components/atoms/TournamentList.tsx srcs/nginx/src/components/molecules/NavBar.tsx srcs/nginx/src/components/organisms/TournamentLayout.tsx srcs/nginx/src/locales/en/common.json srcs/nginx/src/locales/fr/common.json srcs/nginx/src/locales/tf/common.json srcs/nginx/src/pages/TournamentCreatePage.tsx srcs/nginx/src/pages/TournamentMenuPage.tsx srcs/nginx/src/pages/TournamentPage.tsx srcs/nginx/src/pages/TournamentsListPage.tsx srcs/nginx/src/router/TournamentRoutes.tsx
BREAKING_CHANGES: add three table in game.db match, tournament, tournament_player add request for adding and udating database next: add route and controller to interact with database package-lock.json srcs/.env.game.example srcs/game/package.json srcs/game/src/controllers/game.controller.ts srcs/game/src/core/game.database.ts srcs/game/src/routes/game.routes.ts srcs/game/src/types/game.dto.ts
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Draft sur la gestion des
donneesdu GameerDiagram TOURNAMENT { INTEGER id PK INTEGER creator_id TEXT status INTEGER created_at } MATCH { INTEGER id PK INTEGER tournament_id INTEGER player1 INTEGER player2 INTEGER score_player1 INTEGER score_player2 INTEGER winner_id TEXT round INTEGER created_at } TOURNAMENT_PLAYER { INTEGER tournament_id PK INTEGER player_id PK INTEGER final_position } TOURNAMENT ||--o{ MATCH : contains TOURNAMENT ||--o{ TOURNAMENT_PLAYER : has_players