Skip to content
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

Add game dashboard on home page and project manager #5963

Merged
merged 38 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
990f35b
Transfer responsibility to fetch games to the parent of GamesList
AlexandreSi Nov 23, 2023
78db44c
Add search bar on Games list
AlexandreSi Nov 23, 2023
9b40b99
Add GamesList to Manage section
AlexandreSi Nov 24, 2023
c6279ff
Add item menu in home page header
AlexandreSi Nov 24, 2023
13dd155
Add login/signup component on Manage section if user not logged in
AlexandreSi Nov 24, 2023
7f1e07e
Add message when no games
AlexandreSi Nov 24, 2023
04e0df3
Update games to display on games changes
AlexandreSi Nov 24, 2023
73db052
Add placeholder in search bar
AlexandreSi Nov 24, 2023
b8e9ed4
Display back action when no title
AlexandreSi Nov 24, 2023
966e12b
Add game details to homepage without using a dialog
AlexandreSi Nov 24, 2023
2b6a51e
Remove shortcuts reminder component
AlexandreSi Nov 24, 2023
8bdd9e9
Add info on Games dashboard in the profile dialog
AlexandreSi Nov 24, 2023
4306579
Use new icons and divide settings into project and game ones
AlexandreSi Nov 24, 2023
1f610cf
Add GamesDashboardInfo component
AlexandreSi Nov 24, 2023
00c80f9
Send analytics to know how users display the game details
AlexandreSi Nov 24, 2023
aceff8a
Adapt games dashboard project manager list item if user has games
AlexandreSi Nov 27, 2023
ad33fc9
Refactor ProjectManager into functional component
AlexandreSi Nov 27, 2023
2d78934
Move games fetching logic to project manager
AlexandreSi Nov 27, 2023
fb32f47
Open game details when clicking on Games dashboard from project manager
AlexandreSi Nov 27, 2023
d298a96
Prettier
AlexandreSi Nov 27, 2023
28ceb2b
Improve game details buttons layout on mobile
AlexandreSi Nov 27, 2023
46d0428
Fix overflowing game details
AlexandreSi Nov 27, 2023
814dd47
Remove useless fragments
AlexandreSi Nov 27, 2023
48d6f0e
Create Highlighting Tooltip component
AlexandreSi Nov 28, 2023
dcbe211
Do not display tooltip if in app tutorial is running
AlexandreSi Nov 28, 2023
e5b4933
Add hook to handle new features display logic
AlexandreSi Nov 28, 2023
5437f82
Display Games Dashboard tooltip on project manager opening
AlexandreSi Nov 28, 2023
bdf9038
Add missing ids
AlexandreSi Nov 28, 2023
f2cdb28
Display Games Dashboard tooltip on home page menu
AlexandreSi Nov 28, 2023
d58e2ef
Fix tooltip content and links
AlexandreSi Nov 28, 2023
18d5d4d
Review changes
AlexandreSi Nov 28, 2023
0b64e9b
Fix on game updated logic
AlexandreSi Nov 28, 2023
c1457e1
Use show alert
AlexandreSi Nov 28, 2023
dfd00e8
Use fuse js to search in user games
AlexandreSi Nov 28, 2023
856652c
Prettier
AlexandreSi Nov 28, 2023
793f232
Review changes
AlexandreSi Nov 28, 2023
0283868
Display manage tab when url requests for games dashboard view
AlexandreSi Nov 29, 2023
db88fc3
Simplify games updating logic
AlexandreSi Nov 29, 2023
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 newIDE/app/src/GameDashboard/GameCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
type Game,
} from '../Utils/GDevelopServices/Game';
import Window from '../Utils/Window';
import { type GameDetailsTab } from './GameDetailsDialog';
import { type GameDetailsTab } from './GameDetails';
import { showErrorBox } from '../UI/Messages/MessageBox';
import BackgroundText from '../UI/BackgroundText';
import Card from '../UI/Card';
Expand Down
Loading