113 lines
2.5 KiB
Vue
113 lines
2.5 KiB
Vue
<script>
|
|
import fuzzaldrinPlus from 'fuzzaldrin-plus';
|
|
import FileIcon from '../../../vue_shared/components/file_icon.vue';
|
|
import ChangedFileIcon from '../../../vue_shared/components/changed_file_icon.vue';
|
|
|
|
const MAX_PATH_LENGTH = 60;
|
|
|
|
export default {
|
|
components: {
|
|
ChangedFileIcon,
|
|
FileIcon,
|
|
},
|
|
props: {
|
|
file: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
focused: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
searchText: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
index: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
pathWithEllipsis() {
|
|
const { path } = this.file;
|
|
|
|
return path.length < MAX_PATH_LENGTH
|
|
? path
|
|
: `...${path.substr(path.length - MAX_PATH_LENGTH)}`;
|
|
},
|
|
nameSearchTextOccurences() {
|
|
return fuzzaldrinPlus.match(this.file.name, this.searchText);
|
|
},
|
|
pathSearchTextOccurences() {
|
|
return fuzzaldrinPlus.match(this.pathWithEllipsis, this.searchText);
|
|
},
|
|
},
|
|
methods: {
|
|
clickRow() {
|
|
this.$emit('click', this.file);
|
|
},
|
|
mouseOverRow() {
|
|
this.$emit('mouseover', this.index);
|
|
},
|
|
mouseMove() {
|
|
this.$emit('mousemove', this.index);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
:class="{
|
|
'is-focused': focused,
|
|
}"
|
|
type="button"
|
|
class="diff-changed-file"
|
|
@click.prevent="clickRow"
|
|
@mouseover="mouseOverRow"
|
|
@mousemove="mouseMove"
|
|
>
|
|
<file-icon
|
|
:file-name="file.name"
|
|
:size="16"
|
|
css-classes="diff-file-changed-icon append-right-8"
|
|
/>
|
|
<span class="diff-changed-file-content append-right-8">
|
|
<strong
|
|
class="diff-changed-file-name"
|
|
>
|
|
<span
|
|
v-for="(char, charIndex) in file.name.split('')"
|
|
:key="charIndex + char"
|
|
:class="{
|
|
highlighted: nameSearchTextOccurences.indexOf(charIndex) >= 0,
|
|
}"
|
|
v-text="char"
|
|
>
|
|
</span>
|
|
</strong>
|
|
<span
|
|
class="diff-changed-file-path prepend-top-5"
|
|
>
|
|
<span
|
|
v-for="(char, charIndex) in pathWithEllipsis.split('')"
|
|
:key="charIndex + char"
|
|
:class="{
|
|
highlighted: pathSearchTextOccurences.indexOf(charIndex) >= 0,
|
|
}"
|
|
v-text="char"
|
|
>
|
|
</span>
|
|
</span>
|
|
</span>
|
|
<span
|
|
v-if="file.changed || file.tempFile"
|
|
class="diff-changed-stats"
|
|
>
|
|
<changed-file-icon
|
|
:file="file"
|
|
/>
|
|
</span>
|
|
</button>
|
|
</template>
|