To open any snapshots taken, the user has to follow these steps:
- Click on the menu;
- My content;
- My snapshots;
- Click on the model;
- Search for the gallery icon (if I deduce I should click there );
[ | |
{ "id": "01coin", "symbol": "zoc", "name": "01coin" }, | |
{ | |
"id": "0-5x-long-algorand-token", | |
"symbol": "algohalf", | |
"name": "0.5X Long Algorand" | |
}, | |
{ | |
"id": "0-5x-long-altcoin-index-token", | |
"symbol": "althalf", |
import React, { useContext, useCallback } from 'react' | |
import { useQuery } from 'react-apollo' | |
import { SomeEntity } from 'dh-apollo-entities' | |
import { UiAvatar } from 'dh-react-ui' | |
import { OurContextAPI } from '@/context' | |
const SmartAvatar = (props) => { | |
const { data, loading } = useQuery(SomeEntity.req, { variables: { d: props.d } }) | |
const { Link, generateContextLinks } = useContext(OurContextAPI) |
import { ApolloClient } from 'apollo-client' | |
import { ApolloLink } from 'apollo-link' | |
import { InMemoryCache } from 'apollo-cache-inmemory' | |
import { ApiGw, User } from 'dh-apollo-entities' | |
const cache = new InMemoryCache() | |
const ApiGwLink = ApiGw.link({ | |
... | |
}) |
Okay, this is where I leave you.
We have a few issues with our current Infinite Scroll:
/* | |
// Ideia de uso: | |
const fmongo = FunctionalMongo('mongodb://0.0.0.0:27017/yhub') | |
.collect('User') | |
.byId({ id }) | |
*/ | |
import { curry, objOf } from 'ramda' |
// | |
// Create a resource file, for example: 'resources/user.js'. | |
// Create your resource-actions and export your custom resource | |
// | |
// File: resources/user.js | |
import { resources } from 'x-resources' | |
const baseURL = 'https://api.github.com' |
// https://www.web2pdfconvert.com/ | |
var pages = [ | |
"http://pegasus.portal.nom.br/introducao/", | |
"http://pegasus.portal.nom.br/o-portal/", | |
"http://pegasus.portal.nom.br/fotos-analisadas/", | |
"http://pegasus.portal.nom.br/simbologias/", | |
"http://pegasus.portal.nom.br/livros/", | |
"http://pegasus.portal.nom.br/livros/da-terra-para-o-cosmo/", | |
"http://pegasus.portal.nom.br/livros/no-coracao-da-terra/", |
import axios from "axios" | |
axios.defaults.headers.put['Content-Type'] = 'application/json'; | |
axios.defaults.headers.post['Content-Type'] = 'application/json'; | |
const getDefaultActions = () => ({ | |
get: { method: 'GET' }, | |
save: { method: 'POST' }, | |
query: { method: 'GET' }, | |
update: { method: 'PUT' }, | |
remove: { method: 'DELETE' }, |