diff --git a/.changeset/eleven-cycles-warn.md b/.changeset/eleven-cycles-warn.md new file mode 100644 index 0000000..a0e2f27 --- /dev/null +++ b/.changeset/eleven-cycles-warn.md @@ -0,0 +1,5 @@ +--- +"saleor-app-data-importer": minor +--- + +Add dark mode styling diff --git a/.changeset/stale-rockets-change.md b/.changeset/stale-rockets-change.md new file mode 100644 index 0000000..96ab828 --- /dev/null +++ b/.changeset/stale-rockets-change.md @@ -0,0 +1,5 @@ +--- +"saleor-app-data-importer": patch +--- + +Add valid icon and color diff --git a/.changeset/thirty-poets-collect.md b/.changeset/thirty-poets-collect.md new file mode 100644 index 0000000..8fa1c4c --- /dev/null +++ b/.changeset/thirty-poets-collect.md @@ -0,0 +1,9 @@ +--- +"saleor-app-data-importer": minor +--- + +Enable origins check for installation via env variables + +Update app-sdk + +Set Nuvo development mode based on env variables diff --git a/apps/data-importer/.env.example b/apps/data-importer/.env.example index 2bb5467..f62e6b0 100644 --- a/apps/data-importer/.env.example +++ b/apps/data-importer/.env.example @@ -1,2 +1,3 @@ # https://getnuvo.com/ -NEXT_PUBLIC_NUVO_LICENSE_KEY= \ No newline at end of file +NEXT_PUBLIC_NUVO_LICENSE_KEY= +NEXT_PUBLIC_NUVO_PROD_MODE=false \ No newline at end of file diff --git a/apps/data-importer/public/logo.svg b/apps/data-importer/public/logo.svg new file mode 100644 index 0000000..9971107 --- /dev/null +++ b/apps/data-importer/public/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/data-importer/saleor-app.ts b/apps/data-importer/saleor-app.ts index e121e2c..af23382 100644 --- a/apps/data-importer/saleor-app.ts +++ b/apps/data-importer/saleor-app.ts @@ -11,9 +11,6 @@ import { APL, FileAPL, SaleorCloudAPL, UpstashAPL, VercelAPL } from "@saleor/app export let apl: APL; switch (process.env.APL) { - case "vercel": - apl = new VercelAPL(); - break; case "upstash": // Require `UPSTASH_URL` and `UPSTASH_TOKEN` environment variables apl = new UpstashAPL(); diff --git a/apps/data-importer/src/modules/authorization/use-authorized-token.ts b/apps/data-importer/src/modules/authorization/use-authorized-token.ts index 845bc01..1903dd4 100644 --- a/apps/data-importer/src/modules/authorization/use-authorized-token.ts +++ b/apps/data-importer/src/modules/authorization/use-authorized-token.ts @@ -3,8 +3,7 @@ import { useEffect, useState } from "react"; import * as jose from "jose"; /** - * TODO test - * TODO extract to app-sdk + * use app-sdk */ export function useAuthorizedToken(requirePermission: string) { const [authorized, setAuthorized] = useState(); diff --git a/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx b/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx index 2d1c671..59f3c24 100644 --- a/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx +++ b/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useState } from "react"; +import React, { useCallback, useMemo, useState } from "react"; import dynamic from "next/dynamic"; import { ConfigureAPI, OnResults, SettingsAPI } from "nuvo-react"; import { @@ -8,10 +8,11 @@ import { } from "./customers-columns-model"; import dotObject from "dot-object"; import { useAuthorizedToken } from "../../authorization/use-authorized-token"; -import { Alert, Button } from "@saleor/macaw-ui"; +import { Alert, Button, SaleorTheme, useTheme } from "@saleor/macaw-ui"; import { CustomersImportingResults } from "../customers-results/customers-importing-results"; -import { LinearProgress } from "@material-ui/core"; +import { lighten, LinearProgress } from "@material-ui/core"; import { CloudUpload } from "@material-ui/icons"; +import { Theme } from "@material-ui/core/styles"; let PassSubmitResult: any; let RejectSubmitResult: any; @@ -34,57 +35,190 @@ const NuvoImporter = dynamic( const columns = getCustomersModelColumns(); -const nuvoSettings: SettingsAPI = { - columns, - developerMode: true, //todo - identifier: "customers", - modal: false, - style: { - buttons: { - primary: { - background: "black", - color: "#fff", +const getNuvoSettings = (theme: SaleorTheme): SettingsAPI => { + const dropdownStyles = { + option: { + color: theme.palette.text.primary, + ":hover": { + background: `${lighten(theme.palette.background.default, 0.1)}`, }, }, - loader: { - loadAnimationColor: "#000", - }, header: { - description: { - display: "none", - }, + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + root: { + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + search: { root: { - // display: "none", + background: theme.palette.background.default, + color: theme.palette.text.primary, }, }, - progressBar: { + button: { root: { - display: "none", + background: theme.palette.background.default, + color: theme.palette.text.primary, + maxHeight: "20px", + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, }, }, - dropzone: { - icon: { - box: { - filter: "grayscale(1)", + } as const; + + return { + columns, + enableExamples: false, + developerMode: process.env.NEXT_PUBLIC_NUVO_PROD_MODE !== "true", + identifier: "customers", + modal: false, + style: { + footer: { + root: { + background: theme.palette.background.default, }, }, - root: { - background: "#fff", - border: "1px dashed #ddd", + buttons: { + primary: { + background: "black", + color: "#fff", + ":hover": { + backgroundColor: "black", + color: "#fff", + }, + }, + secondary: { + background: "#444", + color: "#fff", + border: "none", + ":hover": { + background: "#444", + color: "#fff", + }, + }, + }, + loader: { + loadAnimationColor: theme.palette.type === "light" ? "#000" : "#fff", + }, + headerSelect: { + root: { + background: theme.palette.background.default, + border: "none", + }, + table: { + selectRowColor: lighten(theme.palette.background.default, 0.3), + th: { + color: theme.palette.text.primary, + background: theme.palette.background.default, + }, + td: { + color: theme.palette.text.primary, + background: theme.palette.background.default, + }, + hoverRowColor: lighten(theme.palette.background.default, 0.1), + }, + sheetName: { + root: { + display: "none", + }, + }, + }, + columnMatch: { + notMatchingValue: { + root: { + background: lighten(theme.palette.background.default, 0.1), + }, + }, + buttonJoined: { + root: { + background: lighten(theme.palette.background.default, 0.1), + }, + }, + root: { + background: theme.palette.background.default, + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + }, + columnMatchHeader: { + dropdown: dropdownStyles, + root: { + background: theme.palette.background.default, + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + }, + }, + columnMatchValue: { + emptyValue: { + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + dropdown: dropdownStyles, + root: { + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + background: theme.palette.background.default, + }, + }, + }, + header: { + description: { + display: "none", + }, + root: { + // display: "none", + }, + }, + progressBar: { + root: { + display: "none", + }, + }, + dropzone: { + icon: { + box: { + filter: "grayscale(1)", + }, + }, + root: { + background: theme.palette.background.default, + border: "1px dashed #ddd", + }, + }, + reviewEntries: { + root: { + backgroundColor: "transparent", + }, + table: { + th: { + backgroundColor: "transparent", + }, + td: { + normal: { + backgroundColor: "transparent", + }, + root: { + backgroundColor: "transparent", + }, + }, + }, + }, + globals: { + fontFamily: "Inter", + backgroundColor: "transparent", + textColor: "inherit", }, }, - globals: { fontFamily: "Inter", backgroundColor: "transparent" }, - }, - title: "Upload customers to Saleor", - disableExcelTemplate: true, - disableTemplates: true, - allowManualInput: true, + title: "Upload customers to Saleor", + disableExcelTemplate: true, + disableTemplates: true, + allowManualInput: true, + }; }; const licenseKey = process.env.NEXT_PUBLIC_NUVO_LICENSE_KEY as string; export const CustomersImporterView = () => { const authorized = useAuthorizedToken("MANAGE_USERS"); + const saleorTheme = useTheme(); const [importedLines, setImportedLines] = useState(null); @@ -96,6 +230,10 @@ export const CustomersImporterView = () => { setImportedLines(parsedResult); }, []); + const nuvoSettings = useMemo(() => { + return getNuvoSettings(saleorTheme); + }, [saleorTheme]); + if (authorized === undefined) { return
Authorizing
; } diff --git a/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx b/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx index cae3fd7..cf90e2d 100644 --- a/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx +++ b/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx @@ -12,9 +12,9 @@ export const CustomersImportingResults = ({ const [importingStarted, setImportingStarted] = useState(false); return ( -
+
- Customers rows from imported file + Customers rows from the imported file diff --git a/apps/data-importer/src/pages/_app.tsx b/apps/data-importer/src/pages/_app.tsx index 7fb562b..454ceb4 100644 --- a/apps/data-importer/src/pages/_app.tsx +++ b/apps/data-importer/src/pages/_app.tsx @@ -1,12 +1,42 @@ import "@saleor/apps-shared/src/globals.css"; +import "../styles/globals.css"; import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; -import React, { useEffect } from "react"; +import { + dark, + light, + SaleorThemeColors, + ThemeProvider as MacawUIThemeProvider, +} from "@saleor/macaw-ui"; +import React, { PropsWithChildren, useEffect } from "react"; import { AppProps } from "next/app"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { NoSSRWrapper } from "../no-ssr-wrapper"; -import { MacawThemeProvider } from "@saleor/apps-shared"; +import { Theme } from "@material-ui/core/styles"; + +type PalettesOverride = Record<"light" | "dark", SaleorThemeColors>; + +/** + * Temporary override of colors, to match new dashboard palette. + * Long term this will be replaced with Macaw UI 2.x with up to date design tokens + */ +const palettes: PalettesOverride = { + light: { + ...light, + background: { + default: "#fff", + paper: "#fff", + }, + }, + dark: { + ...dark, + background: { + default: "hsla(211, 42%, 14%, 1)", + paper: "hsla(211, 42%, 14%, 1)", + }, + }, +}; /** * Ensure instance is a singleton. @@ -14,6 +44,13 @@ import { MacawThemeProvider } from "@saleor/apps-shared"; */ const appBridgeInstance = typeof window !== "undefined" ? new AppBridge() : undefined; +/** + * That's a hack required by Macaw-UI incompatibility with React@18 + */ +const ThemeProvider = MacawUIThemeProvider as React.FC< + PropsWithChildren<{ overrides?: Partial; ssr: boolean; palettes: PalettesOverride }> +>; + function NextApp({ Component, pageProps }: AppProps) { /** * Configure JSS (used by MacawUI) for SSR. If Macaw is not used, can be removed. @@ -28,11 +65,11 @@ function NextApp({ Component, pageProps }: AppProps) { return ( - + - + ); diff --git a/apps/data-importer/src/pages/api/register.ts b/apps/data-importer/src/pages/api/register.ts index 09aaec2..4596d14 100644 --- a/apps/data-importer/src/pages/api/register.ts +++ b/apps/data-importer/src/pages/api/register.ts @@ -2,8 +2,27 @@ import { createAppRegisterHandler } from "@saleor/app-sdk/handlers/next"; import { saleorApp } from "../../../saleor-app"; +const allowedUrlsPattern = process.env.ALLOWED_DOMAIN_PATTERN; + /** * Required endpoint, called by Saleor to install app. * It will exchange tokens with app, so saleorApp.apl will contain token */ -export default createAppRegisterHandler(saleorApp); +export default createAppRegisterHandler({ + apl: saleorApp.apl, + /** + * Prohibit installation from Saleors other than specified by the regex. + * Regex source is ENV so if ENV is not set, all installations will be allowed. + */ + allowedSaleorUrls: [ + (url) => { + if (allowedUrlsPattern) { + const regex = new RegExp(allowedUrlsPattern); + + return regex.test(url); + } + + return true; + }, + ], +}); diff --git a/apps/data-importer/src/pages/importer.tsx b/apps/data-importer/src/pages/importer.tsx index b4408c4..db43307 100644 --- a/apps/data-importer/src/pages/importer.tsx +++ b/apps/data-importer/src/pages/importer.tsx @@ -1,6 +1,6 @@ import { NextPage } from "next"; import React, { ComponentProps } from "react"; -import { Container, Divider, Typography } from "@material-ui/core"; +import { Container, Divider } from "@material-ui/core"; import { Button, makeStyles, PageTab, PageTabs, SaleorTheme } from "@saleor/macaw-ui"; import { CustomersImporterView } from "../modules/customers/customers-importer-nuvo/customers-importer-view"; import GraphQLProvider from "../providers/GraphQLProvider"; @@ -11,7 +11,7 @@ type Tab = "customers"; const useStyles = makeStyles((theme: SaleorTheme) => ({ wrapper: { - minHeight: '100vh', + minHeight: `100vh`, }, })); @@ -34,7 +34,7 @@ const ImporterPage: NextPage = () => {
} + icon={} />} name="Data Importer" author="By Saleor Commerce" rightColumnContent={ @@ -58,7 +58,7 @@ const ImporterPage: NextPage = () => {
} /> - + { - + {activeTab === "customers" && }
diff --git a/apps/data-importer/src/public/favicon.ico b/apps/data-importer/src/public/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/apps/data-importer/src/public/favicon.ico and /dev/null differ diff --git a/apps/data-importer/src/public/vercel.svg b/apps/data-importer/src/public/vercel.svg deleted file mode 100644 index fbf0e25..0000000 --- a/apps/data-importer/src/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/apps/data-importer/src/styles/globals.css b/apps/data-importer/src/styles/globals.css index c1fe16f..9bdd0d0 100644 --- a/apps/data-importer/src/styles/globals.css +++ b/apps/data-importer/src/styles/globals.css @@ -2,7 +2,6 @@ body { font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; color: #111; - padding: 1rem 2rem; } code { diff --git a/apps/monitoring/README.md b/apps/monitoring/README.md index 8a082ab..4447e72 100644 --- a/apps/monitoring/README.md +++ b/apps/monitoring/README.md @@ -5,36 +5,45 @@ ## Local development ### Start Monitoring backend + Run: - ```shell + +```shell docker-compose up - ``` +``` + It is beneficial to run this command in a separate terminal tab to observe backend logs easily. By default, backend will run at `localhost:5001` with: - - Manifest at `/manifest` - - Graphql Playground at `/graphql` - - OpenApi viewer at `/docs` + +- Manifest at `/manifest` +- Graphql Playground at `/graphql` +- OpenApi viewer at `/docs` ### Develop frontend: Installing dependencies with: + ```shell pnpm i ``` Running dev server + ```shell pnpm dev ``` + The frontend app will run at `localhost:3000`. By default, it acts as a proxy and redirects all unhandled requests to the backend (configured by `MONITORING_APP_API_URL` env). This way, all frontend and backend endpoints are accessible at `http://localhost:3000` ### Test with Saleor + Expose `http://localhost:3000` using a tunnel and use `https://your.tunnel/manifest` manifest URL to install `Monitoring` app ### Graphql Playground + To use Graphql Playground, `Monitoring` app needs to be installed in Saleor, and HTTP headers must be set: ```json @@ -45,9 +54,11 @@ To use Graphql Playground, `Monitoring` app needs to be installed in Saleor, and ``` ### Testing DataDog integration + Use these credentials sets to test DataDog integration: Working credentials: + ```json { "site": "US1", @@ -56,6 +67,7 @@ Working credentials: ``` Credentials that validate but generate an error while sending events + ```json { "site": "EU1", diff --git a/apps/monitoring/src/setup-tests.ts b/apps/monitoring/src/setup-tests.ts index 5046278..5f1e198 100644 --- a/apps/monitoring/src/setup-tests.ts +++ b/apps/monitoring/src/setup-tests.ts @@ -3,4 +3,4 @@ * * https://vitest.dev/config/#setupfiles */ -export {} +export {}; diff --git a/apps/slack/src/pages/_app.tsx b/apps/slack/src/pages/_app.tsx index 3a65e8e..ffbfca4 100644 --- a/apps/slack/src/pages/_app.tsx +++ b/apps/slack/src/pages/_app.tsx @@ -3,7 +3,12 @@ import "../styles/globals.css"; import { Theme } from "@material-ui/core/styles"; import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; -import { dark, light, SaleorThemeColors, ThemeProvider as MacawUIThemeProvider } from "@saleor/macaw-ui"; +import { + dark, + light, + SaleorThemeColors, + ThemeProvider as MacawUIThemeProvider, +} from "@saleor/macaw-ui"; import React, { PropsWithChildren, useEffect } from "react"; import { AppLayoutProps } from "../../types"; @@ -63,7 +68,6 @@ const ThemeProvider = MacawUIThemeProvider as React.FC< PropsWithChildren<{ overrides?: Partial; ssr: boolean; palettes: PalettesOverride }> >; - function SaleorApp({ Component, pageProps }: AppLayoutProps) { const getLayout = Component.getLayout ?? ((page) => page); diff --git a/package.json b/package.json index dafb877..8824f0f 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "prettier": "^2.8.3", "turbo": "^1.7.4", "eslint": "^8.33.0", - "husky": "^8.0.3" + "husky": "^8.0.3", + "lint-staged": "^13.1.2" }, "engines": { "node": ">=18.0.0" diff --git a/packages/shared/src/app-icon/app-icon.tsx b/packages/shared/src/app-icon/app-icon.tsx index 5086634..b136456 100644 --- a/packages/shared/src/app-icon/app-icon.tsx +++ b/packages/shared/src/app-icon/app-icon.tsx @@ -5,7 +5,6 @@ import clsx from "clsx"; const useStyles = makeStyles({ appIconContainer: { - background: "rgb(58, 86, 199)", display: "flex", flexDirection: "column", justifyContent: "center", @@ -23,11 +22,17 @@ type Props = HTMLProps & { icon?: ReactNode; }; -export function AppIcon({ className, children, text, icon, ...props }: Props) { +export function AppIcon({ className, children, text, icon, theme, ...props }: Props) { const styles = useStyles(); return ( -
+
{text && {text}} {icon && icon}
diff --git a/packages/shared/src/title-bar/title-bar.tsx b/packages/shared/src/title-bar/title-bar.tsx index 180936b..6be47e4 100644 --- a/packages/shared/src/title-bar/title-bar.tsx +++ b/packages/shared/src/title-bar/title-bar.tsx @@ -22,12 +22,14 @@ export function TitleBar({ bottomMargin, }: Props) { return ( -
- +
+ {icon &&
{icon}
}

{name}

diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 55253ac..1d8eea4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,6 +8,7 @@ importers: eslint: ^8.33.0 eslint-config-saleor: workspace:* husky: ^8.0.3 + lint-staged: ^13.1.2 prettier: ^2.8.3 turbo: ^1.7.4 devDependencies: @@ -15,6 +16,7 @@ importers: eslint: 8.33.0 eslint-config-saleor: link:packages/eslint-config-saleor husky: 8.0.3 + lint-staged: 13.1.2 prettier: 2.8.3 turbo: 1.7.4 @@ -6245,6 +6247,11 @@ packages: engines: {node: '>= 6'} dev: false + /commander/9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + dev: true + /common-tags/1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} @@ -7816,6 +7823,21 @@ packages: strip-final-newline: 2.0.0 dev: true + /execa/6.1.0: + resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 3.0.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + /exenv/1.2.2: resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} @@ -8221,6 +8243,11 @@ packages: pump: 3.0.0 dev: true + /get-stream/6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + /get-symbol-description/1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} @@ -8635,6 +8662,11 @@ packages: engines: {node: '>=8.12.0'} dev: true + /human-signals/3.0.1: + resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} + engines: {node: '>=12.20.0'} + dev: true + /husky/8.0.3: resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} engines: {node: '>=14'} @@ -8994,6 +9026,11 @@ packages: engines: {node: '>=8'} dev: true + /is-stream/3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + /is-string/1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -9426,6 +9463,29 @@ packages: /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + /lint-staged/13.1.2: + resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==} + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + cli-truncate: 3.1.0 + colorette: 2.0.19 + commander: 9.5.0 + debug: 4.3.4 + execa: 6.1.0 + lilconfig: 2.0.6 + listr2: 5.0.7 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-inspect: 1.12.3 + pidtree: 0.6.0 + string-argv: 0.3.1 + yaml: 2.2.1 + transitivePeerDependencies: + - enquirer + - supports-color + dev: true + /listenercount/1.0.1: resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} dev: false @@ -9499,6 +9559,25 @@ packages: wrap-ansi: 7.0.0 dev: true + /listr2/5.0.7: + resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==} + engines: {node: ^14.13.1 || >=16.0.0} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.19 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.0 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + /load-yaml-file/0.2.0: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} engines: {node: '>=6'} @@ -9853,6 +9932,11 @@ packages: engines: {node: '>=6'} dev: true + /mimic-fn/4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -10234,6 +10318,13 @@ packages: path-key: 3.1.1 dev: true + /npm-run-path/5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + /npmlog/4.1.2: resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} dependencies: @@ -10405,6 +10496,13 @@ packages: mimic-fn: 2.1.0 dev: true + /onetime/6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + /open/8.4.0: resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} engines: {node: '>=12'} @@ -10593,6 +10691,11 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + /path-key/4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + /path-parse/1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} @@ -10638,6 +10741,12 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + /pidtree/0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + /pify/4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} @@ -11894,6 +12003,11 @@ packages: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} + /string-argv/0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} + engines: {node: '>=0.6.19'} + dev: true + /string-env-interpolation/1.0.1: resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} dev: true @@ -12008,6 +12122,11 @@ packages: engines: {node: '>=6'} dev: true + /strip-final-newline/3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + /strip-indent/3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -13179,6 +13298,11 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} + /yaml/2.2.1: + resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + engines: {node: '>= 14'} + dev: true + /yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} diff --git a/turbo.json b/turbo.json index a34745d..40e6a36 100644 --- a/turbo.json +++ b/turbo.json @@ -9,7 +9,7 @@ "outputs": ["dist/**", ".next/**"] }, "build#saleor-app-data-importer": { - "env": ["APL", "NEXT_PUBLIC_NUVO_LICENSE_KEY", "NEXT_PUBLIC_VERCEL_ENV"] + "env": ["APL", "NEXT_PUBLIC_NUVO_LICENSE_KEY", "NEXT_PUBLIC_VERCEL_ENV", "NEXT_PUBLIC_NUVO_PROD_MODE"] }, "build#saleor-app-invoices": { "env": [