
* Update to new design theme (#1631) * Update macaw to 0.3.0 (#1623) * Update macaw to 0.3 * Use proper pagination component * Fix type errors * Remove leftover import * Remove variant and color from confirm button * Remove alias * Update macaw * Fix button type * Random fixes (#1633) * Improve layout components * Use colored svgs * Minor fixes * Fix autocomplete loaders * Fix padding * Fix button variant * Remove codegen file * Fixes after bumping macaw to 0.3 part 2 (#1638) * Fix various visual bugs * Fix type errors * Bump macaw * Random fixes part 3 (#1647) * wip * Fix mismatched paddings * Fix actions container padding * Put story in the right directory * Fix shipping zone picker * Fix minor visual bugs * Remove unused imports * Move styles to separate file * Random fixes part 4 (#1641) * Fix various visual bugs * Fix type errors * Fix last table item padding * Add outline on hover * Fix spaces * Fix spaces * Remove dead code * Fix elevation * Remove dead code * Fix shadows * Add outline to expand button * Fix spacing * Fix spacings * Fix selectable tables hover * Use proper delete icon * Fix ConfirmButtonTransitionState imports * Update src/apps/components/CustomApps/CustomApps.tsx Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> * Rework error page (#1670) * Remake error page * Fix types * Update error id styles * Fix types * Login page rework (#1703) * Rework login page * Remove outline * Fix logo and footer placement * Sort imports * Random fixes part 5 (#1669) * Fix text color in dark mode * Update password reset pages (#1714) * Update password reset pages * Update src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix collection page * Update dark mode logo * Bring back "create app" button * Fix spacings * Fix selects * Fix login e2e test * Fix not found page displaying * Update selector * Add missing package * Let dropdown overflow through card * Fix scroll * Fix scroll * Fix overflow on grid element * Fix e2e tests * Fix data-test-id * Update snapshots * Update messages * Update macaw * Update snapshots * Use stable macaw version Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Update to new design theme (#1631) * Update macaw to 0.3.0 (#1623) * Update macaw to 0.3 * Use proper pagination component * Fix type errors * Remove leftover import * Remove variant and color from confirm button * Remove alias * Update macaw * Fix button type * Random fixes (#1633) * Improve layout components * Use colored svgs * Minor fixes * Fix autocomplete loaders * Fix padding * Fix button variant * Remove codegen file * Fixes after bumping macaw to 0.3 part 2 (#1638) * Fix various visual bugs * Fix type errors * Bump macaw * Random fixes part 3 (#1647) * wip * Fix mismatched paddings * Fix actions container padding * Put story in the right directory * Fix shipping zone picker * Fix minor visual bugs * Remove unused imports * Move styles to separate file * Random fixes part 4 (#1641) * Fix various visual bugs * Fix type errors * Fix last table item padding * Add outline on hover * Fix spaces * Fix spaces * Remove dead code * Fix elevation * Remove dead code * Fix shadows * Add outline to expand button * Fix spacing * Fix spacings * Fix selectable tables hover * Use proper delete icon * Fix ConfirmButtonTransitionState imports * Update src/apps/components/CustomApps/CustomApps.tsx Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> * Rework error page (#1670) * Remake error page * Fix types * Update error id styles * Fix types * Login page rework (#1703) * Rework login page * Remove outline * Fix logo and footer placement * Sort imports * Random fixes part 5 (#1669) * Fix text color in dark mode * Update password reset pages (#1714) * Update password reset pages * Update src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix collection page * Update dark mode logo * Bring back "create app" button * Fix spacings * Fix selects * Fix login e2e test * Fix not found page displaying * Update selector * Add missing package * Let dropdown overflow through card * Fix scroll * Fix scroll * Fix overflow on grid element * Fix e2e tests * Fix data-test-id * Update snapshots * Update messages * Update macaw * Update snapshots * Use stable macaw version Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com> * Fix visual bugs and artifacts * Fix dropdown menus being clipped (#1762) * wip * Fix clipped select menus * Remove unused import * Fix spacing * Fix tests * Fix select content appearing under dialogs (#1777) * Fix type errors * Fix bulk delete button placement * Fix filter arrow buttons * Fix messages * Remove backling from pages list * Move status above events * Update messages and snapshots Co-authored-by: Wojciech Mista <wojciech.mista@saleor.io> Co-authored-by: Jakub Majorek <majorek.jakub@gmail.com>
149 lines
4.6 KiB
TypeScript
149 lines
4.6 KiB
TypeScript
import saleorDarkLogoSmall from "@assets/images/logo-dark-small.svg";
|
||
import plusIcon from "@assets/images/plus-icon.svg";
|
||
import { Card, CardContent, Grid, Typography } from "@material-ui/core";
|
||
import CardSpacer from "@saleor/components/CardSpacer";
|
||
import CardTitle from "@saleor/components/CardTitle";
|
||
import Container from "@saleor/components/Container";
|
||
import Hr from "@saleor/components/Hr";
|
||
import Skeleton from "@saleor/components/Skeleton";
|
||
import { buttonMessages } from "@saleor/intl";
|
||
import { Button } from "@saleor/macaw-ui";
|
||
import classNames from "classnames";
|
||
import React from "react";
|
||
import { FormattedMessage, useIntl } from "react-intl";
|
||
|
||
import { useStyles } from "../../styles";
|
||
import { AppFetch_appFetchManifest_manifest } from "../../types/AppFetch";
|
||
|
||
export interface AppInstallPageProps {
|
||
data: AppFetch_appFetchManifest_manifest;
|
||
loading: boolean;
|
||
navigateToAppsList: () => void;
|
||
onSubmit: () => void;
|
||
}
|
||
|
||
export const AppInstallPage: React.FC<AppInstallPageProps> = ({
|
||
data,
|
||
loading,
|
||
navigateToAppsList,
|
||
onSubmit
|
||
}) => {
|
||
const intl = useIntl();
|
||
const classes = useStyles({});
|
||
|
||
const name = data?.name || "";
|
||
|
||
return (
|
||
<Container>
|
||
<CardSpacer />
|
||
<Card>
|
||
<CardTitle
|
||
title={
|
||
loading ? (
|
||
<Skeleton />
|
||
) : (
|
||
intl.formatMessage(
|
||
{
|
||
defaultMessage: `You are about to install {name}`,
|
||
description: "section header"
|
||
},
|
||
{ name }
|
||
)
|
||
)
|
||
}
|
||
/>
|
||
<CardContent className={classes.installCard}>
|
||
{loading ? (
|
||
<Skeleton />
|
||
) : (
|
||
<div className={classes.installAppContainer}>
|
||
<div
|
||
className={classNames(
|
||
classes.installIcon,
|
||
classes.installSaleorIcon
|
||
)}
|
||
>
|
||
<img src={saleorDarkLogoSmall} alt="" />
|
||
</div>
|
||
<img src={plusIcon} alt="" />
|
||
<div className={classes.installIcon}>
|
||
<h2>{name?.charAt(0).toUpperCase()}</h2>
|
||
</div>
|
||
</div>
|
||
)}
|
||
</CardContent>
|
||
</Card>
|
||
<CardSpacer />
|
||
<Card>
|
||
<CardTitle
|
||
title={intl.formatMessage({
|
||
defaultMessage: "App permissions",
|
||
description: "section header"
|
||
})}
|
||
/>
|
||
<CardContent>
|
||
{loading ? (
|
||
<Skeleton />
|
||
) : (
|
||
<>
|
||
<Typography className={classes.installPermissionTitle}>
|
||
<FormattedMessage
|
||
defaultMessage="Installing this app will give it following permissions:"
|
||
description="install app permissions"
|
||
/>
|
||
</Typography>
|
||
{!!data?.permissions?.length && (
|
||
<ul className={classes.permissionsContainer}>
|
||
{data?.permissions?.map(perm => (
|
||
<li key={perm.code}>{perm.name}</li>
|
||
))}
|
||
</ul>
|
||
)}
|
||
<Hr className={classes.installSpacer} />
|
||
|
||
<Typography
|
||
variant="body2"
|
||
className={classes.installPrivacyText}
|
||
>
|
||
<FormattedMessage
|
||
defaultMessage="Uninstalling the app will remove all your customer’s personal data stored by {name}. "
|
||
description="install app privacy"
|
||
values={{ name }}
|
||
/>
|
||
<a
|
||
href={data?.dataPrivacyUrl}
|
||
rel="noopener noreferrer"
|
||
target="_blank"
|
||
>
|
||
<FormattedMessage
|
||
defaultMessage="Learn more about data privacy"
|
||
description="app data privacy link"
|
||
/>
|
||
</a>
|
||
</Typography>
|
||
</>
|
||
)}
|
||
</CardContent>
|
||
</Card>
|
||
<CardSpacer />
|
||
<Grid container justify="space-between">
|
||
<Grid xs={6} item>
|
||
<Button variant="secondary" onClick={navigateToAppsList}>
|
||
<FormattedMessage {...buttonMessages.cancel} />
|
||
</Button>
|
||
</Grid>
|
||
<Grid xs={6} item className={classes.alignRight}>
|
||
<Button variant="primary" onClick={onSubmit}>
|
||
<FormattedMessage
|
||
defaultMessage="Install App"
|
||
description="install button"
|
||
/>
|
||
</Button>
|
||
</Grid>
|
||
</Grid>
|
||
</Container>
|
||
);
|
||
};
|
||
|
||
AppInstallPage.displayName = "AppInstallPage";
|
||
export default AppInstallPage;
|