debian-mirror-gitlab/app/assets/javascripts/jobs/components/log/line.vue

74 lines
1.7 KiB
Vue
Raw Normal View History

2019-12-04 20:38:33 +05:30
<script>
2021-01-29 00:20:46 +05:30
import { linkRegex } from '../../utils';
2019-12-04 20:38:33 +05:30
import LineNumber from './line_number.vue';
export default {
2020-07-28 23:09:34 +05:30
functional: true,
2019-12-04 20:38:33 +05:30
props: {
line: {
type: Object,
required: true,
},
path: {
type: String,
required: true,
},
},
2020-07-28 23:09:34 +05:30
render(h, { props }) {
const { line, path } = props;
2021-01-29 00:20:46 +05:30
let chars;
if (gon?.features?.ciJobLineLinks) {
chars = line.content.map(content => {
return h(
'span',
{
class: ['gl-white-space-pre-wrap', content.style],
},
// Simple "tokenization": Split text in chunks of text
// which alternate between text and urls.
content.text.split(linkRegex).map(chunk => {
// Return normal string for non-links
if (!chunk.match(linkRegex)) {
return chunk;
}
return h(
'a',
{
attrs: {
href: chunk,
class: 'gl-reset-color! gl-text-decoration-underline',
rel: 'nofollow noopener noreferrer', // eslint-disable-line @gitlab/require-i18n-strings
},
},
chunk,
);
}),
);
});
} else {
chars = line.content.map(content => {
return h(
'span',
{
class: ['gl-white-space-pre-wrap', content.style],
},
content.text,
);
});
}
2020-07-28 23:09:34 +05:30
return h('div', { class: 'js-line log-line' }, [
h(LineNumber, {
props: {
lineNumber: line.lineNumber,
path,
},
}),
...chars,
]);
},
2019-12-04 20:38:33 +05:30
};
</script>