This commit is contained in:
Chris Troutner
2022-02-02 11:53:22 -08:00
parent 3e26f5f52a
commit 7ab50ffe8c
3 changed files with 48 additions and 48 deletions
+3 -3
View File
@@ -7,7 +7,7 @@
module.exports = {
/* Your site config here */
plugins: [
"fullstack-gatsby-theme-bch-wallet",
'fullstack-gatsby-theme-bch-wallet',
// 'bch-wallet-plugin-postoffice',
// {
// resolve: 'gatsby-plugin-compile-es6-packages',
@@ -16,8 +16,8 @@ module.exports = {
// }
// },
// require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep')
"gatsby-plugin-bch-sweep",
"gatsby-plugin-bch-create-token"
'gatsby-plugin-bch-sweep',
'gatsby-plugin-bch-create-token'
],
// https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs
flags: {
@@ -6,65 +6,65 @@
It over-rides he default file in the gatsby-ipfs-web-wallet Theme.
*/
import React from "react"
import { Sidebar } from "adminlte-2-react"
import React from 'react'
import { Sidebar } from 'adminlte-2-react'
import Wallet from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/wallet"
import Tokens from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/tokens"
import Configure from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/configure"
import SendReceive from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/send-receive"
import Wallet from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/wallet'
import Tokens from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/tokens'
import Configure from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/configure'
import SendReceive from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/send-receive'
import About from "../../about"
import Sweep from "gatsby-plugin-bch-sweep/src/components/sweep/index"
import CreateToken from "gatsby-plugin-bch-create-token/src/components/create-token"
import About from '../../about'
import Sweep from 'gatsby-plugin-bch-sweep/src/components/sweep/index'
import CreateToken from 'gatsby-plugin-bch-create-token/src/components/create-token'
const { Item } = Sidebar
const MenuComponents = props => {
return [
{
key: "Tokens",
component: <Tokens key="Tokens" {...props} />,
menuItem: <Item icon="fas-coins" key="Tokens" text="Tokens" />
key: 'Tokens',
component: <Tokens key='Tokens' {...props} />,
menuItem: <Item icon='fas-coins' key='Tokens' text='Tokens' />
},
{
key: "Send/Receive BCH",
component: <SendReceive key="Send/Receive BCH" {...props} />,
key: 'Send/Receive BCH',
component: <SendReceive key='Send/Receive BCH' {...props} />,
menuItem: (
<Item
icon="fa-exchange-alt"
key="Send/Receive BCH"
text="Send/Receive BCH"
icon='fa-exchange-alt'
key='Send/Receive BCH'
text='Send/Receive BCH'
/>
)
},
{
key: "Sweep",
component: <Sweep key="Sweep" {...props} />,
menuItem: <Item icon="fas-arrow-circle-up" key="Sweep" text="Sweep" />
key: 'Sweep',
component: <Sweep key='Sweep' {...props} />,
menuItem: <Item icon='fas-arrow-circle-up' key='Sweep' text='Sweep' />
},
{
key: "Wallet",
component: <Wallet key="Wallet" interface="rest-api" {...props} />,
key: 'Wallet',
component: <Wallet key='Wallet' interface='rest-api' {...props} />,
// component: <Wallet key="Wallet" interface="consumer-api" {...props} />,
menuItem: <Item icon="fa-wallet" key="Wallet" text="Wallet" />
menuItem: <Item icon='fa-wallet' key='Wallet' text='Wallet' />
},
{
key: "Create Token",
component: <CreateToken key="Create Token" {...props} />,
key: 'Create Token',
component: <CreateToken key='Create Token' {...props} />,
menuItem: (
<Item icon="fas-plus-square" key="Create Token" text="Create Token" />
<Item icon='fas-plus-square' key='Create Token' text='Create Token' />
)
},
{
key: "Configure",
component: <Configure key="Configure" {...props} />,
menuItem: <Item icon="fas-cog" key="Configure" text="Configure" />
key: 'Configure',
component: <Configure key='Configure' {...props} />,
menuItem: <Item icon='fas-cog' key='Configure' text='Configure' />
},
{
key: "About",
component: <About key="About" {...props} />,
menuItem: <Item icon="fas-question" key="About" text="About" />
key: 'About',
component: <About key='About' {...props} />,
menuItem: <Item icon='fas-question' key='About' text='About' />
}
]
}
+13 -13
View File
@@ -8,18 +8,18 @@ export default function HTML (props) {
return (
<html {...props.htmlAttributes}>
<head>
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<meta charSet='utf-8' />
<meta httpEquiv='x-ua-compatible' content='ie=edge' />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
name='viewport'
content='width=device-width, initial-scale=1, shrink-to-fit=no'
/>
{/* Loading animation should be loaded very first thing. */}
<div
className="test"
key="loader"
id="___loader"
className='test'
key='loader'
id='___loader'
style={{
alignItems: 'center',
backgroundColor: '#F2F2F2',
@@ -34,27 +34,27 @@ export default function HTML (props) {
flexDirection: 'column'
}}
>
<img src="https://i.imgur.com/8n8PYAi.gif" alt="" width="250" />
<img src='https://i.imgur.com/8n8PYAi.gif' alt='' width='250' />
Loading...
</div>
{/* minimal-slp-wallet-web */}
{/* <script src='https://unpkg.com/minimal-slp-wallet@3.6.1' /> */}
<script src="https://unpkg.com/minimal-slp-wallet" />
<script src='https://unpkg.com/minimal-slp-wallet' />
{/* bch-message-lib */}
<script src="https://unpkg.com/bch-message-lib" />
<script src='https://unpkg.com/bch-message-lib' />
{/* bch-token-sweep */}
<script src="https://unpkg.com/bch-token-sweep" />
<script src='https://unpkg.com/bch-token-sweep' />
{props.headComponents}
</head>
<body {...props.bodyAttributes}>
{props.preBodyComponents}
<div
key="body"
id="___gatsby"
key='body'
id='___gatsby'
dangerouslySetInnerHTML={{ __html: props.body }}
/>
{props.postBodyComponents}