- flow types
- api tested
- graphiql for out graph concept
- packages to separated publish
- google/yandex/facebook analitis
- gql ssr hybrid query/subscriptions
- use-url-state
- children-responsive
- nextjs-passportjs
- react-spring-reveals
git clone url sandbox
cd sandbox
npm i
PORT=3000 npm run dev
If you need to use sandbox not only for hasura gql, pls make PR.
In process environment must be defined:
GQL_SECRET='<x-hasura-admin-secret>'
GQL_PATH='<gqlurl>'
FB_TOKEN=''
GA_TOKEN=''
YM_TOKEN=''
CONTAINER_NAME=''
GIT_REGISTRY=''
GIT_REPOSITORY=''
GIT_USERNAME=''
GIT_PASSWORD=''
PORT=3000
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
GOOGLE_CALLBACK="https://<url>/api/auth/google/callback"
Optional environment:
PATH_PREFIX='/my-repo'
Edit pages/api
.
Simple googleAnalitics, yandexMetrika, facebookPixel integration with triggers support.
import React, { useContext } = 'react';
import { AnaliticsProvider, Context } from "./packages/analitics";
const props = {
facebookPixel: 556647711153866,
googleAnalitics: "UA-64254068-3",
yandexMetrika: 53888251
};
const Page = () => {
const { trigger } = useContext(Context);
return <div
onClick={() => {
trigger('click', { value: 7 });
}}
>
page
</div>;
};
export default () => {
return <AnaliticsProvider {...props}>
<Page/>
</AnaliticsProvider>;
};
Using url query as state storage.
For example:
const [{ x }, setValue] = useQuery('abc', { x: 1 });
It store { x: 1 }
object in query ?abc={x:1}
.
Tag <picture/>
with responsive-loader
demo page
Prepare image require outer any react render function.
const ri = require('../images/sandbox.jpg?sizes[]=1800,sizes[]=1280,sizes[]=960,sizes[]=600,sizes[]=300,sizes[]=100');
Insert into your render <Picture/>
component. They create picture with sources for each image size. For example for size 1280, will be @media (min-width: 1280px)
.
<Picture images={ri.images} src={ri.src} />
You can send any <img/>
props into <Picture/>
.
<Picture images={ri.images} src={ri.src} style={{ width: '100%' }} />
Simple way to use ssr gql.
import React from 'react';
import gql from 'graphql-tag';
import { useGql, useMutation } from '../../imports/packages/gql/use';
// Includes ../../imports/packages/gql/ssr ssrWrap
import { wrapPage } from '../../imports/wrap-page';
const query = gql`
query {
items {
id
}
}
`;
export default wrapPage(() => {
const result = useGql(query);
// query and cache on server
// query from cache on client
// subscribe
return <div>{JSON.stringify(result.data, null, 1)}</div>;
});
Example on /_sandbox/graphiql
.
Viewer based on nodes, links and props mutated data.
- js responsive for children
- js move content based on mouse move
import { ChildrenResponsive } from '../../imports/packages/children-responsive';
// Picture
<ChildrenResponsive>
<Picture images={ri.images} src={ri.src} />
</ChildrenResponsive>
// Or and markup
<ChildrenResponsive>
<div style={{ display: 'inline-block' }}>inline-block</div>
</ChildrenResponsive>