robodev 0.10.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/collect-files.test.ts +19 -0
- package/src/collect-files.ts +1 -0
- package/src/config.test.ts +26 -0
- package/src/config.ts +34 -5
- package/src/emit-starter.test.ts +54 -0
- package/src/emit-starter.ts +47 -13
- package/src/index.ts +37 -4
- package/templates/auth-chat/README.md +1 -1
- package/templates/auth-chat/api/health.ts +1 -1
- package/templates/auth-chat/api/me.ts +1 -1
- package/templates/auth-chat/api/messages.ts +1 -1
- package/templates/auth-chat/package.json +1 -1
- package/templates/auth-chat/src/main.tsx +5 -5
- package/templates/backend/README.md +1 -1
- package/templates/backend/api/health.ts +1 -1
- package/templates/backend/api/launch.ts +1 -1
- package/templates/backend/api/me.ts +1 -1
- package/templates/backend/api/motto.ts +1 -1
- package/templates/backend/api/planets/[id].ts +1 -1
- package/templates/backend/api/planets.ts +1 -1
- package/templates/backend/api/rockets.ts +1 -1
- package/templates/backend/package.json +1 -1
- package/templates/catalog.json +2 -2
- package/templates/empty/README.md +1 -1
- package/templates/empty/api/health.ts +1 -1
- package/templates/empty/package.json +1 -1
- package/templates/space/.config/local.spa.template.yml +27 -0
- package/templates/space/.oxlint-base.json +29 -0
- package/templates/space/.oxlintrc.json +78 -0
- package/templates/space/.rulesync/rules/frontend-api-boundary.md +36 -0
- package/templates/space/.rulesync/rules/frontend-component-structure.md +38 -0
- package/templates/space/.rulesync/rules/frontend-forms.md +32 -0
- package/templates/space/.rulesync/rules/frontend-notifications.md +24 -0
- package/templates/space/.rulesync/rules/frontend-povio-components.md +42 -0
- package/templates/space/.rulesync/rules/frontend-povio-ui.md +45 -0
- package/templates/space/.rulesync/rules/frontend-query-autocomplete.md +29 -0
- package/templates/space/.rulesync/rules/frontend-tables-and-lists.md +34 -0
- package/templates/space/.rulesync/rules/frontend-translations.md +26 -0
- package/templates/space/.rulesync/rules/project-overview.md +32 -0
- package/templates/space/.rulesync/rules/robodev-api.md +30 -0
- package/templates/space/.rulesync/rules/robodev-auth.md +40 -0
- package/templates/space/.rulesync/rules/robodev-database.md +22 -0
- package/templates/space/.rulesync/rules/role-based-app-structure.md +36 -0
- package/templates/space/.rulesync/skills/media-feature/SKILL.md +21 -0
- package/templates/space/.rulesync/skills/povio-ui-styling/SKILL.md +208 -0
- package/templates/space/.rulesync/skills/povio-ui-styling/agents/openai.yaml +4 -0
- package/templates/space/.rulesync/skills/robodev-api-route/SKILL.md +13 -0
- package/templates/space/.rulesync/skills/robodev-table/SKILL.md +12 -0
- package/templates/space/README.md +26 -7
- package/templates/space/api/_lib.ts +359 -0
- package/templates/space/api/aliens/labels.ts +19 -0
- package/templates/space/api/files/presigned-url.ts +48 -0
- package/templates/space/api/files/upload.ts +29 -0
- package/templates/space/api/planets/[id]/like.ts +36 -0
- package/templates/space/api/planets/[id].ts +56 -13
- package/templates/space/api/planets/paginate.ts +36 -0
- package/templates/space/api/planets.ts +52 -44
- package/templates/space/apps/fe/index.html +24 -0
- package/templates/space/apps/fe/openapi-codegen.config.ts +37 -0
- package/templates/space/apps/fe/package.json +82 -0
- package/templates/space/apps/fe/public/apple-touch-icon.png +0 -0
- package/templates/space/apps/fe/public/favicon-96x96.png +0 -0
- package/templates/space/apps/fe/public/favicon.ico +0 -0
- package/templates/space/apps/fe/public/favicon.svg +3 -0
- package/templates/space/apps/fe/public/site.webmanifest +21 -0
- package/templates/space/apps/fe/public/web-app-manifest-192x192.png +0 -0
- package/templates/space/apps/fe/public/web-app-manifest-512x512.png +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Bold.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Medium.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Regular.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Semibold.otf +0 -0
- package/templates/space/apps/fe/src/assets/locales/en/translation.json +301 -0
- package/templates/space/apps/fe/src/assets/locales/sl/translation.json +301 -0
- package/templates/space/apps/fe/src/clients/app-rest-client.ts +15 -0
- package/templates/space/apps/fe/src/clients/auth-token-store.ts +101 -0
- package/templates/space/apps/fe/src/clients/rest/app-error-handler.ts +31 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/authorization-header.interceptor.ts +15 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/refresh-token.interceptor.ts +37 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/response.interceptor.ts +17 -0
- package/templates/space/apps/fe/src/components/404.tsx +18 -0
- package/templates/space/apps/fe/src/components/features/auth/AuthBrandPanel.tsx +60 -0
- package/templates/space/apps/fe/src/components/features/auth/AuthLayout.tsx +23 -0
- package/templates/space/apps/fe/src/components/features/auth/LoginPage.tsx +111 -0
- package/templates/space/apps/fe/src/components/features/auth/RegisterPage.tsx +143 -0
- package/templates/space/apps/fe/src/components/features/home/HomePage.tsx +21 -0
- package/templates/space/apps/fe/src/components/features/planets/details/PlanetDetailsPage.tsx +139 -0
- package/templates/space/apps/fe/src/components/features/planets/details/PlanetEditPage.tsx +266 -0
- package/templates/space/apps/fe/src/components/features/planets/feed/PlanetFeedCard.tsx +131 -0
- package/templates/space/apps/fe/src/components/features/planets/feed/PlanetsFeedPage.tsx +119 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetCard.tsx +89 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetCreateModal.tsx +179 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsFilters.css +3 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsFilters.tsx +73 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsGridPage.tsx +51 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsInfiniteTablePage.tsx +79 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsPage.tsx +65 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsTablePage.tsx +72 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsTableSummary.tsx +29 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsViewTabs.tsx +79 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTable.tsx +30 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTableActions.tsx +64 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTableInfinite.tsx +36 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/planetsTableColumns.tsx +72 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/usePlanetTableFilters.tsx +102 -0
- package/templates/space/apps/fe/src/components/features/profile/ProfilePage.tsx +96 -0
- package/templates/space/apps/fe/src/components/googleAnalytics/GoogleAnalytics.tsx +35 -0
- package/templates/space/apps/fe/src/components/layout/AppLayout.tsx +19 -0
- package/templates/space/apps/fe/src/components/layout/app-header/AppHeader.tsx +93 -0
- package/templates/space/apps/fe/src/components/layout/app-header/MobileNavigation.tsx +53 -0
- package/templates/space/apps/fe/src/components/layout/app-header/NavLink.tsx +29 -0
- package/templates/space/apps/fe/src/components/shared/branding/BrandLogo.tsx +13 -0
- package/templates/space/apps/fe/src/components/shared/error/ErrorFallback.tsx +43 -0
- package/templates/space/apps/fe/src/components/shared/error/ErrorText.tsx +20 -0
- package/templates/space/apps/fe/src/components/shared/error/NotFound.tsx +36 -0
- package/templates/space/apps/fe/src/components/shared/forms/RequiredLabel.tsx +21 -0
- package/templates/space/apps/fe/src/components/shared/forms/RowInputWrapper.tsx +50 -0
- package/templates/space/apps/fe/src/components/shared/head/AppHead.tsx +32 -0
- package/templates/space/apps/fe/src/components/shared/head/DefaultAppHead.tsx +34 -0
- package/templates/space/apps/fe/src/components/shared/layout/LoadingState.tsx +9 -0
- package/templates/space/apps/fe/src/components/shared/layout/ThinPageWrapper.tsx +5 -0
- package/templates/space/apps/fe/src/components/shared/page/PageHeader.tsx +69 -0
- package/templates/space/apps/fe/src/components/shared/ui/Card.tsx +60 -0
- package/templates/space/apps/fe/src/components/shared/ui/GoogleLoginButton.tsx +19 -0
- package/templates/space/apps/fe/src/components/shared/ui/RequiredLabel.tsx +22 -0
- package/templates/space/apps/fe/src/components/shared/ui/TableActions.tsx +22 -0
- package/templates/space/apps/fe/src/config/app.config.ts +35 -0
- package/templates/space/apps/fe/src/config/i18n.ts +43 -0
- package/templates/space/apps/fe/src/config/inits/a11y.ts +14 -0
- package/templates/space/apps/fe/src/config/inits/logger.ts +7 -0
- package/templates/space/apps/fe/src/config/inits/sentry.ts +21 -0
- package/templates/space/apps/fe/src/config/jwt.config.ts +2 -0
- package/templates/space/apps/fe/src/config/query.config.ts +20 -0
- package/templates/space/apps/fe/src/hooks/useAuth.ts +5 -0
- package/templates/space/apps/fe/src/main.tsx +52 -0
- package/templates/space/apps/fe/src/pages/(guest)/login.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(guest)/register.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(guest)/route.tsx +18 -0
- package/templates/space/apps/fe/src/pages/(private)/index.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/$id/edit.tsx +53 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/$id/index.tsx +41 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/index.tsx +24 -0
- package/templates/space/apps/fe/src/pages/(private)/planets-feed.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/profile.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/route.tsx +18 -0
- package/templates/space/apps/fe/src/pages/(public)/auth.tsx +37 -0
- package/templates/space/apps/fe/src/pages/(public)/route.tsx +9 -0
- package/templates/space/apps/fe/src/pages/__root.tsx +164 -0
- package/templates/space/apps/fe/src/providers/AppErrorBoundary.tsx +10 -0
- package/templates/space/apps/fe/src/providers/OpenApiRuntimeProvider.tsx +31 -0
- package/templates/space/apps/fe/src/providers/index.tsx +44 -0
- package/templates/space/apps/fe/src/providers/jwt.provider.tsx +95 -0
- package/templates/space/apps/fe/src/routeTree.gen.ts +309 -0
- package/templates/space/apps/fe/src/styles/base.css +103 -0
- package/templates/space/apps/fe/src/styles/fonts/fonts.tsx +10 -0
- package/templates/space/apps/fe/src/styles/fonts/general-sans.css +31 -0
- package/templates/space/apps/fe/src/styles/globals.css +28 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/button.override.ts +536 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/checkbox.override.ts +71 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/input.override.ts +252 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/label.override.ts +91 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/modal.override.ts +57 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/radio.override.ts +46 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/table.override.ts +104 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/tag.override.ts +66 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/typography.override.ts +115 -0
- package/templates/space/apps/fe/src/styles/overrides/outline.clsx.ts +10 -0
- package/templates/space/apps/fe/src/styles/overrides/uiOverrides.override.ts +60 -0
- package/templates/space/apps/fe/src/styles/theme.css +2177 -0
- package/templates/space/apps/fe/src/types/i18next.d.ts +12 -0
- package/templates/space/apps/fe/src/types/table.d.ts +17 -0
- package/templates/space/apps/fe/src/types/ui.d.ts +26 -0
- package/templates/space/apps/fe/src/types/vite-env.d.ts +20 -0
- package/templates/space/apps/fe/src/utils/date.utils.ts +17 -0
- package/templates/space/apps/fe/src/utils/image-fallback.ts +9 -0
- package/templates/space/apps/fe/src/utils/media-upload.ts +63 -0
- package/templates/space/apps/fe/src/utils/number.utils.ts +12 -0
- package/templates/space/apps/fe/src/utils/string.utils.ts +5 -0
- package/templates/space/apps/fe/src/vite-env.d.ts +1 -0
- package/templates/space/apps/fe/tsconfig.app.json +32 -0
- package/templates/space/apps/fe/tsconfig.json +9 -0
- package/templates/space/apps/fe/tsconfig.node.json +31 -0
- package/templates/space/apps/fe/vite.config.ts +94 -0
- package/templates/space/database.ts +33 -13
- package/templates/space/openapi.json +1819 -0
- package/templates/space/oxfmt.config.js +23 -0
- package/templates/space/package.json +6 -13
- package/templates/space/rulesync.jsonc +18 -0
- package/templates/space/tsconfig.json +2 -4
- package/templates/space/api/health.ts +0 -7
- package/templates/space/api/launch.ts +0 -29
- package/templates/space/api/me.ts +0 -14
- package/templates/space/api/motto.ts +0 -9
- package/templates/space/api/rockets.ts +0 -43
- package/templates/space/index.html +0 -138
- package/templates/space/src/main.tsx +0 -229
- package/templates/space/vite.config.ts +0 -7
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { Button, Typography } from "@povio/ui";
|
|
2
|
+
import { Pencil } from "lucide-react";
|
|
3
|
+
import { useTranslation } from "react-i18next";
|
|
4
|
+
|
|
5
|
+
import { PageHeader } from "@/components/shared/page/PageHeader";
|
|
6
|
+
import { Card } from "@/components/shared/ui/Card";
|
|
7
|
+
import { useAuth } from "@/hooks/useAuth";
|
|
8
|
+
import type { PlanetModels } from "@/openapi/planet/planet.models";
|
|
9
|
+
import { DateUtils } from "@/utils/date.utils";
|
|
10
|
+
import { getFallbackImageUrl } from "@/utils/image-fallback";
|
|
11
|
+
|
|
12
|
+
interface PlanetDetailsPageProps {
|
|
13
|
+
planet: PlanetModels.PlanetsGetResponseDto;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function PlanetDetailsPage({ planet }: PlanetDetailsPageProps) {
|
|
17
|
+
const { t } = useTranslation();
|
|
18
|
+
const { user } = useAuth();
|
|
19
|
+
|
|
20
|
+
const imageSrc = planet.image?.url ?? getFallbackImageUrl({ width: 800, height: 450 });
|
|
21
|
+
const createdDate = DateUtils.formatDate(new Date(planet.createdAt));
|
|
22
|
+
const updatedDate = DateUtils.formatDate(new Date(planet.updatedAt));
|
|
23
|
+
const discoveryDate = planet.discoveryDate ? DateUtils.formatDate(new Date(planet.discoveryDate)) : null;
|
|
24
|
+
const creatorName = planet.creatorName ?? t(($) => $.planets.card.unknownCreator);
|
|
25
|
+
// Frontend ownership checks are for UI affordances only; the router enforces ownership again on update/delete.
|
|
26
|
+
const canEdit = user?.id === planet.userId;
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<div className="flex flex-col gap-6">
|
|
30
|
+
<PageHeader
|
|
31
|
+
enableBack
|
|
32
|
+
backProps={{ backLink: { to: "/planets" } }}
|
|
33
|
+
title={planet.name}
|
|
34
|
+
actions={
|
|
35
|
+
canEdit && (
|
|
36
|
+
<Button
|
|
37
|
+
size="s"
|
|
38
|
+
color="primary"
|
|
39
|
+
icon={Pencil}
|
|
40
|
+
link={{ to: "/planets/$id/edit", params: { id: planet.id } }}
|
|
41
|
+
>
|
|
42
|
+
{t(($) => $.planets.actions.edit)}
|
|
43
|
+
</Button>
|
|
44
|
+
)
|
|
45
|
+
}
|
|
46
|
+
/>
|
|
47
|
+
|
|
48
|
+
<Card className="max-w-3xl overflow-hidden p-0">
|
|
49
|
+
<div className="aspect-video w-full bg-elevation-fill-default-2">
|
|
50
|
+
<img
|
|
51
|
+
src={imageSrc}
|
|
52
|
+
alt=""
|
|
53
|
+
className="h-full w-full object-cover"
|
|
54
|
+
/>
|
|
55
|
+
</div>
|
|
56
|
+
<div className="flex flex-col gap-5 p-1">
|
|
57
|
+
<Typography
|
|
58
|
+
size="title-5"
|
|
59
|
+
variant="prominent-1"
|
|
60
|
+
as="h3"
|
|
61
|
+
>
|
|
62
|
+
{planet.name}
|
|
63
|
+
</Typography>
|
|
64
|
+
|
|
65
|
+
{planet.description && (
|
|
66
|
+
<Typography
|
|
67
|
+
size="body-3"
|
|
68
|
+
as="p"
|
|
69
|
+
className="whitespace-pre-wrap text-text-default-2"
|
|
70
|
+
>
|
|
71
|
+
{planet.description}
|
|
72
|
+
</Typography>
|
|
73
|
+
)}
|
|
74
|
+
|
|
75
|
+
<dl className="flex flex-col gap-4 border-elevation-outline-default-1 border-t pt-4 sm:grid sm:grid-cols-2 sm:gap-x-6 sm:gap-y-4">
|
|
76
|
+
<div className="flex flex-col gap-1">
|
|
77
|
+
<Typography
|
|
78
|
+
size="label-3"
|
|
79
|
+
className="text-text-default-2"
|
|
80
|
+
>
|
|
81
|
+
{t(($) => $.planets.detail.createdBy)}
|
|
82
|
+
</Typography>
|
|
83
|
+
<Typography
|
|
84
|
+
size="body-3"
|
|
85
|
+
className="text-text-default-1"
|
|
86
|
+
>
|
|
87
|
+
{creatorName}
|
|
88
|
+
</Typography>
|
|
89
|
+
</div>
|
|
90
|
+
<div className="flex flex-col gap-1">
|
|
91
|
+
<Typography
|
|
92
|
+
size="label-3"
|
|
93
|
+
className="text-text-default-2"
|
|
94
|
+
>
|
|
95
|
+
{t(($) => $.planets.detail.created)}
|
|
96
|
+
</Typography>
|
|
97
|
+
<Typography
|
|
98
|
+
size="body-3"
|
|
99
|
+
className="text-text-default-1"
|
|
100
|
+
>
|
|
101
|
+
{createdDate}
|
|
102
|
+
</Typography>
|
|
103
|
+
</div>
|
|
104
|
+
<div className="flex flex-col gap-1 sm:col-span-2">
|
|
105
|
+
<Typography
|
|
106
|
+
size="label-3"
|
|
107
|
+
className="text-text-default-2"
|
|
108
|
+
>
|
|
109
|
+
{t(($) => $.planets.detail.updated)}
|
|
110
|
+
</Typography>
|
|
111
|
+
<Typography
|
|
112
|
+
size="body-3"
|
|
113
|
+
className="text-text-default-1"
|
|
114
|
+
>
|
|
115
|
+
{updatedDate}
|
|
116
|
+
</Typography>
|
|
117
|
+
</div>
|
|
118
|
+
{discoveryDate && (
|
|
119
|
+
<div className="flex flex-col gap-1 sm:col-span-2">
|
|
120
|
+
<Typography
|
|
121
|
+
size="label-3"
|
|
122
|
+
className="text-text-default-2"
|
|
123
|
+
>
|
|
124
|
+
{t(($) => $.planets.detail.discoveryDate)}
|
|
125
|
+
</Typography>
|
|
126
|
+
<Typography
|
|
127
|
+
size="body-3"
|
|
128
|
+
className="text-text-default-1"
|
|
129
|
+
>
|
|
130
|
+
{discoveryDate}
|
|
131
|
+
</Typography>
|
|
132
|
+
</div>
|
|
133
|
+
)}
|
|
134
|
+
</dl>
|
|
135
|
+
</div>
|
|
136
|
+
</Card>
|
|
137
|
+
</div>
|
|
138
|
+
);
|
|
139
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Button,
|
|
3
|
+
Confirmation,
|
|
4
|
+
DatePicker,
|
|
5
|
+
FileUpload,
|
|
6
|
+
Modal,
|
|
7
|
+
QueryAutocomplete,
|
|
8
|
+
TextArea,
|
|
9
|
+
TextInput,
|
|
10
|
+
Typography,
|
|
11
|
+
useForm,
|
|
12
|
+
useFormValue,
|
|
13
|
+
useToast,
|
|
14
|
+
} from "@povio/ui/tanstack";
|
|
15
|
+
import { useNavigate } from "@tanstack/react-router";
|
|
16
|
+
import { Trash } from "lucide-react";
|
|
17
|
+
import { useEffect, useState } from "react";
|
|
18
|
+
import { useTranslation } from "react-i18next";
|
|
19
|
+
|
|
20
|
+
import { RowInputWrapper } from "@/components/shared/forms/RowInputWrapper";
|
|
21
|
+
import { AlienQueries } from "@/openapi/alien/alien.queries";
|
|
22
|
+
import { MediaModels } from "@/openapi/media/media.models";
|
|
23
|
+
import { PlanetModels } from "@/openapi/planet/planet.models";
|
|
24
|
+
import { PlanetQueries } from "@/openapi/planet/planet.queries";
|
|
25
|
+
import { useMediaUploadHandler } from "@/utils/media-upload";
|
|
26
|
+
|
|
27
|
+
interface PlanetEditPageProps {
|
|
28
|
+
planet: PlanetModels.PlanetsGetResponseDto;
|
|
29
|
+
onClose?: () => void;
|
|
30
|
+
onDeleted?: () => void;
|
|
31
|
+
onSaved?: () => void;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function PlanetEditPage({ planet, onClose, onDeleted, onSaved }: PlanetEditPageProps) {
|
|
35
|
+
const { t } = useTranslation();
|
|
36
|
+
const navigate = useNavigate();
|
|
37
|
+
const updatePlanet = PlanetQueries.useUpdate();
|
|
38
|
+
const deletePlanet = PlanetQueries.useDeleteApiPlanetsById();
|
|
39
|
+
const { successToast, errorToast } = useToast();
|
|
40
|
+
const { confirm } = Confirmation.useConfirmation();
|
|
41
|
+
const [previewImageUrl, setPreviewImageUrl] = useState<string | undefined>(planet.image?.url);
|
|
42
|
+
// Seed the form from the fetched record, then reset when route data changes between planet IDs.
|
|
43
|
+
const form = useForm({
|
|
44
|
+
zodSchema: PlanetModels.PlanetsCreateRequestDtoSchema,
|
|
45
|
+
defaultValues: {
|
|
46
|
+
name: planet.name,
|
|
47
|
+
alienId: planet.alienId ?? undefined,
|
|
48
|
+
discoveryDate: planet.discoveryDate ?? undefined,
|
|
49
|
+
description: planet.description ?? "",
|
|
50
|
+
image: planet.image ? { id: planet.image.id } : undefined,
|
|
51
|
+
},
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
useEffect(() => {
|
|
55
|
+
form.reset({
|
|
56
|
+
name: planet.name,
|
|
57
|
+
alienId: planet.alienId ?? undefined,
|
|
58
|
+
discoveryDate: planet.discoveryDate ?? undefined,
|
|
59
|
+
description: planet.description ?? "",
|
|
60
|
+
image: planet.image ? { id: planet.image.id } : undefined,
|
|
61
|
+
});
|
|
62
|
+
setPreviewImageUrl(planet.image?.url);
|
|
63
|
+
}, [form, planet]);
|
|
64
|
+
|
|
65
|
+
const handleImageUpload = useMediaUploadHandler({
|
|
66
|
+
resourceName: MediaModels.MediaResourceName["planet-image"],
|
|
67
|
+
onUploaded: (media) => {
|
|
68
|
+
form.setFieldValue("image", { id: media.id });
|
|
69
|
+
setPreviewImageUrl(media.previewUrl);
|
|
70
|
+
},
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const handleImageChange = (_file: File | null) => {
|
|
74
|
+
// When clearing file, keep current image
|
|
75
|
+
if (!_file) {
|
|
76
|
+
form.setFieldValue("image", planet.image ? { id: planet.image.id } : undefined);
|
|
77
|
+
setPreviewImageUrl(planet.image?.url);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const onSubmit = async (data: PlanetModels.PlanetsCreateRequestDto) => {
|
|
82
|
+
try {
|
|
83
|
+
await updatePlanet.mutateAsync({ id: planet.id, data });
|
|
84
|
+
successToast({ text: t(($) => $.planets.edit.success) });
|
|
85
|
+
if (onSaved) {
|
|
86
|
+
onSaved();
|
|
87
|
+
} else {
|
|
88
|
+
navigate({ to: "/planets/$id", params: { id: planet.id } });
|
|
89
|
+
}
|
|
90
|
+
} catch {
|
|
91
|
+
errorToast({ text: t(($) => $.planets.edit.error) });
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
const handleDelete = async () => {
|
|
96
|
+
// Destructive actions should go through a shared confirmation flow before calling the mutation.
|
|
97
|
+
const confirmed = await confirm({
|
|
98
|
+
heading: t(($) => $.planets.removeConfirm.heading),
|
|
99
|
+
description: t(($) => $.planets.removeConfirm.description, { name: planet.name }),
|
|
100
|
+
confirmLabel: t(($) => $.planets.removeConfirm.confirm),
|
|
101
|
+
cancelLabel: t(($) => $.planets.removeConfirm.cancel),
|
|
102
|
+
confirmColor: "error",
|
|
103
|
+
cancelVariant: "outlined",
|
|
104
|
+
buttonSize: "s",
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
if (!confirmed) {
|
|
108
|
+
return;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
try {
|
|
112
|
+
await deletePlanet.mutateAsync({ id: planet.id });
|
|
113
|
+
successToast({ text: t(($) => $.planets.removeConfirm.success) });
|
|
114
|
+
if (onDeleted) {
|
|
115
|
+
onDeleted();
|
|
116
|
+
} else {
|
|
117
|
+
navigate({ to: "/planets" });
|
|
118
|
+
}
|
|
119
|
+
} catch {
|
|
120
|
+
errorToast({ text: t(($) => $.planets.removeConfirm.error) });
|
|
121
|
+
}
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
const currentImage = useFormValue(form, (values) => values.image);
|
|
125
|
+
const currentImageUrl = planet.image && currentImage?.id === planet.image.id ? planet.image.url : previewImageUrl;
|
|
126
|
+
const handleClose = () => {
|
|
127
|
+
if (onClose) {
|
|
128
|
+
onClose();
|
|
129
|
+
} else {
|
|
130
|
+
navigate({ to: "/planets/$id", params: { id: planet.id } });
|
|
131
|
+
}
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
return (
|
|
135
|
+
<Modal
|
|
136
|
+
isOpen
|
|
137
|
+
onClose={handleClose}
|
|
138
|
+
aside="right"
|
|
139
|
+
showCloseIcon
|
|
140
|
+
modalClassName="h-full min-w-0 overflow-y-auto"
|
|
141
|
+
>
|
|
142
|
+
<div className="mb-6 flex items-center justify-between gap-4 pr-10">
|
|
143
|
+
<Typography
|
|
144
|
+
as="h2"
|
|
145
|
+
size="title-5"
|
|
146
|
+
variant="prominent-1"
|
|
147
|
+
className="text-text-default-1"
|
|
148
|
+
>
|
|
149
|
+
{t(($) => $.planets.edit.title)}
|
|
150
|
+
</Typography>
|
|
151
|
+
|
|
152
|
+
<Button
|
|
153
|
+
type="button"
|
|
154
|
+
size="xs"
|
|
155
|
+
color="error"
|
|
156
|
+
variant="outlined"
|
|
157
|
+
icon={Trash}
|
|
158
|
+
onPress={handleDelete}
|
|
159
|
+
isDisabled={deletePlanet.isPending}
|
|
160
|
+
>
|
|
161
|
+
{t(($) => $.planets.actions.remove)}
|
|
162
|
+
</Button>
|
|
163
|
+
</div>
|
|
164
|
+
|
|
165
|
+
<form
|
|
166
|
+
onSubmit={form.handleSubmit(onSubmit)}
|
|
167
|
+
className="flex w-full min-w-0 flex-col gap-4"
|
|
168
|
+
>
|
|
169
|
+
<RowInputWrapper
|
|
170
|
+
label={t(($) => $.planets.edit.name)}
|
|
171
|
+
isRequired
|
|
172
|
+
>
|
|
173
|
+
<TextInput
|
|
174
|
+
variant="filled"
|
|
175
|
+
size="extra-small"
|
|
176
|
+
field={{ form, name: "name" }}
|
|
177
|
+
label={t(($) => $.planets.edit.name)}
|
|
178
|
+
placeholder={t(($) => $.planets.edit.namePlaceholder)}
|
|
179
|
+
hideLabel
|
|
180
|
+
isRequired
|
|
181
|
+
/>
|
|
182
|
+
</RowInputWrapper>
|
|
183
|
+
|
|
184
|
+
<RowInputWrapper label={t(($) => $.planets.edit.alien)}>
|
|
185
|
+
<QueryAutocomplete
|
|
186
|
+
variant="filled"
|
|
187
|
+
size="extra-small"
|
|
188
|
+
field={{ form, name: "alienId" }}
|
|
189
|
+
query={AlienQueries.useGetLabels}
|
|
190
|
+
label={t(($) => $.planets.edit.alien)}
|
|
191
|
+
placeholder={t(($) => $.planets.edit.alienPlaceholder)}
|
|
192
|
+
hideLabel
|
|
193
|
+
/>
|
|
194
|
+
</RowInputWrapper>
|
|
195
|
+
|
|
196
|
+
<RowInputWrapper label={t(($) => $.planets.edit.discoveryDate)}>
|
|
197
|
+
<DatePicker
|
|
198
|
+
variant="filled"
|
|
199
|
+
size="extra-small"
|
|
200
|
+
field={{ form, name: "discoveryDate" }}
|
|
201
|
+
label={t(($) => $.planets.edit.discoveryDate)}
|
|
202
|
+
placeholder={t(($) => $.planets.edit.discoveryDatePlaceholder)}
|
|
203
|
+
hideLabel
|
|
204
|
+
/>
|
|
205
|
+
</RowInputWrapper>
|
|
206
|
+
|
|
207
|
+
<RowInputWrapper label={t(($) => $.planets.edit.description)}>
|
|
208
|
+
<TextArea
|
|
209
|
+
variant="filled"
|
|
210
|
+
size="extra-small"
|
|
211
|
+
field={{ form, name: "description" }}
|
|
212
|
+
label={t(($) => $.planets.edit.description)}
|
|
213
|
+
placeholder={t(($) => $.planets.edit.descriptionPlaceholder)}
|
|
214
|
+
hideLabel
|
|
215
|
+
/>
|
|
216
|
+
</RowInputWrapper>
|
|
217
|
+
|
|
218
|
+
<div className="flex flex-col gap-2">
|
|
219
|
+
<FileUpload
|
|
220
|
+
label={t(($) => $.planets.edit.image)}
|
|
221
|
+
emptyText={t(($) => $.planets.edit.imageEmptyText)}
|
|
222
|
+
uploadText={t(($) => $.planets.edit.imageUploadText)}
|
|
223
|
+
browseText={t(($) => $.planets.edit.imageBrowseText)}
|
|
224
|
+
acceptedFileTypes={["image/jpeg", "image/png", "image/webp"]}
|
|
225
|
+
onChange={handleImageChange}
|
|
226
|
+
fileUpload={handleImageUpload}
|
|
227
|
+
/>
|
|
228
|
+
{currentImageUrl && (
|
|
229
|
+
<div className="aspect-video w-full overflow-hidden rounded-sm border border-elevation-outline-default-1 bg-elevation-fill-default-2">
|
|
230
|
+
<img
|
|
231
|
+
src={currentImageUrl}
|
|
232
|
+
alt=""
|
|
233
|
+
className="h-full w-full object-cover"
|
|
234
|
+
/>
|
|
235
|
+
</div>
|
|
236
|
+
)}
|
|
237
|
+
</div>
|
|
238
|
+
|
|
239
|
+
<div className="mt-6 flex items-center justify-end gap-2 self-end">
|
|
240
|
+
<Button
|
|
241
|
+
type="button"
|
|
242
|
+
variant="outlined"
|
|
243
|
+
size="xs"
|
|
244
|
+
color="secondary"
|
|
245
|
+
width="hug"
|
|
246
|
+
onPress={handleClose}
|
|
247
|
+
>
|
|
248
|
+
{t(($) => $.planets.edit.cancel)}
|
|
249
|
+
</Button>
|
|
250
|
+
|
|
251
|
+
<Button
|
|
252
|
+
type="submit"
|
|
253
|
+
variant="contained"
|
|
254
|
+
size="xs"
|
|
255
|
+
color="primary"
|
|
256
|
+
width="hug"
|
|
257
|
+
isDisabled={updatePlanet.isPending}
|
|
258
|
+
isLoading={updatePlanet.isPending}
|
|
259
|
+
>
|
|
260
|
+
{t(($) => $.planets.edit.submit)}
|
|
261
|
+
</Button>
|
|
262
|
+
</div>
|
|
263
|
+
</form>
|
|
264
|
+
</Modal>
|
|
265
|
+
);
|
|
266
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { Button, Link, Typography } from "@povio/ui";
|
|
2
|
+
import { Heart, Satellite, UserRound } from "lucide-react";
|
|
3
|
+
import { useTranslation } from "react-i18next";
|
|
4
|
+
|
|
5
|
+
import type { PlanetModels } from "@/openapi/planet/planet.models";
|
|
6
|
+
import { DateUtils } from "@/utils/date.utils";
|
|
7
|
+
import { getFallbackImageUrl } from "@/utils/image-fallback";
|
|
8
|
+
|
|
9
|
+
type PlanetFeedItem = PlanetModels.PlanetsGetResponseDto;
|
|
10
|
+
|
|
11
|
+
interface PlanetFeedCardProps {
|
|
12
|
+
planet: PlanetFeedItem;
|
|
13
|
+
isLikePending: boolean;
|
|
14
|
+
onToggleLike: (planet: PlanetFeedItem) => void;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function PlanetFeedCard({ planet, isLikePending, onToggleLike }: PlanetFeedCardProps) {
|
|
18
|
+
const { t } = useTranslation();
|
|
19
|
+
const imageSrc = planet.image?.url ?? getFallbackImageUrl({ width: 960, height: 540 });
|
|
20
|
+
const discoveryDate = planet.discoveryDate ? DateUtils.formatDate(planet.discoveryDate) : null;
|
|
21
|
+
const alienName = planet.alienName ?? t(($) => $.planetsFeed.card.noAlien);
|
|
22
|
+
const isLiked = planet.likedByMe;
|
|
23
|
+
const likesCount = typeof planet.likesCount === "number" ? planet.likesCount : 0;
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<article className="overflow-hidden rounded-m border border-elevation-outline-default-1 bg-elevation-fill-default-1 shadow-sm">
|
|
27
|
+
<Link
|
|
28
|
+
to="/planets/$id"
|
|
29
|
+
params={{ id: planet.id }}
|
|
30
|
+
className="block no-underline! outline-none focus-visible:ring-2 focus-visible:ring-interactive-outline-primary-idle"
|
|
31
|
+
>
|
|
32
|
+
<div className="aspect-video w-full bg-elevation-fill-default-2">
|
|
33
|
+
<img
|
|
34
|
+
src={imageSrc}
|
|
35
|
+
alt=""
|
|
36
|
+
className="h-full w-full object-cover"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
</Link>
|
|
40
|
+
|
|
41
|
+
<div className="flex flex-col gap-4 p-4 sm:p-5">
|
|
42
|
+
<div className="flex items-start justify-between gap-4">
|
|
43
|
+
<div className="min-w-0">
|
|
44
|
+
<Typography
|
|
45
|
+
as="h2"
|
|
46
|
+
size="title-4"
|
|
47
|
+
variant="prominent-1"
|
|
48
|
+
className="text-text-default-1"
|
|
49
|
+
>
|
|
50
|
+
{planet.name}
|
|
51
|
+
</Typography>
|
|
52
|
+
{discoveryDate ? (
|
|
53
|
+
<Typography
|
|
54
|
+
size="label-3"
|
|
55
|
+
className="mt-1 text-text-default-2"
|
|
56
|
+
>
|
|
57
|
+
{t(($) => $.planetsFeed.card.discovered, { date: discoveryDate })}
|
|
58
|
+
</Typography>
|
|
59
|
+
) : null}
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<Button
|
|
63
|
+
variant={isLiked ? "contained" : "outlined"}
|
|
64
|
+
color={isLiked ? "primary" : "secondary"}
|
|
65
|
+
size="s"
|
|
66
|
+
icon={Heart}
|
|
67
|
+
isLoading={isLikePending}
|
|
68
|
+
onPress={() => onToggleLike(planet)}
|
|
69
|
+
>
|
|
70
|
+
{isLiked
|
|
71
|
+
? t(($) => $.planetsFeed.card.liked, { count: likesCount })
|
|
72
|
+
: t(($) => $.planetsFeed.card.like, { count: likesCount })}
|
|
73
|
+
</Button>
|
|
74
|
+
</div>
|
|
75
|
+
|
|
76
|
+
{planet.description ? (
|
|
77
|
+
<Typography
|
|
78
|
+
size="body-3"
|
|
79
|
+
className="text-text-default-2"
|
|
80
|
+
>
|
|
81
|
+
{planet.description}
|
|
82
|
+
</Typography>
|
|
83
|
+
) : null}
|
|
84
|
+
|
|
85
|
+
<div className="grid gap-3 sm:grid-cols-2">
|
|
86
|
+
<div className="flex min-w-0 items-center gap-3 rounded-s bg-elevation-fill-default-2 px-3 py-2">
|
|
87
|
+
<Satellite
|
|
88
|
+
className="size-5 shrink-0 text-text-default-2"
|
|
89
|
+
aria-hidden
|
|
90
|
+
/>
|
|
91
|
+
<div className="min-w-0">
|
|
92
|
+
<Typography
|
|
93
|
+
size="label-3"
|
|
94
|
+
className="text-text-default-2"
|
|
95
|
+
>
|
|
96
|
+
{t(($) => $.planetsFeed.card.alienLabel)}
|
|
97
|
+
</Typography>
|
|
98
|
+
<Typography
|
|
99
|
+
size="body-3"
|
|
100
|
+
className="truncate text-text-default-1"
|
|
101
|
+
>
|
|
102
|
+
{alienName}
|
|
103
|
+
</Typography>
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
<div className="flex min-w-0 items-center gap-3 rounded-s bg-elevation-fill-default-2 px-3 py-2">
|
|
108
|
+
<UserRound
|
|
109
|
+
className="size-5 shrink-0 text-text-default-2"
|
|
110
|
+
aria-hidden
|
|
111
|
+
/>
|
|
112
|
+
<div className="min-w-0">
|
|
113
|
+
<Typography
|
|
114
|
+
size="label-3"
|
|
115
|
+
className="text-text-default-2"
|
|
116
|
+
>
|
|
117
|
+
{t(($) => $.planetsFeed.card.creatorLabel)}
|
|
118
|
+
</Typography>
|
|
119
|
+
<Typography
|
|
120
|
+
size="body-3"
|
|
121
|
+
className="truncate text-text-default-1"
|
|
122
|
+
>
|
|
123
|
+
{planet.creatorName ?? t(($) => $.planets.card.unknownCreator)}
|
|
124
|
+
</Typography>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
</article>
|
|
130
|
+
);
|
|
131
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { useQueryClient } from "@tanstack/react-query";
|
|
2
|
+
import { Typography } from "@povio/ui";
|
|
3
|
+
import { useCallback, useEffect, useRef } from "react";
|
|
4
|
+
import { useTranslation } from "react-i18next";
|
|
5
|
+
|
|
6
|
+
import { LoadingState } from "@/components/shared/layout/LoadingState";
|
|
7
|
+
import { PageHeader } from "@/components/shared/page/PageHeader";
|
|
8
|
+
import type { PlanetModels } from "@/openapi/planet/planet.models";
|
|
9
|
+
import { PlanetQueries } from "@/openapi/planet/planet.queries";
|
|
10
|
+
|
|
11
|
+
import { PlanetFeedCard } from "./PlanetFeedCard";
|
|
12
|
+
|
|
13
|
+
const PAGE_SIZE = 8;
|
|
14
|
+
|
|
15
|
+
type PlanetFeedItem = PlanetModels.PlanetsGetResponseDto;
|
|
16
|
+
|
|
17
|
+
export function PlanetsFeedPage() {
|
|
18
|
+
const { t } = useTranslation();
|
|
19
|
+
const queryClient = useQueryClient();
|
|
20
|
+
const loaderRef = useRef<HTMLDivElement | null>(null);
|
|
21
|
+
|
|
22
|
+
const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading } = PlanetQueries.usePaginateInfinite({
|
|
23
|
+
cursor: undefined,
|
|
24
|
+
limit: PAGE_SIZE,
|
|
25
|
+
order: "-discoveryDate",
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
const likeMutation = PlanetQueries.useLike({
|
|
29
|
+
onSuccess: async () => {
|
|
30
|
+
await queryClient.invalidateQueries({ queryKey: PlanetQueries.keys.all });
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
const unlikeMutation = PlanetQueries.useUnlike({
|
|
35
|
+
onSuccess: async () => {
|
|
36
|
+
await queryClient.invalidateQueries({ queryKey: PlanetQueries.keys.all });
|
|
37
|
+
},
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
const planets = data?.pages.flatMap((page) => page.items ?? []) ?? [];
|
|
41
|
+
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
const loader = loaderRef.current;
|
|
44
|
+
if (!loader || !hasNextPage) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const observer = new IntersectionObserver(
|
|
49
|
+
([entry]) => {
|
|
50
|
+
if (entry?.isIntersecting && !isFetchingNextPage) {
|
|
51
|
+
void fetchNextPage();
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{ rootMargin: "360px 0px" },
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
observer.observe(loader);
|
|
58
|
+
return () => observer.disconnect();
|
|
59
|
+
}, [fetchNextPage, hasNextPage, isFetchingNextPage]);
|
|
60
|
+
|
|
61
|
+
const toggleLike = useCallback(
|
|
62
|
+
(planet: PlanetFeedItem) => {
|
|
63
|
+
if (planet.likedByMe) {
|
|
64
|
+
unlikeMutation.mutate({ id: planet.id });
|
|
65
|
+
} else {
|
|
66
|
+
likeMutation.mutate({ id: planet.id });
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
[likeMutation.mutate, unlikeMutation.mutate],
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
return (
|
|
73
|
+
<div className="mx-auto flex w-full max-w-3xl flex-col gap-6">
|
|
74
|
+
<PageHeader title={t(($) => $.planetsFeed.page.title)} />
|
|
75
|
+
|
|
76
|
+
{isLoading ? (
|
|
77
|
+
<LoadingState />
|
|
78
|
+
) : (
|
|
79
|
+
<div className="flex flex-col gap-5">
|
|
80
|
+
{planets.map((planet) => (
|
|
81
|
+
<PlanetFeedCard
|
|
82
|
+
key={planet.id}
|
|
83
|
+
planet={planet}
|
|
84
|
+
isLikePending={
|
|
85
|
+
(likeMutation.isPending && likeMutation.variables?.id === planet.id) ||
|
|
86
|
+
(unlikeMutation.isPending && unlikeMutation.variables?.id === planet.id)
|
|
87
|
+
}
|
|
88
|
+
onToggleLike={toggleLike}
|
|
89
|
+
/>
|
|
90
|
+
))}
|
|
91
|
+
</div>
|
|
92
|
+
)}
|
|
93
|
+
|
|
94
|
+
{!isLoading && planets.length === 0 && (
|
|
95
|
+
<Typography
|
|
96
|
+
size="body-3"
|
|
97
|
+
className="text-text-default-2"
|
|
98
|
+
>
|
|
99
|
+
{t(($) => $.planetsFeed.page.empty)}
|
|
100
|
+
</Typography>
|
|
101
|
+
)}
|
|
102
|
+
|
|
103
|
+
<div
|
|
104
|
+
ref={loaderRef}
|
|
105
|
+
className="flex min-h-16 items-center justify-center"
|
|
106
|
+
>
|
|
107
|
+
{isFetchingNextPage && <LoadingState />}
|
|
108
|
+
{!hasNextPage && planets.length > 0 && (
|
|
109
|
+
<Typography
|
|
110
|
+
size="label-3"
|
|
111
|
+
className="text-text-default-2"
|
|
112
|
+
>
|
|
113
|
+
{t(($) => $.planetsFeed.page.end)}
|
|
114
|
+
</Typography>
|
|
115
|
+
)}
|
|
116
|
+
</div>
|
|
117
|
+
</div>
|
|
118
|
+
);
|
|
119
|
+
}
|