Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nextjs): integrate urql #1

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

## structure

- `nextjs`: nextjs project with tailwind, daisyUI and wagmi (incl. navbar with wallet connect and sign-in with Ethereum)
- `nextjs`: nextjs project with tailwind, daisyUI and wagmi (incl. navbar with wallet connect and sign-in with Ethereum). urql to request data from thegraph
- `hardhat`: smart contract dev
2 changes: 2 additions & 0 deletions nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
"dependencies": {
"daisyui": "^2.14.1",
"ethers": "^5.6.4",
"graphql": "^16.3.0",
"iron-session": "^6.1.2",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"siwe": "^1.1.6",
"urql": "^2.2.0",
"wagmi": "0.2.27"
},
"devDependencies": {
Expand Down
13 changes: 10 additions & 3 deletions nextjs/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import { Provider, chain, defaultChains, Chain } from "wagmi";
import { InjectedConnector } from "wagmi/connectors/injected";
import { WalletConnectConnector } from "wagmi/connectors/walletConnect";
import { WalletLinkConnector } from "wagmi/connectors/walletLink";
import { createClient, Provider as ProviderUrql } from "urql";

const client = createClient({
url: "https://api.thegraph.com/subgraphs/id/Qmf6t4W8obuBcsz243q66c6F1CtxHaQfDLNbPXcWc9qnaX",
});

function MyApp({ Component, pageProps }: AppProps) {
const infuraId = process.env.NEXT_PUBLIC_INFURA_PROJECT_ID;
Expand Down Expand Up @@ -36,9 +41,11 @@ function MyApp({ Component, pageProps }: AppProps) {
};

return (
<Provider>
<Component {...pageProps} autoConnect connectors={connectors} />
</Provider>
<ProviderUrql value={client}>
<Provider>
<Component {...pageProps} autoConnect connectors={connectors} />
</Provider>
</ProviderUrql>
);
}

Expand Down
50 changes: 50 additions & 0 deletions nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@ import type { NextPage } from "next";
import Head from "next/head";
import Navbar from "../components/Navbar";
import styles from "../styles/Home.module.css";
import { useQuery } from "urql";

const Home: NextPage = () => {
const [result, reexecuteQuery] = useQuery({
query: QUERY,
});

const { data, fetching, error } = result;

return (
<div data-theme="cyberpunk" className={styles.container}>
<Head>
Expand All @@ -25,6 +32,15 @@ const Home: NextPage = () => {
repudiandae et a id nisi.
</p>
<button className="btn btn-primary">Get Started</button>
<div className="mt-3">
{fetching ? (
<p>Loading...</p>
) : (
<DiypunkOwners
addresses={data.tokens.map((token: any) => token.owner.id)}
/>
)}
</div>
</div>
</div>
</div>
Expand All @@ -44,3 +60,37 @@ const Home: NextPage = () => {
};

export default Home;

//

const QUERY = `
{
tokens(first: 5) {
id
owner {
id
}
uri
transfers {
id
}
}
owners(first: 5) {
id
ownedTokens {
id
}
balance
}
}
`;

const DiypunkOwners = (props: { addresses: string[] }) => {
return (
<ul>
{props.addresses.map((address: string) => (
<li key={address}>{address}</li>
))}
</ul>
);
};
31 changes: 31 additions & 0 deletions nextjs/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,11 @@
"@ethersproject/properties" "^5.6.0"
"@ethersproject/strings" "^5.6.0"

"@graphql-typed-document-node/core@^3.1.1":
version "3.1.1"
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052"
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==

"@hapi/[email protected]":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@hapi/b64/-/b64-5.0.0.tgz#b8210cbd72f4774985e78569b77e97498d24277d"
Expand Down Expand Up @@ -936,6 +941,14 @@
"@typescript-eslint/types" "5.10.1"
eslint-visitor-keys "^3.0.0"

"@urql/core@^2.4.3":
version "2.4.4"
resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.4.4.tgz#29f1d03cc439134259761e70a78ae20302c3d7fe"
integrity sha512-TD+OS7jG1Ts6QkpU0TZ85i/vu40r71GF0QQFDhnWFtgkHcNwnpkIwWBMa72AR3j2imBTPpk61e/xb39uM/t37A==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
wonka "^4.0.14"

"@walletconnect/browser-utils@^1.7.7":
version "1.7.7"
resolved "https://registry.yarnpkg.com/@walletconnect/browser-utils/-/browser-utils-1.7.7.tgz#4ae0db1ddf49be179ea556af842db3b7afce973d"
Expand Down Expand Up @@ -2512,6 +2525,11 @@ globby@^11.0.4:
merge2 "^1.4.1"
slash "^3.0.0"

graphql@^16.3.0:
version "16.3.0"
resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.3.0.tgz#a91e24d10babf9e60c706919bb182b53ccdffc05"
integrity sha512-xm+ANmA16BzCT5pLjuXySbQVFwH3oJctUVdy81w1sV0vBU0KgDdBGtxQOUd5zqOBk/JayAFeG8Dlmeq74rjm/A==

has-bigints@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
Expand Down Expand Up @@ -3874,6 +3892,14 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"

urql@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/urql/-/urql-2.2.0.tgz#5eade2813f5b61497086a5038ecc7c6e7cbd7153"
integrity sha512-36wnWqDrpXqhwT5r2/qRSZXhb7Y4sXA0nLlYEd3uLgvfIdOA8kUaPdfTujzfrvfCcfiVVFxhzqVAhc8r17NMwQ==
dependencies:
"@urql/core" "^2.4.3"
wonka "^4.0.14"

util-deprecate@^1.0.1, util-deprecate@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
Expand Down Expand Up @@ -3958,6 +3984,11 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"

wonka@^4.0.14:
version "4.0.15"
resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89"
integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==

word-wrap@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
Expand Down