2
0

👷 Improve sentry release detection

This commit is contained in:
Baptiste Arnaud
2023-02-06 09:48:48 +01:00
parent d7b5fd76fc
commit f07bf2532e
11 changed files with 88 additions and 100 deletions

View File

@ -31,6 +31,7 @@ const nextConfig = withTM({
const sentryWebpackPluginOptions = {
silent: true,
release: process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA + '-builder',
}
module.exports = process.env.NEXT_PUBLIC_SENTRY_DSN

View File

@ -35,7 +35,7 @@
"@giphy/react-components": "6.5.2",
"@googleapis/drive": "4.0.1",
"@lezer/css": "^1.1.1",
"@sentry/nextjs": "7.34.0",
"@sentry/nextjs": "7.36.0",
"@stripe/stripe-js": "1.46.0",
"@tanstack/react-query": "^4.23.0",
"@tanstack/react-table": "8.7.8",

View File

@ -1,23 +1,14 @@
// This file configures the initialization of Sentry on the browser.
// The config you add here will be used whenever a page is visited.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs'
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
dsn: SENTRY_DSN,
ignoreErrors: ['ResizeObserver loop limit exceeded'],
release: process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA,
beforeBreadcrumb(breadcrumb, hint) {
try {
if (breadcrumb.category?.startsWith('ui')) {
breadcrumb.message = `${hint?.event.target.tagName.toLowerCase()}: ${
hint?.event.target.innerText
}`
}
} catch (e) {
/* empty */
}
return breadcrumb
debug: true,
beforeSend: (event) => {
console.log('[SENTRY] beforeSend event:', event)
return event
},
release: process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA + '-builder',
})

View File

@ -1,11 +1,8 @@
// This file configures the initialization of Sentry on the browser.
// The config you add here will be used whenever a page is visited.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs'
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
ignoreErrors: ['ResizeObserver loop limit exceeded'],
release: process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA,
dsn: SENTRY_DSN,
release: process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA + '-builder',
})

View File

@ -13,6 +13,7 @@ import { ItemNodeContent } from './ItemNodeContent'
import { ItemNodeContextMenu } from './ItemNodeContextMenu'
import { ContextMenu } from '@/components/ContextMenu'
import { setMultipleRefs } from '@/utils/helpers'
import { isDefined } from 'utils'
type Props = {
item: Item
@ -39,11 +40,12 @@ export const ItemNode = ({
const itemRef = useRef<HTMLDivElement | null>(null)
const isPreviewing = previewingEdge?.from.itemId === item.id
const isConnectable =
isDefined(typebot) &&
!connectionDisabled &&
!(
typebot?.groups[indices.groupIndex].blocks[
indices.blockIndex
] as ChoiceInputBlock
typebot.groups[indices.groupIndex].blocks[indices.blockIndex] as
| ChoiceInputBlock
| undefined
)?.options?.isMultipleChoice
const onDrag = (position: NodePosition) => {
if (!onMouseDown) return

View File

@ -26,6 +26,7 @@ import React, { useEffect, useRef, useState } from 'react'
import { ItemNode } from './ItemNode'
import { SourceEndpoint } from '../../Endpoints'
import { PlaceholderNode } from '../PlaceholderNode'
import { isDefined } from 'utils'
type Props = {
block: BlockWithItems
@ -46,7 +47,8 @@ export const ItemNodesList = ({
draggedItem !== undefined && block.items[0].type === draggedItem.type
const isLastBlock =
typebot?.groups[groupIndex].blocks[blockIndex + 1] === undefined
isDefined(typebot) &&
typebot.groups[groupIndex].blocks[blockIndex + 1] === undefined
const [position, setPosition] = useState({
x: 0,