X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ad83bd90361b2b99fa37b3d052714d7918e64529..c492c89c16f1e5061da277e112aa06777de4461e:/src/views/process-panel/process-log-code-snippet.tsx diff --git a/src/views/process-panel/process-log-code-snippet.tsx b/src/views/process-panel/process-log-code-snippet.tsx index 261075c0..2b7391c2 100644 --- a/src/views/process-panel/process-log-code-snippet.tsx +++ b/src/views/process-panel/process-log-code-snippet.tsx @@ -13,10 +13,12 @@ import { import grey from '@material-ui/core/colors/grey'; import { ArvadosTheme } from 'common/custom-theme'; import { Link, Typography } from '@material-ui/core'; -import { navigateTo } from 'store/navigation/navigation-action'; +import { navigationNotAvailable } from 'store/navigation/navigation-action'; import { Dispatch } from 'redux'; import { connect, DispatchProp } from 'react-redux'; import classNames from 'classnames'; +import { FederationConfig, getNavUrl } from 'routes/routes'; +import { RootState } from 'store/store'; type CssRules = 'root' | 'wordWrap' | 'logText'; @@ -58,7 +60,11 @@ interface ProcessLogCodeSnippetProps { wordWrap?: boolean; } -const renderLinks = (fontSize: number, dispatch: Dispatch) => (text: string) => { +interface ProcessLogCodeSnippetAuthProps { + auth: FederationConfig; +} + +const renderLinks = (fontSize: number, auth: FederationConfig, dispatch: Dispatch) => (text: string) => { // Matches UUIDs & PDHs const REGEX = /[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{15}|[0-9a-f]{32}\+\d+/g; const links = text.match(REGEX); @@ -70,7 +76,14 @@ const renderLinks = (fontSize: number, dispatch: Dispatch) => (text: string) => {part} {links[index] && - dispatch(navigateTo(links[index]))} + { + const url = getNavUrl(links[index], auth) + if (url) { + window.open(`${window.location.origin}${url}`, '_blank'); + } else { + dispatch(navigationNotAvailable(links[index])); + } + }} style={ {cursor: 'pointer'} }> {links[index]} } @@ -79,8 +92,12 @@ const renderLinks = (fontSize: number, dispatch: Dispatch) => (text: string) => ; }; -export const ProcessLogCodeSnippet = withStyles(styles)(connect()( - ({classes, lines, fontSize, dispatch, wordWrap}: ProcessLogCodeSnippetProps & WithStyles & DispatchProp) => { +const mapStateToProps = (state: RootState): ProcessLogCodeSnippetAuthProps => ({ + auth: state.auth, +}); + +export const ProcessLogCodeSnippet = withStyles(styles)(connect(mapStateToProps)( + ({classes, lines, fontSize, auth, dispatch, wordWrap}: ProcessLogCodeSnippetProps & WithStyles & ProcessLogCodeSnippetAuthProps & DispatchProp) => { const [followMode, setFollowMode] = useState(true); const scrollRef = useRef(null); @@ -95,7 +112,7 @@ export const ProcessLogCodeSnippet = withStyles(styles)(connect()(
{ const elem = e.target as HTMLDivElement; - if (elem.scrollTop + elem.clientHeight >= elem.scrollHeight) { + if (elem.scrollTop + (elem.clientHeight*1.1) >= elem.scrollHeight) { setFollowMode(true); } else { setFollowMode(false); @@ -104,7 +121,7 @@ export const ProcessLogCodeSnippet = withStyles(styles)(connect()( { lines.map((line: string, index: number) => - {renderLinks(fontSize, dispatch)(line)} + {renderLinks(fontSize, auth, dispatch)(line)} ) }