Skip to content

Commit 78db4da

Browse files
Add Graphql and banner
1 parent a6ab302 commit 78db4da

16 files changed

+5240
-138
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GRAPHQL_URL=https://panel.softvag.com/graphql

.graphqlrc.ts

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { loadEnvConfig } from "@next/env";
2+
import type { CodegenConfig } from "@graphql-codegen/cli";
3+
4+
loadEnvConfig(process.cwd());
5+
6+
const config: CodegenConfig = {
7+
schema: `${process.env.GRAPHQL_URL}`,
8+
overwrite: true,
9+
ignoreNoDocuments: true,
10+
documents: "graphql/*.graphql",
11+
generates: {
12+
"gql/": {
13+
preset: "client",
14+
presetConfig: {
15+
fragmentMasking: false,
16+
},
17+
config: {
18+
useTypeImports: true,
19+
enumsAsTypes: true,
20+
defaultScalarType: "unknown",
21+
skipTypename: true,
22+
documentMode: "string",
23+
},
24+
},
25+
},
26+
};
27+
28+
// eslint-disable-next-line import/no-default-export
29+
export default config;

api/graphQLApi.ts

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import { TypedDocumentString } from "@/gql/graphql";
2+
3+
type GraphQLResponse<T> =
4+
| { data?: undefined; errors: { message: string }[] }
5+
| { data: T; errors?: undefined };
6+
7+
type PageItem = {
8+
Title: string;
9+
};
10+
11+
type PagesGraphqlResponse = {
12+
pages: {
13+
data: {
14+
id: string;
15+
attributes: PageItem;
16+
}[];
17+
};
18+
};
19+
20+
export async function ExecuteGraphql<TResult, TVariables>(
21+
query: TypedDocumentString<TResult, TVariables>,
22+
variables: TVariables
23+
): Promise<TResult> {
24+
if (!process.env.GRAPHQL_URL) {
25+
throw TypeError("GRAPHQL_URL is not defined");
26+
}
27+
const res = await fetch(process.env.GRAPHQL_URL, {
28+
method: "POST",
29+
body: JSON.stringify({
30+
query,
31+
variables,
32+
}),
33+
headers: {
34+
"Content-Type": "application/json",
35+
},
36+
});
37+
38+
const graphqlResponse = (await res.json()) as GraphQLResponse<TResult>;
39+
if (graphqlResponse.errors) {
40+
throw TypeError(`GrapQL Error`, { cause: graphqlResponse.errors });
41+
}
42+
43+
return graphqlResponse.data;
44+
}

app/components/banner.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export default function Banner() {
2+
return (
3+
<div className="flex items-center gap-x-6 bg-red-800 px-6 py-2.5 sm:px-3.5 sm:before:flex-1 z-10 absolute top-14 left-0 w-full">
4+
<p className="text-sm leading-6 text-white">
5+
Urlop w dniach 19.08.2024 - 01.09.2024
6+
</p>
7+
<div className="flex flex-1 justify-end"></div>
8+
</div>
9+
);
10+
}

app/components/links.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { useState } from "react";
1111
import { FaCaretDown } from "react-icons/fa";
1212
import { Fragment } from "react";
1313
import { Menu, Transition } from "@headlessui/react";
14+
import Banner from "./banner";
1415

1516
export function Links() {
1617
const pathname = usePathname();
@@ -276,6 +277,7 @@ export function Links() {
276277
</ul>
277278
</div>
278279
</div>
280+
<Banner />
279281
</nav>
280282
);
281283
}

app/o-firmie/page.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@ import Link from "next/link";
22
import Main from "../components/main";
33
import Image from "next/image";
44
import type { Metadata } from "next";
5+
import { ExecuteGraphql } from "@/api/graphQLApi";
6+
import { PagesGetListDocument } from "@/gql/graphql";
57

68
export const metadata: Metadata = {
79
title: "O Firmie",
810
};
911

10-
export default function About() {
12+
export default async function About() {
13+
const data = await ExecuteGraphql(PagesGetListDocument, {});
14+
console.log(data.pages?.data);
15+
1116
return (
1217
<Main>
1318
<div className="mx-auto max-w-7xl px-6 lg:px-8">

gql/gql.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/* eslint-disable */
2+
import * as types from './graphql';
3+
4+
5+
6+
/**
7+
* Map of all GraphQL operations in the project.
8+
*
9+
* This map has several performance disadvantages:
10+
* 1. It is not tree-shakeable, so it will include all operations in the project.
11+
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
12+
* 3. It does not support dead code elimination, so it will add unused operations.
13+
*
14+
* Therefore it is highly recommended to use the babel or swc plugin for production.
15+
*/
16+
const documents = {
17+
"query PagesGetList {\n pages {\n data {\n id\n attributes {\n Title\n }\n }\n }\n}": types.PagesGetListDocument,
18+
};
19+
20+
/**
21+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
22+
*/
23+
export function graphql(source: "query PagesGetList {\n pages {\n data {\n id\n attributes {\n Title\n }\n }\n }\n}"): typeof import('./graphql').PagesGetListDocument;
24+
25+
26+
export function graphql(source: string) {
27+
return (documents as any)[source] ?? {};
28+
}

0 commit comments

Comments
 (0)