1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-11-15 09:35:14 +01:00

basic setup without react-touchbar-electron

This commit is contained in:
Matthias Kretschmann 2019-05-19 13:46:43 +02:00
parent 2b618384df
commit 9954165e41
Signed by: m
GPG Key ID: 606EEEF3C479A91F
7 changed files with 50 additions and 18 deletions

View File

@ -27,8 +27,7 @@
"react": "^16.8.6", "react": "^16.8.6",
"react-blockies": "^1.4.1", "react-blockies": "^1.4.1",
"react-dom": "^16.8.6", "react-dom": "^16.8.6",
"react-pose": "^4.0.8", "react-pose": "^4.0.8"
"react-touchbar-electron": "0.0.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.4.4", "@babel/core": "^7.4.4",

View File

@ -8,7 +8,6 @@ import Home from './screens/Home'
import Preferences from './screens/Preferences' import Preferences from './screens/Preferences'
import './App.css' import './App.css'
import { defaultAnimation } from './components/Animations' import { defaultAnimation } from './components/Animations'
import Touchbar from './components/Touchbar'
// //
// Disable zooming // Disable zooming
@ -51,8 +50,6 @@ export default class App extends PureComponent {
<Preferences path="/preferences" /> <Preferences path="/preferences" />
</PosedRouter> </PosedRouter>
</div> </div>
<Touchbar />
</> </>
) )
} }

View File

@ -1,6 +1,5 @@
import React from 'react' import React from 'react'
import { render } from 'react-dom' import { render } from 'react-dom'
import { TouchBarProvider } from 'react-touchbar-electron'
import AppProvider from './store/AppProvider' import AppProvider from './store/AppProvider'
import App from './App' import App from './App'
@ -13,9 +12,7 @@ document.body.appendChild(root)
render( render(
<AppProvider> <AppProvider>
<TouchBarProvider> <App />
<App />
</TouchBarProvider>
</AppProvider>, </AppProvider>,
document.getElementById('root') document.getElementById('root')
) )

View File

@ -3,6 +3,7 @@ import PropTypes from 'prop-types'
import ms from 'ms' import ms from 'ms'
import { ipcRenderer } from 'electron' import { ipcRenderer } from 'electron'
import Store from 'electron-store' import Store from 'electron-store'
import { ipcRenderer } from 'electron'
import { AppContext } from './createContext' import { AppContext } from './createContext'
import fetchData from '../util/fetch' import fetchData from '../util/fetch'
import { refreshInterval, prices, oceanTokenContract } from '../config' import { refreshInterval, prices, oceanTokenContract } from '../config'
@ -37,6 +38,12 @@ export default class AppProvider extends PureComponent {
setInterval(this.setBalances, ms(refreshInterval)) setInterval(this.setBalances, ms(refreshInterval))
this.setState({ isLoading: false }) this.setState({ isLoading: false })
// listener for touchbar
ipcRenderer.on('setCurrency', (evt, currency) => {
console.log('pong')
this.context.toggleCurrencies(currency)
})
} }
getAccounts() { getAccounts() {

View File

@ -1,8 +1,8 @@
const path = require('path') const path = require('path')
const { app, BrowserWindow, systemPreferences } = require('electron') const { app, BrowserWindow, systemPreferences } = require('electron')
const { touchBarWrapper } = require('react-touchbar-electron')
const pkg = require('../package.json') const pkg = require('../package.json')
const buildMenu = require('./menu') const buildMenu = require('./menu')
const buildTouchbar = require('./touchbar')
const { rgbaToHex } = require('./utils') const { rgbaToHex } = require('./utils')
let mainWindow let mainWindow
@ -108,7 +108,8 @@ const createWindow = async () => {
// Load menubar // Load menubar
buildMenu(mainWindow) buildMenu(mainWindow)
// Load touchbar // Load touchbar
process.platform === 'darwin' && touchBarWrapper(mainWindow) process.platform === 'darwin' &&
buildTouchbar(mainWindow, app.getLocale())
} }
app.on('ready', () => { app.on('ready', () => {

37
src/touchbar.js Normal file
View File

@ -0,0 +1,37 @@
const { TouchBar } = require('electron')
const { formatCurrency } = require('@coingecko/cryptoformat')
const { prices } = require('./app/config')
const { TouchBarButton } = TouchBar
// const currency = ipc...
// const prices = ipc...
const createButton = (price, key, locale, mainWindow) => {
const formattedPrice = formatCurrency(price, key.toUpperCase(), locale)
.replace(/OCEAN/, 'Ọ')
.replace(/BTC/, 'Ƀ')
.replace(/ETH/, 'Ξ')
return new TouchBarButton({
label: formattedPrice,
click: () => {
console.log('ping')
mainWindow.webContents.send('setCurrency', key)
}
// backgroundColor: currency === 'ocean' ? '#f6388a' : '#141414'
})
}
const buildTouchbar = (mainWindow, locale) => {
const touchBar = new TouchBar({
items: [
createButton(1, 'ocean', locale, mainWindow),
...prices.map(key => createButton(0, key, locale, mainWindow))
]
})
mainWindow.setTouchBar(touchBar)
}
module.exports = buildTouchbar

View File

@ -2,11 +2,10 @@ const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin') const HtmlWebpackPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin') const CopyPlugin = require('copy-webpack-plugin')
// Any directories you will be adding code/files into, need to be added to this array so webpack will pick them up
const defaultInclude = [path.resolve(__dirname, 'src')] const defaultInclude = [path.resolve(__dirname, 'src')]
module.exports = { module.exports = {
entry: path.resolve(__dirname, 'src') + '/app/index.js', entry: path.resolve(__dirname, 'src', 'app', 'index.js'),
output: { output: {
path: path.resolve(__dirname, 'build'), path: path.resolve(__dirname, 'build'),
filename: 'bundle.js', filename: 'bundle.js',
@ -33,11 +32,6 @@ module.exports = {
test: /\.svg$/, test: /\.svg$/,
use: ['@svgr/webpack'], use: ['@svgr/webpack'],
include: defaultInclude include: defaultInclude
},
{
test: /\.(eot|ttf|woff|woff2)$/,
use: ['file-loader?name=font/[name]__[hash:base64:5].[ext]'],
include: defaultInclude
} }
] ]
}, },