extract relative path

pull/5270/head
yann300 1 month ago committed by Aniket
parent 892d59b160
commit 1576493862
  1. 8
      apps/vyper/src/app/app.tsx
  2. 17
      apps/vyper/src/app/utils/index.ts

@ -1,7 +1,7 @@
import { useState, useEffect, useRef } from 'react'
import { IntlProvider } from 'react-intl'
import { Renderer } from '@remix-ui/renderer'
import { remixClient } from './utils'
import { remixClient, extractRelativePath } from './utils'
import { CompilationResult } from '@remixproject/plugin-api'
// Components
@ -173,7 +173,7 @@ const App = () => {
<div className="px-3 w-100 mb-3 mt-1" id="compile-btn">
<CompilerButton compilerUrl={compilerUrl()} contract={contract} setOutput={(name, update) => setOutput({ ...output, [name]: update })} resetCompilerState={resetCompilerResultState} output={output} remixClient={remixClient}/>
</div>
<article id="result" className="px-3 p-2 mx-3 border-top mt-2">
<article id="result" className="px-3 p-2 mx-3 border-top mt-2 vyper-errorBlobs">
{output && output.status === 'success' &&
<>
<VyperResult output={output} plugin={remixClient} />
@ -181,8 +181,10 @@ const App = () => {
}
{output && output.status === 'failed' &&
output.errors && output.errors.map((error: VyperCompilationError, index: number) => {
// we need to tweak the path to not show the filesystem absolute error.
return <Renderer key={index}
message={error.message}
message={extractRelativePath(error.message, contract)}
plugin={remixClient}
opt={{
useSpan: false,

@ -9,4 +9,21 @@ export function contractName(fileName: string): string {
export function isVyper(name: string): boolean {
const parts = name.split('.')
return parts[parts.length - 1] === 'vy'
}
export function extractRelativePath(content: string, filePath: string): string {
try {
const regex = /(\/.*?\S*)/g
const paths = content.match(regex)
if (paths) {
for (const absPath of paths) {
if (absPath.indexOf(filePath) !== -1) {
content = content.replace(absPath, filePath)
}
}
}
} catch (e) {
console.error(e)
}
return content
}
Loading…
Cancel
Save