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

Draft: Feat: Adding Sentry #765

Draft
wants to merge 10 commits into
base: staging
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
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
REACT_APP_PINATA_API_TOKEN=
REACT_APP_PINATA_API_TOKEN=
REACT_APP_SENTRY_DSN=
15 changes: 15 additions & 0 deletions config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ const {
} = require('customize-cra')
const webpack = require('webpack')

const SentryWebpackPlugin = require('@sentry/webpack-plugin')

module.exports = override(
useBabelRc(),
addWebpackAlias({
Expand All @@ -27,6 +29,19 @@ module.exports = override(
Buffer: ['buffer', 'Buffer'],
})
),
addWebpackPlugin(
new SentryWebpackPlugin({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
include: './build',
debug: false,
// ignore: ['node_modules', 'webpack.config.js'],
configFile: path.resolve(__dirname, '.sentryclirc'),
validate: true,
release: process.env.VERCEL_GIT_COMMIT_SHA,
})
),
addWebpackPlugin(
new webpack.ProvidePlugin({
process: 'process/browser',
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"@juggle/resize-observer": "^3.2.0",
"@nivo/core": "^0.73.0",
"@nivo/line": "^0.73.0",
"@sentry/react": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"buffer": "^6.0.3",
Expand Down Expand Up @@ -68,6 +70,7 @@
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@sentry/webpack-plugin": "^1.18.3",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
Expand Down
8 changes: 6 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
import React from 'react'
import { HashRouter } from 'react-router-dom'

import { Main } from '@1hive/1hive-ui'

import GlobalErrorHandler from './GlobalErrorHandler'
import MainView from '@components/MainView'
import Routes from './routes/Routes'
import WelcomeLoader from '@components/Welcome/WelcomeLoader'

import GlobalErrorHandler from './GlobalErrorHandler'
import { GardensProvider } from './providers/Gardens'
import { ProfileProvider } from './providers/Profile'
import { UserProvider } from './providers/User'
import { WalletProvider } from './providers/Wallet'
import Routes from './routes/Routes'
import initializeSentry, { logWithSentry } from './sentry'

initializeSentry()
logWithSentry('Init App.tsx')
function App() {
return (
<HashRouter>
Expand Down
25 changes: 16 additions & 9 deletions src/components/Garden/Preferences/EVMExecutor.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* eslint-disable no-unexpected-multiline */
import React, { useCallback, useMemo, useState } from 'react'

import { utils } from 'ethers'

import {
Box,
Button,
Expand All @@ -10,16 +12,21 @@ import {
Info,
TextInput,
} from '@1hive/1hive-ui'

import MultiModal from '@components/MultiModal/MultiModal'

import { useConnectedGarden } from '@providers/ConnectedGarden'

import { SHORTENED_APPS_NAMES } from '@utils/app-utils'
import { getAppByName } from '@utils/data-utils'

import actions from '@/actions/garden-action-types'
import { TERMINAL_EXECUTOR_MESSAGE } from '@/constants'
import env from '@/environment'
import { useGardenState } from '@/providers/GardenState'
import { useWallet } from '@/providers/Wallet'
import radspec from '@/radspec'

import CreateDecisionScreens from '../ModalFlows/CreateDecisionScreens/CreateDecisionScreens'

const INTERACTION_TYPES = ['Internal', 'External', 'Terminal']
Expand Down Expand Up @@ -66,7 +73,7 @@ function EVMExecutor({ evmcrispr }) {
return evmcrispr.apps()
}, [evmcrispr])

const shortenedAppsNames = installedApps.map(appName => {
const shortenedAppsNames = installedApps.map((appName) => {
const dotIndex = appName.indexOf('.')
return (
SHORTENED_APPS_NAMES.get(
Expand All @@ -87,7 +94,7 @@ function EVMExecutor({ evmcrispr }) {
appFunctions = evmcrispr.appMethods(appName)
}
if (interactionType === EXTERNAL_INDEX && formattedAbi) {
appFunctions = formattedAbi.map(item => {
appFunctions = formattedAbi.map((item) => {
if (item.type === 'function' && item.stateMutability !== 'view') {
return item.name
}
Expand Down Expand Up @@ -121,7 +128,7 @@ function EVMExecutor({ evmcrispr }) {
})
}
if (interactionType === EXTERNAL_INDEX && formattedAbi) {
return formattedAbi[selectedFunction].inputs.map(parameter => {
return formattedAbi[selectedFunction].inputs.map((parameter) => {
return [parameter.name, parameter.type]
})
}
Expand Down Expand Up @@ -155,7 +162,7 @@ function EVMExecutor({ evmcrispr }) {

const handleOnChangeParameters = useCallback((index, event) => {
const newValue = event.target.value
setParameters(prevState => {
setParameters((prevState) => {
const newArray = [...prevState]
newArray[index] = newValue
return newArray
Expand Down Expand Up @@ -224,12 +231,12 @@ function EVMExecutor({ evmcrispr }) {
code,
])

const handleOnContractAddressChange = useCallback(event => {
const handleOnContractAddressChange = useCallback((event) => {
const value = event.target.value
setExternalContractAddress(value)
}, [])

const handleOnAbiChange = useCallback(event => {
const handleOnAbiChange = useCallback((event) => {
const value = event.target.value
setAbi(value)
let iface
Expand All @@ -238,7 +245,7 @@ function EVMExecutor({ evmcrispr }) {
iface = new utils.Interface(value)
formattedAbi = iface.format(utils.FormatTypes.json)
setFormattedAbi(
JSON.parse(formattedAbi).filter(item => {
JSON.parse(formattedAbi).filter((item) => {
if (item.type === 'function' && item.stateMutability !== 'view') {
return item.name
}
Expand All @@ -257,7 +264,7 @@ function EVMExecutor({ evmcrispr }) {
setCreateDecisionModalVisible(false)
}, [])

const handleOnSetCode = useCallback(event => {
const handleOnSetCode = useCallback((event) => {
const value = event.target.value
setCode(value)
}, [])
Expand Down Expand Up @@ -337,7 +344,7 @@ function EVMExecutor({ evmcrispr }) {
return (
<TextInput
key={index}
onChange={event => handleOnChangeParameters(index, event)}
onChange={(event) => handleOnChangeParameters(index, event)}
placeholder={`${parameter[0].toString()} : ${parameter[1].toString()}`}
wide
css={`
Expand Down
17 changes: 13 additions & 4 deletions src/components/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
import React, { useCallback, useState } from 'react'

import styled from 'styled-components'

import { GU, useToast } from '@1hive/1hive-ui'

import { useGardens } from '@providers/Gardens'
import { useWallet } from '@providers/Wallet'

import { useNodeHeight } from '@hooks/useNodeHeight'

import { logWithSentry } from '@/sentry'

import GardensFilters from './GardensFilters'
import GardensList from './GardensList'
import LandingBanner from './LandingBanner'
import { useWallet } from '@providers/Wallet'
import MultiModal from './MultiModal/MultiModal'
import ConnectWalletScreens from './MultiModal/ConnectWallet/ConnectWalletScreens'
import Loader from './Loader'
import ConnectWalletScreens from './MultiModal/ConnectWallet/ConnectWalletScreens'
import MultiModal from './MultiModal/MultiModal'
import Onboarding from './Onboarding'

const DynamicSection = styled.div<{
marginTop: any
}>`
margin-top: ${props => props.marginTop}px;
margin-top: ${(props) => props.marginTop}px;
padding: 0 ${2 * GU}px;
`

Expand All @@ -38,10 +45,12 @@ function Home() {
return
}
setOnboardingVisible(true)
logWithSentry('Opened Onboarding')
}, [account])

const handleOnboardingClose = useCallback(() => {
setOnboardingVisible(false)
logWithSentry('Closed Onboarding')
toast('Saved!')
}, [toast])

Expand Down
14 changes: 9 additions & 5 deletions src/components/SingleDatePicker/DatePicker.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
/* eslint-disable no-unexpected-multiline */
import React, { useState } from 'react'

import PropTypes from 'prop-types'
import { eachDayOfInterval, GU } from '@1hive/1hive-ui'

import { GU, eachDayOfInterval } from '@1hive/1hive-ui'

import { dayjs } from '@utils/date-utils'

import MonthDay from './MonthDay'
import { Selector } from './components'

Expand All @@ -23,7 +27,7 @@ function DatePicker({

const setDate =
({ year, add }) =>
event => {
(event) => {
setSelectedDate(
dayjs(selectedDate)
.startOf('month')
Expand All @@ -36,7 +40,7 @@ function DatePicker({

const selectedDayjs = dayjs(selectedDate || today)

const isSelected = day => {
const isSelected = (day) => {
if (initialDate) {
return day.isSame(initialDate, 'day')
}
Expand Down Expand Up @@ -82,7 +86,7 @@ function DatePicker({
eachDayOfInterval({
start: selectedDayjs.startOf('week'),
end: selectedDayjs.endOf('week'),
}).map(day => {
}).map((day) => {
const dayJs = dayjs(day)
return (
<MonthDay key={dayJs.format('dd')} weekDay>
Expand All @@ -94,7 +98,7 @@ function DatePicker({
{eachDayOfInterval({
start: selectedDayjs.startOf('month').startOf('week'),
end: selectedDayjs.endOf('month').endOf('week'),
}).map(day => {
}).map((day) => {
const dayJs = dayjs(day)
return (
<MonthDay
Expand Down
11 changes: 10 additions & 1 deletion src/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ const DEFAULT_VOTING_APP_NAME = 'disputable-voting'
const DEFAULT_XDAI_ETH_NODE_ENDPOINT = 'https://rpc.xdaichain.com'
const DEFAULT_POLYGON_ETH_NODE_ENDPOINT = 'https://polygon-rpc.com'

const DEFAULT_VERCEL_ENV = 'localhost'
const DEFAULT_VERCEL_GIT_COMMIT_SHA = 'bababa'

const ENV_VARS = {
AGREEMENT_APP_NAME() {
return (
Expand Down Expand Up @@ -60,8 +63,14 @@ const ENV_VARS = {
POCKET_API_KEY() {
return process.env.REACT_APP_POCKET_API_KEY || null
},
SENTRY_DSN() {
return process.env.SENTRY_DSN || process.env.REACT_APP_SENTRY_DSN || null
},
VERCEL_ENV() {
return process.env.REACT_APP_VERCEL_ENV || null
return process.env.REACT_APP_VERCEL_ENV || DEFAULT_VERCEL_ENV
},
VERCEL_GIT_COMMIT_SHA() {
return process.env.VERCEL_GIT_COMMIT_SHA || DEFAULT_VERCEL_GIT_COMMIT_SHA
},
VOTING_APP_NAME() {
return process.env.REACT_APP_VOTING_APP_NAME || DEFAULT_VOTING_APP_NAME
Expand Down
42 changes: 42 additions & 0 deletions src/sentry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import { Severity, captureMessage } from '@sentry/browser'
import * as Sentry from '@sentry/react'
import { Integrations } from '@sentry/tracing'

import env from './environment'
import { getNetworkType } from './utils/web3-utils'

export const sentryEnabled = Boolean(env('SENTRY_DSN'))

export default function initializeSentry() {
console.log(`sentryEnabled: ${sentryEnabled}`)
if (sentryEnabled) {
Sentry.init({
dsn: env('SENTRY_DSN'),
integrations: [new Integrations.BrowserTracing()],
environment: `${env('VERCEL_ENV')}@${getNetworkType()}`,
release: env('VERCEL_GIT_COMMIT_SHA'),

// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: 1.0,
})
// Add more info context, but it not can be searchable.
// Sentry.setContext('Git User', {
// name: 'Felipe',
// email: 'windholyghost@gmail.com',
// })
}
}

export function logWithSentry(message: string, level = Severity.Warning) {
if (sentryEnabled) {
captureMessage(message, {
// We too could sent tags to be searchable.
// tags: {
// gitDeveloper: '',
// },
level,
})
}
}
25 changes: 8 additions & 17 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
Expand All @@ -18,18 +14,13 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"noFallthroughCasesInSwitch": true
"typeRoots": ["./src/types", "./node_modules/@types"],
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"inlineSources": true,
"sourceRoot": "/"
},
"include": [
"src"
],
"exclude": [
"src/**/*.js",
"src/**/*.jsx"
],
"include": ["src"],
"exclude": ["src/**/*.js", "src/**/*.jsx"],
"extends": "./paths-tsconfig.json"
}
Loading