├── .circleci └── config.yml ├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── .python-version ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Makefile ├── README.md ├── backend ├── .app_template │ ├── __init__.py-tpl │ ├── admin │ │ └── __init__.py-tpl │ ├── apps.py-tpl │ ├── factories │ │ └── __init__.py-tpl │ ├── migrations │ │ └── __init__.py-tpl │ ├── models │ │ └── __init__.py-tpl │ ├── tests.py-tpl │ ├── urls.py-tpl │ └── views │ │ └── __init__.py-tpl ├── .gitignore ├── Dockerfile ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── decorators.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── burns.txt │ │ │ ├── generate_suggestions.py │ │ │ ├── get_new_streams.py │ │ │ ├── import_language.py │ │ │ ├── merge_players.py │ │ │ ├── merge_users.py │ │ │ ├── mock_player_joins.py │ │ │ ├── mock_player_submits_step.py │ │ │ ├── mock_player_votes.py │ │ │ ├── rundebugserver.py │ │ │ ├── write_avatars.py │ │ │ └── write_drawings.py │ ├── messages.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_email_as_username.py │ │ ├── 0003_room.py │ │ ├── 0004_player.py │ │ ├── 0005_room_admin.py │ │ ├── 0006_auto_20200328_1126.py │ │ ├── 0007_auto_20200328_2202.py │ │ ├── 0008_auto_20200328_2210.py │ │ ├── 0009_auto_20200328_2229.py │ │ ├── 0010_pad_sentence.py │ │ ├── 0011_auto_20200401_2043.py │ │ ├── 0012_game_pads_done.py │ │ ├── 0013_auto_20200404_1721.py │ │ ├── 0014_player_color.py │ │ ├── 0015_game_round_duration.py │ │ ├── 0016_vote.py │ │ ├── 0017_auto_20200422_2048.py │ │ ├── 0018_auto_20200427_2134.py │ │ ├── 0019_game_draw_own_word.py │ │ ├── 0019_room_friendly_name.py │ │ ├── 0020_merge_20200508_2011.py │ │ ├── 0021_auto_20200712_1538.py │ │ ├── 0022_game_player_manytomany.py │ │ ├── 0023_user_player.py │ │ ├── 0024_auto_20200807_2046.py │ │ ├── 0025_rebuild_player_game_participation.py │ │ ├── 0026_fix_player_created_at.py │ │ ├── 0027_fix_playergameparticipation_created_at.py │ │ ├── 0028_add_avatar_to_player.py │ │ ├── 0029_auto_20201114_1846.py │ │ ├── 0030_blacklist_suggestion.py │ │ ├── 0031_refactor_suggestions.py │ │ ├── 0032_delete_suggestion.py │ │ ├── 0033_player_total_score.py │ │ ├── 0034_add_unaccent.py │ │ ├── 0035_migrate_initial_steps.py │ │ ├── 0036_auto_20210108_1155.py │ │ ├── 0037_auto_20210108_1231.py │ │ ├── 0038_auto_20210108_1751.py │ │ ├── 0039_create_is_featured_column.py │ │ ├── 0040_auto_20210110_1626.py │ │ ├── 0041_game_controlled_reveal.py │ │ ├── 0042_add_drawing_urls.py │ │ ├── 0043_playergameparticipation_vote_count.py │ │ ├── 0044_remove_drawing_fields.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── service │ │ ├── auth_service.py │ │ ├── facebook_client.py │ │ ├── game_service.py │ │ └── room_service.py │ ├── signals.py │ ├── templates │ │ ├── general │ │ │ ├── desktop_access_body.txt │ │ │ └── desktop_access_subj.txt │ │ └── registration │ │ │ ├── password_reset_body.txt │ │ │ └── password_reset_subj.txt │ ├── urls.py │ ├── views │ │ ├── auth.py │ │ ├── game.py │ │ ├── general.py │ │ └── room_management.py │ ├── word_list_de.csv │ ├── word_list_en.csv │ └── word_list_fr.csv ├── docker │ ├── Dockerfile.prod │ └── entrypoint.sh ├── entrypoint.sh ├── infrastructure │ ├── alb.yml │ ├── autoscaling.yml │ ├── build_docker.sh │ ├── build_infrastructure.sh │ ├── cloudfront.yml │ ├── config-files │ │ ├── NotoColorEmoji.ttf │ │ ├── fonts.conf │ │ └── nginx.conf │ ├── deploy.sh │ ├── ecs-cluster.yml │ ├── ecs-repository.yml │ ├── ecs-services.yml │ ├── iam.yml │ ├── monitoring.yml │ ├── postgres.yml │ ├── s3.yml │ └── security-groups.yml ├── manage.py ├── passe_un_dessin │ ├── __init__.py │ ├── sentry.py │ ├── settings │ │ ├── base.py │ │ ├── dev.py │ │ └── prod.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── poetry.lock ├── pyproject.toml ├── suggestions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_copy_suggestions.py │ │ ├── 0003_add_german_language.py │ │ └── __init__.py │ ├── models.py │ ├── service.py │ └── views.py ├── tox.ini └── twitch │ ├── __init__.py │ ├── apps.py │ ├── client.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_twitch_id_unique.py │ ├── 0003_polling_stacktrace.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── service.py │ └── views.py ├── docker-compose.yml ├── docs └── installation.md ├── drawing-renderer ├── .gitignore ├── .prettierrc ├── .yarnrc.yml ├── Dockerfile ├── Dockerfile.prod ├── instrument.js ├── package.json ├── server.js └── yarn.lock ├── drawings └── .gitkeep ├── frontend ├── .dockerignore ├── .editorconfig ├── .env ├── .env.local ├── .env.production ├── .gitignore ├── .prettierrc ├── .yarnrc.yml ├── cypress.config.ts ├── cypress │ ├── eslint.config.mjs │ ├── fixtures │ │ └── example.json │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ └── e2e.js │ └── tests │ │ └── full-game.cy.js ├── eslint.config.mjs ├── index.html ├── infrastructure │ ├── build_infrastructure.sh │ ├── cloudfront.yml │ ├── deploy.sh │ └── s3.yml ├── package.json ├── public │ ├── .well-known │ │ └── security.txt │ ├── apple-touch-icon.png │ ├── favicon.png │ ├── manifest.json │ ├── reset.css │ ├── robots.txt │ ├── social-4x3.png │ └── social.png ├── src │ ├── App.tsx │ ├── assets │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── big-cross.svg │ │ ├── check.svg │ │ ├── cog.svg │ │ ├── cross.svg │ │ ├── default-avatar │ │ │ └── default-avatar.png │ │ ├── delete.svg │ │ ├── dice.svg │ │ ├── discord.svg │ │ ├── discord.webp │ │ ├── edit.svg │ │ ├── eraser-thick.svg │ │ ├── eraser-thin.svg │ │ ├── eye.svg │ │ ├── facebook.png │ │ ├── fast-forward.svg │ │ ├── fat-arrow-down.svg │ │ ├── fat-arrow.svg │ │ ├── full-background.svg │ │ ├── google.png │ │ ├── home.svg │ │ ├── instagram.svg │ │ ├── laptop-tablet.svg │ │ ├── launch.svg │ │ ├── leave.svg │ │ ├── link.svg │ │ ├── logo.png │ │ ├── paint.svg │ │ ├── pencil-thick.svg │ │ ├── pencil-thin.svg │ │ ├── person-add.svg │ │ ├── person-filled.svg │ │ ├── person.svg │ │ ├── podium-steps │ │ │ ├── index.ts │ │ │ ├── podium-1.png │ │ │ ├── podium-2.png │ │ │ └── podium-3.png │ │ ├── ranking.svg │ │ ├── redo.svg │ │ ├── refresh.svg │ │ ├── rule-backgrounds │ │ │ ├── index.ts │ │ │ ├── rule-1.png │ │ │ ├── rule-2.png │ │ │ ├── rule-3.png │ │ │ ├── rule-4.png │ │ │ ├── rule-5.png │ │ │ └── rule-6.png │ │ ├── sound-off.svg │ │ ├── sound-on.svg │ │ ├── thumb-down.svg │ │ ├── thumb-up.svg │ │ ├── timer.svg │ │ ├── trophy.svg │ │ ├── twitter.svg │ │ └── undo.svg │ ├── atoms │ │ ├── BareAnchor.ts │ │ ├── BareLink.ts │ │ ├── Button │ │ │ ├── Button.style.ts │ │ │ ├── Button.tsx │ │ │ └── index.ts │ │ ├── ChipButton.ts │ │ ├── FieldError │ │ │ ├── FieldError.style.ts │ │ │ ├── FieldError.tsx │ │ │ └── index.ts │ │ ├── FieldLabel.ts │ │ ├── Header2.ts │ │ ├── Header3.ts │ │ ├── Header4.ts │ │ ├── HomeButton │ │ │ ├── HomeButton.style.ts │ │ │ ├── HomeButton.tsx │ │ │ └── index.ts │ │ ├── HorizontalSeparator │ │ │ ├── HorizontalSeparator.style.ts │ │ │ ├── HorizontalSeparator.tsx │ │ │ └── index.ts │ │ ├── IconAndTooltip │ │ │ ├── IconAndTooltip.style.ts │ │ │ ├── IconAndTooltip.tsx │ │ │ └── index.ts │ │ ├── InputArrow.ts │ │ ├── InputLoader │ │ │ ├── InputLoader.style.ts │ │ │ ├── InputLoader.tsx │ │ │ └── index.ts │ │ ├── Loader │ │ │ ├── Loader.style.ts │ │ │ ├── Loader.tsx │ │ │ └── index.ts │ │ ├── PlayerChip.ts │ │ ├── PlayerChips.ts │ │ ├── SecondaryButton │ │ │ ├── SecondaryButton.ts │ │ │ └── index.ts │ │ ├── Spacer.ts │ │ ├── Switch │ │ │ ├── Switch.style.ts │ │ │ ├── Switch.tsx │ │ │ └── index.ts │ │ └── TextInput │ │ │ ├── TextInput.style.ts │ │ │ ├── TextInput.tsx │ │ │ └── index.ts │ ├── components │ │ ├── AppCrashFallback │ │ │ ├── AppCrashFallback.style.ts │ │ │ ├── AppCrashFallback.tsx │ │ │ └── index.ts │ │ ├── AuthPanel │ │ │ ├── AuthPanel.style.ts │ │ │ ├── AuthPanel.tsx │ │ │ ├── components │ │ │ │ ├── ClassicAccountCreationForm │ │ │ │ │ ├── ClassicAccountCreationForm.form.tsx │ │ │ │ │ ├── ClassicAccountCreationForm.style.ts │ │ │ │ │ ├── ClassicAccountCreationForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ClassicLoginForm │ │ │ │ │ ├── ClassicLoginForm.form.tsx │ │ │ │ │ ├── ClassicLoginForm.style.ts │ │ │ │ │ ├── ClassicLoginForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── LogInWithFacebook │ │ │ │ │ ├── LoginWithFacebook.style.ts │ │ │ │ │ ├── LoginWithFacebook.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── LogInWithGoogle │ │ │ │ │ ├── LoginWithGoogle.style.ts │ │ │ │ │ ├── LoginWithGoogle.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Avatar │ │ │ ├── Avatar.style.ts │ │ │ ├── Avatar.tsx │ │ │ └── index.ts │ │ ├── Canvas │ │ │ ├── BrushColorPicker │ │ │ │ ├── BrushColorPicker.style.ts │ │ │ │ ├── BrushColorPicker.tsx │ │ │ │ └── index.ts │ │ │ ├── BrushTypePicker │ │ │ │ ├── BrushTypePicker.style.ts │ │ │ │ ├── BrushTypePicker.tsx │ │ │ │ └── index.ts │ │ │ ├── CanvasActions │ │ │ │ ├── CanvasActions.style.ts │ │ │ │ ├── CanvasActions.tsx │ │ │ │ └── index.ts │ │ │ ├── CanvasDraw │ │ │ │ ├── CanvasDraw.style.ts │ │ │ │ ├── CanvasDraw.tsx │ │ │ │ ├── assets │ │ │ │ │ ├── beige-medium-point.png │ │ │ │ │ ├── beige-paint.png │ │ │ │ │ ├── beige-small-point.png │ │ │ │ │ ├── black-medium-point.png │ │ │ │ │ ├── black-paint.png │ │ │ │ │ ├── black-small-point.png │ │ │ │ │ ├── blue-medium-point.png │ │ │ │ │ ├── blue-paint.png │ │ │ │ │ ├── blue-small-point.png │ │ │ │ │ ├── brown-medium-point.png │ │ │ │ │ ├── brown-paint.png │ │ │ │ │ ├── brown-small-point.png │ │ │ │ │ ├── green-medium-point.png │ │ │ │ │ ├── green-paint.png │ │ │ │ │ ├── green-small-point.png │ │ │ │ │ ├── grey-medium-point.png │ │ │ │ │ ├── grey-paint.png │ │ │ │ │ ├── grey-small-point.png │ │ │ │ │ ├── lime-medium-point.png │ │ │ │ │ ├── lime-paint.png │ │ │ │ │ ├── lime-small-point.png │ │ │ │ │ ├── orange-medium-point.png │ │ │ │ │ ├── orange-paint.png │ │ │ │ │ ├── orange-small-point.png │ │ │ │ │ ├── pink-medium-point.png │ │ │ │ │ ├── pink-paint.png │ │ │ │ │ ├── pink-small-point.png │ │ │ │ │ ├── purple-medium-point.png │ │ │ │ │ ├── purple-paint.png │ │ │ │ │ ├── purple-small-point.png │ │ │ │ │ ├── red-medium-point.png │ │ │ │ │ ├── red-paint.png │ │ │ │ │ ├── red-small-point.png │ │ │ │ │ ├── skyblue-medium-point.png │ │ │ │ │ ├── skyblue-paint.png │ │ │ │ │ ├── skyblue-small-point.png │ │ │ │ │ ├── white-big-point.png │ │ │ │ │ ├── white-medium-point.png │ │ │ │ │ ├── white-paint.png │ │ │ │ │ ├── white-small-point.png │ │ │ │ │ ├── yellow-medium-point.png │ │ │ │ │ ├── yellow-paint.png │ │ │ │ │ └── yellow-small-point.png │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── Drawing │ │ │ │ ├── Drawing.style.ts │ │ │ │ ├── Drawing.tsx │ │ │ │ └── index.ts │ │ │ └── utils.ts │ │ ├── ErrorBoundary │ │ │ ├── ErrorBoundary.tsx │ │ │ └── index.ts │ │ ├── Modal │ │ │ ├── Modal.style.ts │ │ │ ├── Modal.tsx │ │ │ └── index.ts │ │ ├── RemainingPlayers │ │ │ ├── RemainingPlayers.style.ts │ │ │ ├── RemainingPlayers.tsx │ │ │ └── index.ts │ │ ├── Root │ │ │ ├── Root.style.ts │ │ │ ├── Root.tsx │ │ │ ├── components │ │ │ │ ├── MobileGate │ │ │ │ │ ├── MobileGate.style.ts │ │ │ │ │ ├── MobileGate.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SideButtons │ │ │ │ │ ├── SideButtons.style.ts │ │ │ │ │ ├── SideButtons.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── UserNameGate │ │ │ │ │ ├── UserNameGate.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── Scoreboard │ │ │ ├── Scoreboard.style.ts │ │ │ ├── Scoreboard.tsx │ │ │ └── index.ts │ ├── global.d.ts │ ├── index.tsx │ ├── layout │ │ ├── GameLayout │ │ │ ├── GameContainer.ts │ │ │ └── InnerGameContainer.ts │ │ └── HomeLayout │ │ │ ├── HomeLayout.style.ts │ │ │ ├── HomeLayout.tsx │ │ │ ├── components │ │ │ └── SocialButtons │ │ │ │ ├── SocialButtons.style.ts │ │ │ │ ├── SocialButtons.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ ├── modals │ │ ├── AdminModal │ │ │ ├── AdminModal.style.ts │ │ │ ├── AdminModal.tsx │ │ │ └── index.ts │ │ ├── AuthModal │ │ │ ├── AuthModal.tsx │ │ │ └── index.ts │ │ ├── CreateAccountModal │ │ │ ├── CreateAccountModal.style.ts │ │ │ ├── CreateAccountModal.tsx │ │ │ └── index.ts │ │ ├── LostPlayerModal │ │ │ ├── LostPlayerModal.style.ts │ │ │ ├── LostPlayerModal.tsx │ │ │ └── index.ts │ │ ├── NewGameModal │ │ │ ├── NewGameModal.style.ts │ │ │ ├── NewGameModal.tsx │ │ │ └── index.ts │ │ ├── PlayerModal │ │ │ ├── PlayerModal.style.ts │ │ │ ├── PlayerModal.tsx │ │ │ ├── components │ │ │ │ ├── PlayerForm │ │ │ │ │ ├── PlayerForm.form.tsx │ │ │ │ │ ├── PlayerForm.style.ts │ │ │ │ │ ├── PlayerForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── ScoreCard │ │ │ │ │ ├── ScoreCard.style.ts │ │ │ │ │ ├── ScoreCard.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── RankingModal │ │ │ ├── RankingModal.style.ts │ │ │ ├── RankingModal.tsx │ │ │ └── index.ts │ │ └── UserNameModal │ │ │ ├── UserNameModal.style.ts │ │ │ ├── UserNameModal.tsx │ │ │ └── index.ts │ ├── pages │ │ ├── Game │ │ │ ├── Game.tsx │ │ │ ├── components │ │ │ │ └── PlayerOrder │ │ │ │ │ ├── PlayerOrder.style.ts │ │ │ │ │ ├── PlayerOrder.tsx │ │ │ │ │ └── index.ts │ │ │ ├── events.ts │ │ │ └── index.ts │ │ ├── GameRecap │ │ │ ├── GameRecap.style.ts │ │ │ ├── GameRecap.tsx │ │ │ ├── components │ │ │ │ ├── DrawingRecap │ │ │ │ │ ├── DrawingRecap.style.ts │ │ │ │ │ ├── DrawingRecap.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PadRecap │ │ │ │ │ ├── PadRecap.style.ts │ │ │ │ │ ├── PadRecap.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PadTab │ │ │ │ │ ├── PadTab.style.ts │ │ │ │ │ ├── PadTab.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ReactionOverlay │ │ │ │ │ ├── ReactionOverlay.style.ts │ │ │ │ │ ├── ReactionOverlay.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RecapRemainingPlayers │ │ │ │ │ ├── RecapRemainingPlayers.style.ts │ │ │ │ │ ├── RecapRemainingPlayers.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RecapTab │ │ │ │ │ ├── RecapTab.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SentenceRecap │ │ │ │ │ ├── SentenceRecap.style.ts │ │ │ │ │ ├── SentenceRecap.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SingleGameScoreboard │ │ │ │ │ ├── SingleGameScoreboard.style.ts │ │ │ │ │ ├── SingleGameScoreboard.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── VoteResultsTab │ │ │ │ │ ├── VoteResultsTab.style.ts │ │ │ │ │ ├── VoteResultsTab.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── VotesOverlay │ │ │ │ │ ├── VotesOverlay.style.ts │ │ │ │ │ ├── VotesOverlay.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── GameReview │ │ │ ├── GameReview.tsx │ │ │ └── index.ts │ │ ├── Home │ │ │ ├── Home.style.ts │ │ │ ├── Home.tsx │ │ │ ├── components │ │ │ │ ├── FeaturedDrawing │ │ │ │ │ ├── FeaturedDrawing.style.ts │ │ │ │ │ ├── FeaturedDrawing.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PlayerGameForm │ │ │ │ │ ├── PlayerGameForm.style.ts │ │ │ │ │ ├── PlayerGameForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RulesModal │ │ │ │ │ ├── RulesModal.style.ts │ │ │ │ │ ├── RulesModal.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TwitchModal │ │ │ │ │ ├── TwitchModal.style.ts │ │ │ │ │ ├── TwitchModal.tsx │ │ │ │ │ ├── hooks.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── TwitchStream │ │ │ │ │ ├── TwitchStream.style.ts │ │ │ │ │ ├── TwitchStream.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Leaderboard │ │ │ ├── Leaderboard.style.ts │ │ │ ├── Leaderboard.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── PadStep │ │ │ ├── PadStep.tsx │ │ │ ├── components │ │ │ │ ├── DrawingToWordStep │ │ │ │ │ ├── DrawingToWordStep.style.ts │ │ │ │ │ ├── DrawingToWordStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── InitStep │ │ │ │ │ ├── InitStep.style.ts │ │ │ │ │ ├── InitStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SuggestionGenerator │ │ │ │ │ ├── SuggestionGenerator.style.ts │ │ │ │ │ ├── SuggestionGenerator.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Timer │ │ │ │ │ ├── Timer.style.ts │ │ │ │ │ ├── Timer.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── WordToDrawingStep │ │ │ │ │ ├── WordToDrawingStep.style.ts │ │ │ │ │ ├── WordToDrawingStep.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── PasswordReset │ │ │ ├── PasswordReset.style.ts │ │ │ ├── PasswordReset.tsx │ │ │ ├── components │ │ │ │ └── PasswordResetForm │ │ │ │ │ ├── InnerPasswordResetForm.tsx │ │ │ │ │ ├── PasswordResetForm.form.ts │ │ │ │ │ ├── PasswordResetForm.style.ts │ │ │ │ │ ├── PasswordResetForm.tsx │ │ │ │ │ └── index.ts │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── PasswordResetRequest │ │ │ ├── PasswordResetRequest.style.ts │ │ │ ├── PasswordResetRequest.tsx │ │ │ ├── components │ │ │ │ └── PasswordResetRequestForm │ │ │ │ │ ├── InnerPasswordResetRequestForm.tsx │ │ │ │ │ ├── PasswordResetRequestForm.form.ts │ │ │ │ │ ├── PasswordResetRequestForm.style.ts │ │ │ │ │ ├── PasswordResetRequestForm.tsx │ │ │ │ │ └── index.ts │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── PlayerDetails │ │ │ ├── PlayerDetails.style.ts │ │ │ ├── PlayerDetails.tsx │ │ │ └── index.ts │ │ ├── PrivacyPolicy │ │ │ ├── PrivacyPolicy.tsx │ │ │ └── index.ts │ │ ├── Room │ │ │ ├── Room.tsx │ │ │ ├── events.ts │ │ │ └── index.ts │ │ ├── RoomLobby │ │ │ ├── RoomLobby.style.ts │ │ │ ├── RoomLobby.tsx │ │ │ ├── components │ │ │ │ ├── ControlledRevealSwitch │ │ │ │ │ ├── ControlledRevealSwitch.style.ts │ │ │ │ │ ├── ControlledRevealSwitch.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DrawOwnWordSwitch │ │ │ │ │ ├── DrawOwnWordSwitch.style.ts │ │ │ │ │ ├── DrawOwnWordSwitch.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── RoundDurationPicker │ │ │ │ │ ├── RoundDurationPicker.style.ts │ │ │ │ │ ├── RoundDurationPicker.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── TermsAndConditions │ │ │ ├── TermsAndConditions.style.ts │ │ │ ├── TermsAndConditions.tsx │ │ │ └── index.ts │ │ └── VoteResults │ │ │ ├── VoteResults.style.ts │ │ │ ├── VoteResults.tsx │ │ │ ├── components │ │ │ ├── GameRoomScoreboard │ │ │ │ ├── GameRoomScoreboard.style.ts │ │ │ │ ├── GameRoomScoreboard.tsx │ │ │ │ └── index.ts │ │ │ ├── Podium │ │ │ │ ├── Podium.style.ts │ │ │ │ ├── Podium.tsx │ │ │ │ └── index.ts │ │ │ └── PodiumStep │ │ │ │ ├── PodiumStep.style.ts │ │ │ │ ├── PodiumStep.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ ├── redux │ │ ├── Game │ │ │ ├── constants.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── selectors.ts │ │ │ ├── slice.ts │ │ │ └── types.ts │ │ ├── Player │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── selectors.ts │ │ │ ├── slice.ts │ │ │ └── types.ts │ │ ├── Room │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── selectors.ts │ │ │ ├── slice.ts │ │ │ └── types.ts │ │ ├── Step │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── selectors.ts │ │ │ └── slice.ts │ │ ├── reducers.ts │ │ ├── store.ts │ │ ├── types.ts │ │ └── useSelector.ts │ ├── routes.tsx │ ├── services │ │ ├── game.service.ts │ │ ├── i18n │ │ │ └── intl.ts │ │ ├── networking │ │ │ ├── client.ts │ │ │ └── server-events.ts │ │ └── utils.ts │ ├── stylesheet.ts │ ├── translations │ │ ├── de.json │ │ ├── en.json │ │ └── fr.json │ ├── vite-env.d.ts │ └── window.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── p1d-mobile └── .gitignore ├── pushpin ├── .gitignore ├── Dockerfile ├── Dockerfile.prod ├── docker-entrypoint.sh ├── routes └── routes.prod └── renovate.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.0 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/README.md -------------------------------------------------------------------------------- /backend/.app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/.app_template/admin/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/admin/__init__.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/apps.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/apps.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/factories/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/factories/__init__.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/.app_template/models/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/models/__init__.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/tests.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/tests.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/urls.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/urls.py-tpl -------------------------------------------------------------------------------- /backend/.app_template/views/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.app_template/views/__init__.py-tpl -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/admin.py -------------------------------------------------------------------------------- /backend/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/apps.py -------------------------------------------------------------------------------- /backend/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/constants.py -------------------------------------------------------------------------------- /backend/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/decorators.py -------------------------------------------------------------------------------- /backend/core/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /backend/core/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /backend/core/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /backend/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/core/management/commands/burns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/burns.txt -------------------------------------------------------------------------------- /backend/core/management/commands/generate_suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/generate_suggestions.py -------------------------------------------------------------------------------- /backend/core/management/commands/get_new_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/get_new_streams.py -------------------------------------------------------------------------------- /backend/core/management/commands/import_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/import_language.py -------------------------------------------------------------------------------- /backend/core/management/commands/merge_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/merge_players.py -------------------------------------------------------------------------------- /backend/core/management/commands/merge_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/merge_users.py -------------------------------------------------------------------------------- /backend/core/management/commands/mock_player_joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/mock_player_joins.py -------------------------------------------------------------------------------- /backend/core/management/commands/mock_player_submits_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/mock_player_submits_step.py -------------------------------------------------------------------------------- /backend/core/management/commands/mock_player_votes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/mock_player_votes.py -------------------------------------------------------------------------------- /backend/core/management/commands/rundebugserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/rundebugserver.py -------------------------------------------------------------------------------- /backend/core/management/commands/write_avatars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/write_avatars.py -------------------------------------------------------------------------------- /backend/core/management/commands/write_drawings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/management/commands/write_drawings.py -------------------------------------------------------------------------------- /backend/core/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/messages.py -------------------------------------------------------------------------------- /backend/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/core/migrations/0002_user_email_as_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0002_user_email_as_username.py -------------------------------------------------------------------------------- /backend/core/migrations/0003_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0003_room.py -------------------------------------------------------------------------------- /backend/core/migrations/0004_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0004_player.py -------------------------------------------------------------------------------- /backend/core/migrations/0005_room_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0005_room_admin.py -------------------------------------------------------------------------------- /backend/core/migrations/0006_auto_20200328_1126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0006_auto_20200328_1126.py -------------------------------------------------------------------------------- /backend/core/migrations/0007_auto_20200328_2202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0007_auto_20200328_2202.py -------------------------------------------------------------------------------- /backend/core/migrations/0008_auto_20200328_2210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0008_auto_20200328_2210.py -------------------------------------------------------------------------------- /backend/core/migrations/0009_auto_20200328_2229.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0009_auto_20200328_2229.py -------------------------------------------------------------------------------- /backend/core/migrations/0010_pad_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0010_pad_sentence.py -------------------------------------------------------------------------------- /backend/core/migrations/0011_auto_20200401_2043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0011_auto_20200401_2043.py -------------------------------------------------------------------------------- /backend/core/migrations/0012_game_pads_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0012_game_pads_done.py -------------------------------------------------------------------------------- /backend/core/migrations/0013_auto_20200404_1721.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0013_auto_20200404_1721.py -------------------------------------------------------------------------------- /backend/core/migrations/0014_player_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0014_player_color.py -------------------------------------------------------------------------------- /backend/core/migrations/0015_game_round_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0015_game_round_duration.py -------------------------------------------------------------------------------- /backend/core/migrations/0016_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0016_vote.py -------------------------------------------------------------------------------- /backend/core/migrations/0017_auto_20200422_2048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0017_auto_20200422_2048.py -------------------------------------------------------------------------------- /backend/core/migrations/0018_auto_20200427_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0018_auto_20200427_2134.py -------------------------------------------------------------------------------- /backend/core/migrations/0019_game_draw_own_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0019_game_draw_own_word.py -------------------------------------------------------------------------------- /backend/core/migrations/0019_room_friendly_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0019_room_friendly_name.py -------------------------------------------------------------------------------- /backend/core/migrations/0020_merge_20200508_2011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0020_merge_20200508_2011.py -------------------------------------------------------------------------------- /backend/core/migrations/0021_auto_20200712_1538.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0021_auto_20200712_1538.py -------------------------------------------------------------------------------- /backend/core/migrations/0022_game_player_manytomany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0022_game_player_manytomany.py -------------------------------------------------------------------------------- /backend/core/migrations/0023_user_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0023_user_player.py -------------------------------------------------------------------------------- /backend/core/migrations/0024_auto_20200807_2046.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0024_auto_20200807_2046.py -------------------------------------------------------------------------------- /backend/core/migrations/0025_rebuild_player_game_participation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0025_rebuild_player_game_participation.py -------------------------------------------------------------------------------- /backend/core/migrations/0026_fix_player_created_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0026_fix_player_created_at.py -------------------------------------------------------------------------------- /backend/core/migrations/0027_fix_playergameparticipation_created_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0027_fix_playergameparticipation_created_at.py -------------------------------------------------------------------------------- /backend/core/migrations/0028_add_avatar_to_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0028_add_avatar_to_player.py -------------------------------------------------------------------------------- /backend/core/migrations/0029_auto_20201114_1846.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0029_auto_20201114_1846.py -------------------------------------------------------------------------------- /backend/core/migrations/0030_blacklist_suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0030_blacklist_suggestion.py -------------------------------------------------------------------------------- /backend/core/migrations/0031_refactor_suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0031_refactor_suggestions.py -------------------------------------------------------------------------------- /backend/core/migrations/0032_delete_suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0032_delete_suggestion.py -------------------------------------------------------------------------------- /backend/core/migrations/0033_player_total_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0033_player_total_score.py -------------------------------------------------------------------------------- /backend/core/migrations/0034_add_unaccent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0034_add_unaccent.py -------------------------------------------------------------------------------- /backend/core/migrations/0035_migrate_initial_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0035_migrate_initial_steps.py -------------------------------------------------------------------------------- /backend/core/migrations/0036_auto_20210108_1155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0036_auto_20210108_1155.py -------------------------------------------------------------------------------- /backend/core/migrations/0037_auto_20210108_1231.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0037_auto_20210108_1231.py -------------------------------------------------------------------------------- /backend/core/migrations/0038_auto_20210108_1751.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0038_auto_20210108_1751.py -------------------------------------------------------------------------------- /backend/core/migrations/0039_create_is_featured_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0039_create_is_featured_column.py -------------------------------------------------------------------------------- /backend/core/migrations/0040_auto_20210110_1626.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0040_auto_20210110_1626.py -------------------------------------------------------------------------------- /backend/core/migrations/0041_game_controlled_reveal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0041_game_controlled_reveal.py -------------------------------------------------------------------------------- /backend/core/migrations/0042_add_drawing_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0042_add_drawing_urls.py -------------------------------------------------------------------------------- /backend/core/migrations/0043_playergameparticipation_vote_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0043_playergameparticipation_vote_count.py -------------------------------------------------------------------------------- /backend/core/migrations/0044_remove_drawing_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/migrations/0044_remove_drawing_fields.py -------------------------------------------------------------------------------- /backend/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/models.py -------------------------------------------------------------------------------- /backend/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/serializers.py -------------------------------------------------------------------------------- /backend/core/service/auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/service/auth_service.py -------------------------------------------------------------------------------- /backend/core/service/facebook_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/service/facebook_client.py -------------------------------------------------------------------------------- /backend/core/service/game_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/service/game_service.py -------------------------------------------------------------------------------- /backend/core/service/room_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/service/room_service.py -------------------------------------------------------------------------------- /backend/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/signals.py -------------------------------------------------------------------------------- /backend/core/templates/general/desktop_access_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/templates/general/desktop_access_body.txt -------------------------------------------------------------------------------- /backend/core/templates/general/desktop_access_subj.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "email.desktop_access.subject" %} 2 | -------------------------------------------------------------------------------- /backend/core/templates/registration/password_reset_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/templates/registration/password_reset_body.txt -------------------------------------------------------------------------------- /backend/core/templates/registration/password_reset_subj.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "email.password_reset.subject" %} 2 | -------------------------------------------------------------------------------- /backend/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/urls.py -------------------------------------------------------------------------------- /backend/core/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/views/auth.py -------------------------------------------------------------------------------- /backend/core/views/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/views/game.py -------------------------------------------------------------------------------- /backend/core/views/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/views/general.py -------------------------------------------------------------------------------- /backend/core/views/room_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/views/room_management.py -------------------------------------------------------------------------------- /backend/core/word_list_de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/word_list_de.csv -------------------------------------------------------------------------------- /backend/core/word_list_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/word_list_en.csv -------------------------------------------------------------------------------- /backend/core/word_list_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/core/word_list_fr.csv -------------------------------------------------------------------------------- /backend/docker/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/docker/Dockerfile.prod -------------------------------------------------------------------------------- /backend/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/docker/entrypoint.sh -------------------------------------------------------------------------------- /backend/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/entrypoint.sh -------------------------------------------------------------------------------- /backend/infrastructure/alb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/alb.yml -------------------------------------------------------------------------------- /backend/infrastructure/autoscaling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/autoscaling.yml -------------------------------------------------------------------------------- /backend/infrastructure/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/build_docker.sh -------------------------------------------------------------------------------- /backend/infrastructure/build_infrastructure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/build_infrastructure.sh -------------------------------------------------------------------------------- /backend/infrastructure/cloudfront.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/cloudfront.yml -------------------------------------------------------------------------------- /backend/infrastructure/config-files/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/config-files/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /backend/infrastructure/config-files/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/config-files/fonts.conf -------------------------------------------------------------------------------- /backend/infrastructure/config-files/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/config-files/nginx.conf -------------------------------------------------------------------------------- /backend/infrastructure/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/deploy.sh -------------------------------------------------------------------------------- /backend/infrastructure/ecs-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/ecs-cluster.yml -------------------------------------------------------------------------------- /backend/infrastructure/ecs-repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/ecs-repository.yml -------------------------------------------------------------------------------- /backend/infrastructure/ecs-services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/ecs-services.yml -------------------------------------------------------------------------------- /backend/infrastructure/iam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/iam.yml -------------------------------------------------------------------------------- /backend/infrastructure/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/monitoring.yml -------------------------------------------------------------------------------- /backend/infrastructure/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/postgres.yml -------------------------------------------------------------------------------- /backend/infrastructure/s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/s3.yml -------------------------------------------------------------------------------- /backend/infrastructure/security-groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/infrastructure/security-groups.yml -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/passe_un_dessin/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/sentry.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/settings/base.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/settings/dev.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/settings/prod.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/passe_un_dessin/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/tests/test_views.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/urls.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/views.py -------------------------------------------------------------------------------- /backend/passe_un_dessin/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/passe_un_dessin/wsgi.py -------------------------------------------------------------------------------- /backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/poetry.lock -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/suggestions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/suggestions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/admin.py -------------------------------------------------------------------------------- /backend/suggestions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/apps.py -------------------------------------------------------------------------------- /backend/suggestions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/suggestions/migrations/0002_copy_suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/migrations/0002_copy_suggestions.py -------------------------------------------------------------------------------- /backend/suggestions/migrations/0003_add_german_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/migrations/0003_add_german_language.py -------------------------------------------------------------------------------- /backend/suggestions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/suggestions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/models.py -------------------------------------------------------------------------------- /backend/suggestions/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/service.py -------------------------------------------------------------------------------- /backend/suggestions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/suggestions/views.py -------------------------------------------------------------------------------- /backend/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/tox.ini -------------------------------------------------------------------------------- /backend/twitch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/twitch/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/apps.py -------------------------------------------------------------------------------- /backend/twitch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/client.py -------------------------------------------------------------------------------- /backend/twitch/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/twitch/migrations/0002_twitch_id_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/migrations/0002_twitch_id_unique.py -------------------------------------------------------------------------------- /backend/twitch/migrations/0003_polling_stacktrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/migrations/0003_polling_stacktrace.py -------------------------------------------------------------------------------- /backend/twitch/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/twitch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/models.py -------------------------------------------------------------------------------- /backend/twitch/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/serializers.py -------------------------------------------------------------------------------- /backend/twitch/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/service.py -------------------------------------------------------------------------------- /backend/twitch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/backend/twitch/views.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/docs/installation.md -------------------------------------------------------------------------------- /drawing-renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/.gitignore -------------------------------------------------------------------------------- /drawing-renderer/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/.prettierrc -------------------------------------------------------------------------------- /drawing-renderer/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /drawing-renderer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/Dockerfile -------------------------------------------------------------------------------- /drawing-renderer/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/Dockerfile.prod -------------------------------------------------------------------------------- /drawing-renderer/instrument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/instrument.js -------------------------------------------------------------------------------- /drawing-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/package.json -------------------------------------------------------------------------------- /drawing-renderer/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/server.js -------------------------------------------------------------------------------- /drawing-renderer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/drawing-renderer/yarn.lock -------------------------------------------------------------------------------- /drawings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | VITE_BACKEND_HOST= 2 | VITE_SENTRY_DSN=https://e8ec4c60a1d04a1aabe695bcf7d290ab@o473402.ingest.sentry.io/5612655 3 | -------------------------------------------------------------------------------- /frontend/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.env.local -------------------------------------------------------------------------------- /frontend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.env.production -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/plugins/index.js -------------------------------------------------------------------------------- /frontend/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/support/commands.js -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/support/e2e.js -------------------------------------------------------------------------------- /frontend/cypress/tests/full-game.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/cypress/tests/full-game.cy.js -------------------------------------------------------------------------------- /frontend/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/infrastructure/build_infrastructure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/infrastructure/build_infrastructure.sh -------------------------------------------------------------------------------- /frontend/infrastructure/cloudfront.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/infrastructure/cloudfront.yml -------------------------------------------------------------------------------- /frontend/infrastructure/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/infrastructure/deploy.sh -------------------------------------------------------------------------------- /frontend/infrastructure/s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/infrastructure/s3.yml -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/.well-known/security.txt -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/favicon.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/reset.css -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /frontend/public/social-4x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/social-4x3.png -------------------------------------------------------------------------------- /frontend/public/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/public/social.png -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/arrow-left.svg -------------------------------------------------------------------------------- /frontend/src/assets/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/arrow-right.svg -------------------------------------------------------------------------------- /frontend/src/assets/big-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/big-cross.svg -------------------------------------------------------------------------------- /frontend/src/assets/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/check.svg -------------------------------------------------------------------------------- /frontend/src/assets/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/cog.svg -------------------------------------------------------------------------------- /frontend/src/assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/cross.svg -------------------------------------------------------------------------------- /frontend/src/assets/default-avatar/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/default-avatar/default-avatar.png -------------------------------------------------------------------------------- /frontend/src/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/delete.svg -------------------------------------------------------------------------------- /frontend/src/assets/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/dice.svg -------------------------------------------------------------------------------- /frontend/src/assets/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/discord.svg -------------------------------------------------------------------------------- /frontend/src/assets/discord.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/discord.webp -------------------------------------------------------------------------------- /frontend/src/assets/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/edit.svg -------------------------------------------------------------------------------- /frontend/src/assets/eraser-thick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/eraser-thick.svg -------------------------------------------------------------------------------- /frontend/src/assets/eraser-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/eraser-thin.svg -------------------------------------------------------------------------------- /frontend/src/assets/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/eye.svg -------------------------------------------------------------------------------- /frontend/src/assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/facebook.png -------------------------------------------------------------------------------- /frontend/src/assets/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/fast-forward.svg -------------------------------------------------------------------------------- /frontend/src/assets/fat-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/fat-arrow-down.svg -------------------------------------------------------------------------------- /frontend/src/assets/fat-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/fat-arrow.svg -------------------------------------------------------------------------------- /frontend/src/assets/full-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/full-background.svg -------------------------------------------------------------------------------- /frontend/src/assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/google.png -------------------------------------------------------------------------------- /frontend/src/assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/home.svg -------------------------------------------------------------------------------- /frontend/src/assets/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/instagram.svg -------------------------------------------------------------------------------- /frontend/src/assets/laptop-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/laptop-tablet.svg -------------------------------------------------------------------------------- /frontend/src/assets/launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/launch.svg -------------------------------------------------------------------------------- /frontend/src/assets/leave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/leave.svg -------------------------------------------------------------------------------- /frontend/src/assets/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/link.svg -------------------------------------------------------------------------------- /frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/paint.svg -------------------------------------------------------------------------------- /frontend/src/assets/pencil-thick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/pencil-thick.svg -------------------------------------------------------------------------------- /frontend/src/assets/pencil-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/pencil-thin.svg -------------------------------------------------------------------------------- /frontend/src/assets/person-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/person-add.svg -------------------------------------------------------------------------------- /frontend/src/assets/person-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/person-filled.svg -------------------------------------------------------------------------------- /frontend/src/assets/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/person.svg -------------------------------------------------------------------------------- /frontend/src/assets/podium-steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/podium-steps/index.ts -------------------------------------------------------------------------------- /frontend/src/assets/podium-steps/podium-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/podium-steps/podium-1.png -------------------------------------------------------------------------------- /frontend/src/assets/podium-steps/podium-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/podium-steps/podium-2.png -------------------------------------------------------------------------------- /frontend/src/assets/podium-steps/podium-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/podium-steps/podium-3.png -------------------------------------------------------------------------------- /frontend/src/assets/ranking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/ranking.svg -------------------------------------------------------------------------------- /frontend/src/assets/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/redo.svg -------------------------------------------------------------------------------- /frontend/src/assets/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/refresh.svg -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/index.ts -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-1.png -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-2.png -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-3.png -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-4.png -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-5.png -------------------------------------------------------------------------------- /frontend/src/assets/rule-backgrounds/rule-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/rule-backgrounds/rule-6.png -------------------------------------------------------------------------------- /frontend/src/assets/sound-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/sound-off.svg -------------------------------------------------------------------------------- /frontend/src/assets/sound-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/sound-on.svg -------------------------------------------------------------------------------- /frontend/src/assets/thumb-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/thumb-down.svg -------------------------------------------------------------------------------- /frontend/src/assets/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/thumb-up.svg -------------------------------------------------------------------------------- /frontend/src/assets/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/timer.svg -------------------------------------------------------------------------------- /frontend/src/assets/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/trophy.svg -------------------------------------------------------------------------------- /frontend/src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/twitter.svg -------------------------------------------------------------------------------- /frontend/src/assets/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/assets/undo.svg -------------------------------------------------------------------------------- /frontend/src/atoms/BareAnchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/BareAnchor.ts -------------------------------------------------------------------------------- /frontend/src/atoms/BareLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/BareLink.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Button/Button.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Button/Button.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Button/Button.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/ChipButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/ChipButton.ts -------------------------------------------------------------------------------- /frontend/src/atoms/FieldError/FieldError.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/FieldError/FieldError.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/FieldError/FieldError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/FieldError/FieldError.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/FieldError/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FieldError'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/FieldLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/FieldLabel.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Header2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Header2.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Header3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Header3.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Header4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Header4.ts -------------------------------------------------------------------------------- /frontend/src/atoms/HomeButton/HomeButton.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/HomeButton/HomeButton.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/HomeButton/HomeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/HomeButton/HomeButton.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/HomeButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HomeButton'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/HorizontalSeparator/HorizontalSeparator.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/HorizontalSeparator/HorizontalSeparator.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/HorizontalSeparator/HorizontalSeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/HorizontalSeparator/HorizontalSeparator.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/HorizontalSeparator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HorizontalSeparator'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/IconAndTooltip/IconAndTooltip.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/IconAndTooltip/IconAndTooltip.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/IconAndTooltip/IconAndTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/IconAndTooltip/IconAndTooltip.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/IconAndTooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './IconAndTooltip'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/InputArrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/InputArrow.ts -------------------------------------------------------------------------------- /frontend/src/atoms/InputLoader/InputLoader.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/InputLoader/InputLoader.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/InputLoader/InputLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/InputLoader/InputLoader.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/InputLoader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InputLoader'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/Loader/Loader.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Loader/Loader.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Loader/Loader.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Loader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Loader'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/PlayerChip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/PlayerChip.ts -------------------------------------------------------------------------------- /frontend/src/atoms/PlayerChips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/PlayerChips.ts -------------------------------------------------------------------------------- /frontend/src/atoms/SecondaryButton/SecondaryButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/SecondaryButton/SecondaryButton.ts -------------------------------------------------------------------------------- /frontend/src/atoms/SecondaryButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SecondaryButton'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/Spacer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Spacer.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Switch/Switch.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Switch/Switch.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/Switch/Switch.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Switch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Switch'; 2 | -------------------------------------------------------------------------------- /frontend/src/atoms/TextInput/TextInput.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/TextInput/TextInput.style.ts -------------------------------------------------------------------------------- /frontend/src/atoms/TextInput/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/atoms/TextInput/TextInput.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/TextInput/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TextInput'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AppCrashFallback/AppCrashFallback.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AppCrashFallback/AppCrashFallback.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AppCrashFallback/AppCrashFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AppCrashFallback/AppCrashFallback.tsx -------------------------------------------------------------------------------- /frontend/src/components/AppCrashFallback/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AppCrashFallback'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/AuthPanel.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/AuthPanel.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/AuthPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/AuthPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.form.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/ClassicAccountCreationForm.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicAccountCreationForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ClassicAccountCreationForm.form'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.form.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/ClassicLoginForm/ClassicLoginForm.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/ClassicLoginForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ClassicLoginForm.form'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithFacebook/LoginWithFacebook.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/LogInWithFacebook/LoginWithFacebook.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithFacebook/LoginWithFacebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/LogInWithFacebook/LoginWithFacebook.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithFacebook/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LoginWithFacebook'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithGoogle/LoginWithGoogle.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/LogInWithGoogle/LoginWithGoogle.style.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithGoogle/LoginWithGoogle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/AuthPanel/components/LogInWithGoogle/LoginWithGoogle.tsx -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/components/LogInWithGoogle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LoginWithGoogle'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AuthPanel/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AuthPanel'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Avatar/Avatar.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Avatar/Avatar.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /frontend/src/components/Avatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Avatar'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushColorPicker/BrushColorPicker.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/BrushColorPicker/BrushColorPicker.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushColorPicker/BrushColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/BrushColorPicker/BrushColorPicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushColorPicker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BrushColorPicker'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushTypePicker/BrushTypePicker.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/BrushTypePicker/BrushTypePicker.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushTypePicker/BrushTypePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/BrushTypePicker/BrushTypePicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/Canvas/BrushTypePicker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BrushTypePicker'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasActions/CanvasActions.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasActions/CanvasActions.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasActions/CanvasActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasActions/CanvasActions.tsx -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasActions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CanvasActions'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/CanvasDraw.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/CanvasDraw.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/CanvasDraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/CanvasDraw.tsx -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/beige-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/beige-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/beige-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/beige-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/beige-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/beige-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/black-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/black-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/black-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/black-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/black-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/black-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/blue-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/blue-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/blue-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/blue-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/blue-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/blue-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/brown-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/brown-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/brown-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/brown-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/brown-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/brown-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/green-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/green-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/green-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/green-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/green-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/green-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/grey-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/grey-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/grey-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/grey-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/grey-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/grey-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/lime-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/lime-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/lime-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/lime-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/lime-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/lime-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/orange-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/orange-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/orange-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/orange-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/orange-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/orange-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/pink-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/pink-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/pink-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/pink-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/pink-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/pink-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/purple-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/purple-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/purple-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/purple-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/purple-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/purple-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/red-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/red-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/red-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/red-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/red-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/red-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/skyblue-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/skyblue-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/skyblue-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/skyblue-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/skyblue-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/skyblue-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/white-big-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/white-big-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/white-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/white-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/white-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/white-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/white-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/white-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/yellow-medium-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/yellow-medium-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/yellow-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/yellow-paint.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/assets/yellow-small-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/assets/yellow-small-point.png -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CanvasDraw'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/CanvasDraw/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/CanvasDraw/utils.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/Drawing/Drawing.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/Drawing/Drawing.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Canvas/Drawing/Drawing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/Drawing/Drawing.tsx -------------------------------------------------------------------------------- /frontend/src/components/Canvas/Drawing/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Drawing'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Canvas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Canvas/utils.ts -------------------------------------------------------------------------------- /frontend/src/components/ErrorBoundary/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/ErrorBoundary/ErrorBoundary.tsx -------------------------------------------------------------------------------- /frontend/src/components/ErrorBoundary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ErrorBoundary'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Modal/Modal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Modal/Modal.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Modal'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/RemainingPlayers/RemainingPlayers.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/RemainingPlayers/RemainingPlayers.style.ts -------------------------------------------------------------------------------- /frontend/src/components/RemainingPlayers/RemainingPlayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/RemainingPlayers/RemainingPlayers.tsx -------------------------------------------------------------------------------- /frontend/src/components/RemainingPlayers/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RemainingPlayers'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Root/Root.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/Root.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Root/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/Root.tsx -------------------------------------------------------------------------------- /frontend/src/components/Root/components/MobileGate/MobileGate.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/components/MobileGate/MobileGate.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Root/components/MobileGate/MobileGate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/components/MobileGate/MobileGate.tsx -------------------------------------------------------------------------------- /frontend/src/components/Root/components/MobileGate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MobileGate'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Root/components/SideButtons/SideButtons.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/components/SideButtons/SideButtons.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Root/components/SideButtons/SideButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/components/SideButtons/SideButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/Root/components/SideButtons/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideButtons'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Root/components/UserNameGate/UserNameGate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Root/components/UserNameGate/UserNameGate.tsx -------------------------------------------------------------------------------- /frontend/src/components/Root/components/UserNameGate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UserNameGate'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Root/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Root'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Scoreboard/Scoreboard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Scoreboard/Scoreboard.style.ts -------------------------------------------------------------------------------- /frontend/src/components/Scoreboard/Scoreboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/components/Scoreboard/Scoreboard.tsx -------------------------------------------------------------------------------- /frontend/src/components/Scoreboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Scoreboard'; 2 | -------------------------------------------------------------------------------- /frontend/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/global.d.ts -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/layout/GameLayout/GameContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/GameLayout/GameContainer.ts -------------------------------------------------------------------------------- /frontend/src/layout/GameLayout/InnerGameContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/GameLayout/InnerGameContainer.ts -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/HomeLayout.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/HomeLayout/HomeLayout.style.ts -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/HomeLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/HomeLayout/HomeLayout.tsx -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/components/SocialButtons/SocialButtons.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/HomeLayout/components/SocialButtons/SocialButtons.style.ts -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/components/SocialButtons/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/layout/HomeLayout/components/SocialButtons/SocialButtons.tsx -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/components/SocialButtons/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SocialButtons'; 2 | -------------------------------------------------------------------------------- /frontend/src/layout/HomeLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HomeLayout'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/AdminModal/AdminModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/AdminModal/AdminModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/AdminModal/AdminModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/AdminModal/AdminModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/AdminModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdminModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/AuthModal/AuthModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/AuthModal/AuthModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/AuthModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AuthModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/CreateAccountModal/CreateAccountModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/CreateAccountModal/CreateAccountModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/CreateAccountModal/CreateAccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/CreateAccountModal/CreateAccountModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/CreateAccountModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CreateAccountModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/LostPlayerModal/LostPlayerModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/LostPlayerModal/LostPlayerModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/LostPlayerModal/LostPlayerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/LostPlayerModal/LostPlayerModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/LostPlayerModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LostPlayerModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/NewGameModal/NewGameModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/NewGameModal/NewGameModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/NewGameModal/NewGameModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/NewGameModal/NewGameModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/NewGameModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NewGameModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/PlayerModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/PlayerModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/PlayerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/PlayerModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.form.tsx -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/components/PlayerForm/PlayerForm.tsx -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/PlayerForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PlayerForm.form'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/ScoreCard/ScoreCard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/components/ScoreCard/ScoreCard.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/ScoreCard/ScoreCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/PlayerModal/components/ScoreCard/ScoreCard.tsx -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/components/ScoreCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScoreCard'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/PlayerModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PlayerModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/RankingModal/RankingModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/RankingModal/RankingModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/RankingModal/RankingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/RankingModal/RankingModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/RankingModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RankingModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/UserNameModal/UserNameModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/UserNameModal/UserNameModal.style.ts -------------------------------------------------------------------------------- /frontend/src/modals/UserNameModal/UserNameModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/modals/UserNameModal/UserNameModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/UserNameModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UserNameModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Game/Game.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Game/Game.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Game/components/PlayerOrder/PlayerOrder.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Game/components/PlayerOrder/PlayerOrder.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Game/components/PlayerOrder/PlayerOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Game/components/PlayerOrder/PlayerOrder.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Game/components/PlayerOrder/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PlayerOrder'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Game/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Game/events.ts -------------------------------------------------------------------------------- /frontend/src/pages/Game/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Game'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/GameRecap.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/GameRecap.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/GameRecap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/GameRecap.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/DrawingRecap/DrawingRecap.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/DrawingRecap/DrawingRecap.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/DrawingRecap/DrawingRecap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/DrawingRecap/DrawingRecap.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/DrawingRecap/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DrawingRecap'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadRecap/PadRecap.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/PadRecap/PadRecap.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadRecap/PadRecap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/PadRecap/PadRecap.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadRecap/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PadRecap'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadTab/PadTab.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/PadTab/PadTab.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadTab/PadTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/PadTab/PadTab.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/PadTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PadTab'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/ReactionOverlay/ReactionOverlay.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/ReactionOverlay/ReactionOverlay.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/ReactionOverlay/ReactionOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/ReactionOverlay/ReactionOverlay.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/ReactionOverlay/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ReactionOverlay'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/RecapRemainingPlayers/RecapRemainingPlayers.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/RecapRemainingPlayers/RecapRemainingPlayers.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/RecapRemainingPlayers/RecapRemainingPlayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/RecapRemainingPlayers/RecapRemainingPlayers.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/RecapRemainingPlayers/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RecapRemainingPlayers'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/RecapTab/RecapTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/RecapTab/RecapTab.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/RecapTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RecapTab'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SentenceRecap/SentenceRecap.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/SentenceRecap/SentenceRecap.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SentenceRecap/SentenceRecap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/SentenceRecap/SentenceRecap.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SentenceRecap/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SentenceRecap'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SingleGameScoreboard/SingleGameScoreboard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/SingleGameScoreboard/SingleGameScoreboard.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SingleGameScoreboard/SingleGameScoreboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/SingleGameScoreboard/SingleGameScoreboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/SingleGameScoreboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SingleGameScoreboard'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VoteResultsTab/VoteResultsTab.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/VoteResultsTab/VoteResultsTab.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VoteResultsTab/VoteResultsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/VoteResultsTab/VoteResultsTab.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VoteResultsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoteResultsTab'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VotesOverlay/VotesOverlay.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/VotesOverlay/VotesOverlay.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VotesOverlay/VotesOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameRecap/components/VotesOverlay/VotesOverlay.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/components/VotesOverlay/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VotesOverlay'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameRecap/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GameRecap'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/GameReview/GameReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/GameReview/GameReview.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GameReview/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GameReview'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/Home.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/Home.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/FeaturedDrawing/FeaturedDrawing.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/FeaturedDrawing/FeaturedDrawing.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/FeaturedDrawing/FeaturedDrawing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/FeaturedDrawing/FeaturedDrawing.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/FeaturedDrawing/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FeaturedDrawing'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/PlayerGameForm/PlayerGameForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/PlayerGameForm/PlayerGameForm.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/PlayerGameForm/PlayerGameForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/PlayerGameForm/PlayerGameForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/PlayerGameForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PlayerGameForm'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/RulesModal/RulesModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/RulesModal/RulesModal.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/RulesModal/RulesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/RulesModal/RulesModal.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/RulesModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RulesModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchModal/TwitchModal.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchModal/TwitchModal.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchModal/TwitchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchModal/TwitchModal.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchModal/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchModal/hooks.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TwitchModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchModal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchModal/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchStream/TwitchStream.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchStream/TwitchStream.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchStream/TwitchStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Home/components/TwitchStream/TwitchStream.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home/components/TwitchStream/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TwitchStream'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Home/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Home'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Leaderboard/Leaderboard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Leaderboard/Leaderboard.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/Leaderboard/Leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Leaderboard/Leaderboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Leaderboard/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Leaderboard/hooks.ts -------------------------------------------------------------------------------- /frontend/src/pages/Leaderboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Leaderboard'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Leaderboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Leaderboard/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/PadStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/PadStep.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/DrawingToWordStep/DrawingToWordStep.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/DrawingToWordStep/DrawingToWordStep.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/DrawingToWordStep/DrawingToWordStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/DrawingToWordStep/DrawingToWordStep.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/DrawingToWordStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DrawingToWordStep'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/InitStep/InitStep.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/InitStep/InitStep.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/InitStep/InitStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/InitStep/InitStep.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/InitStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InitStep'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/SuggestionGenerator/SuggestionGenerator.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/SuggestionGenerator/SuggestionGenerator.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/SuggestionGenerator/SuggestionGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/SuggestionGenerator/SuggestionGenerator.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/SuggestionGenerator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SuggestionGenerator'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/Timer/Timer.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/Timer/Timer.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/Timer/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/Timer/Timer.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/Timer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Timer'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/WordToDrawingStep/WordToDrawingStep.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/WordToDrawingStep/WordToDrawingStep.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/WordToDrawingStep/WordToDrawingStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PadStep/components/WordToDrawingStep/WordToDrawingStep.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/components/WordToDrawingStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WordToDrawingStep'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PadStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PadStep'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/PasswordReset.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/PasswordReset.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/PasswordReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/PasswordReset.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/components/PasswordResetForm/InnerPasswordResetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/components/PasswordResetForm/InnerPasswordResetForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.form.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/components/PasswordResetForm/PasswordResetForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/components/PasswordResetForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordResetForm'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordReset/hooks.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordReset/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordReset'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/PasswordResetRequest.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/PasswordResetRequest.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/PasswordResetRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/PasswordResetRequest.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/InnerPasswordResetRequestForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/InnerPasswordResetRequestForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.form.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/PasswordResetRequestForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/components/PasswordResetRequestForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordResetRequestForm'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PasswordResetRequest/hooks.ts -------------------------------------------------------------------------------- /frontend/src/pages/PasswordResetRequest/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordResetRequest'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PlayerDetails/PlayerDetails.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PlayerDetails/PlayerDetails.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/PlayerDetails/PlayerDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PlayerDetails/PlayerDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PlayerDetails/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PlayerDetails'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/PrivacyPolicy/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/PrivacyPolicy/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PrivacyPolicy/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PrivacyPolicy'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/Room/Room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Room/Room.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Room/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/Room/events.ts -------------------------------------------------------------------------------- /frontend/src/pages/Room/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Room'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/RoomLobby.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/RoomLobby.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/RoomLobby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/RoomLobby.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/ControlledRevealSwitch/ControlledRevealSwitch.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/ControlledRevealSwitch/ControlledRevealSwitch.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/ControlledRevealSwitch/ControlledRevealSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/ControlledRevealSwitch/ControlledRevealSwitch.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/ControlledRevealSwitch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ControlledRevealSwitch'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/DrawOwnWordSwitch/DrawOwnWordSwitch.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/DrawOwnWordSwitch/DrawOwnWordSwitch.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/DrawOwnWordSwitch/DrawOwnWordSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/DrawOwnWordSwitch/DrawOwnWordSwitch.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/DrawOwnWordSwitch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DrawOwnWordSwitch'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/RoundDurationPicker/RoundDurationPicker.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/RoundDurationPicker/RoundDurationPicker.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/RoundDurationPicker/RoundDurationPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/RoomLobby/components/RoundDurationPicker/RoundDurationPicker.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/components/RoundDurationPicker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RoundDurationPicker'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/RoomLobby/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RoomLobby'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/TermsAndConditions/TermsAndConditions.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/TermsAndConditions/TermsAndConditions.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/TermsAndConditions/TermsAndConditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/TermsAndConditions/TermsAndConditions.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TermsAndConditions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TermsAndConditions'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/VoteResults.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/VoteResults.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/VoteResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/VoteResults.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/GameRoomScoreboard/GameRoomScoreboard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/GameRoomScoreboard/GameRoomScoreboard.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/GameRoomScoreboard/GameRoomScoreboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/GameRoomScoreboard/GameRoomScoreboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/GameRoomScoreboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GameRoomScoreboard'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/Podium/Podium.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/Podium/Podium.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/Podium/Podium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/Podium/Podium.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/Podium/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Podium'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/PodiumStep/PodiumStep.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/PodiumStep/PodiumStep.style.ts -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/PodiumStep/PodiumStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/pages/VoteResults/components/PodiumStep/PodiumStep.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/components/PodiumStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PodiumStep'; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/VoteResults/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoteResults'; 2 | -------------------------------------------------------------------------------- /frontend/src/redux/Game/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/constants.ts -------------------------------------------------------------------------------- /frontend/src/redux/Game/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/hooks.ts -------------------------------------------------------------------------------- /frontend/src/redux/Game/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/index.ts -------------------------------------------------------------------------------- /frontend/src/redux/Game/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/selectors.ts -------------------------------------------------------------------------------- /frontend/src/redux/Game/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/slice.ts -------------------------------------------------------------------------------- /frontend/src/redux/Game/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Game/types.ts -------------------------------------------------------------------------------- /frontend/src/redux/Player/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Player/hooks.ts -------------------------------------------------------------------------------- /frontend/src/redux/Player/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Player/index.ts -------------------------------------------------------------------------------- /frontend/src/redux/Player/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Player/selectors.ts -------------------------------------------------------------------------------- /frontend/src/redux/Player/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Player/slice.ts -------------------------------------------------------------------------------- /frontend/src/redux/Player/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Player/types.ts -------------------------------------------------------------------------------- /frontend/src/redux/Room/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Room/hooks.ts -------------------------------------------------------------------------------- /frontend/src/redux/Room/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Room/index.ts -------------------------------------------------------------------------------- /frontend/src/redux/Room/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Room/selectors.ts -------------------------------------------------------------------------------- /frontend/src/redux/Room/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Room/slice.ts -------------------------------------------------------------------------------- /frontend/src/redux/Room/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Room/types.ts -------------------------------------------------------------------------------- /frontend/src/redux/Step/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Step/hooks.ts -------------------------------------------------------------------------------- /frontend/src/redux/Step/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Step/index.ts -------------------------------------------------------------------------------- /frontend/src/redux/Step/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Step/selectors.ts -------------------------------------------------------------------------------- /frontend/src/redux/Step/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/Step/slice.ts -------------------------------------------------------------------------------- /frontend/src/redux/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/reducers.ts -------------------------------------------------------------------------------- /frontend/src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/store.ts -------------------------------------------------------------------------------- /frontend/src/redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/types.ts -------------------------------------------------------------------------------- /frontend/src/redux/useSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/redux/useSelector.ts -------------------------------------------------------------------------------- /frontend/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/routes.tsx -------------------------------------------------------------------------------- /frontend/src/services/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/services/game.service.ts -------------------------------------------------------------------------------- /frontend/src/services/i18n/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/services/i18n/intl.ts -------------------------------------------------------------------------------- /frontend/src/services/networking/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/services/networking/client.ts -------------------------------------------------------------------------------- /frontend/src/services/networking/server-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/services/networking/server-events.ts -------------------------------------------------------------------------------- /frontend/src/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/services/utils.ts -------------------------------------------------------------------------------- /frontend/src/stylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/stylesheet.ts -------------------------------------------------------------------------------- /frontend/src/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/translations/de.json -------------------------------------------------------------------------------- /frontend/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/translations/en.json -------------------------------------------------------------------------------- /frontend/src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/translations/fr.json -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/vite-env.d.ts -------------------------------------------------------------------------------- /frontend/src/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/src/window.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /p1d-mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/p1d-mobile/.gitignore -------------------------------------------------------------------------------- /pushpin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/pushpin/.gitignore -------------------------------------------------------------------------------- /pushpin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/pushpin/Dockerfile -------------------------------------------------------------------------------- /pushpin/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/pushpin/Dockerfile.prod -------------------------------------------------------------------------------- /pushpin/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/pushpin/docker-entrypoint.sh -------------------------------------------------------------------------------- /pushpin/routes: -------------------------------------------------------------------------------- 1 | * backend:80 2 | -------------------------------------------------------------------------------- /pushpin/routes.prod: -------------------------------------------------------------------------------- 1 | * passe_un_dessin_backend:9001 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foucdeg/passe-un-dessin/HEAD/renovate.json --------------------------------------------------------------------------------