mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Backport #27714 by @silverwind 1. Un-indent top-level items, matching GitHub rendering 2. Increase item padding and add 1px gap between items Before and After: <img width="247" alt="Screenshot 2023-10-20 at 18 37 32" src="https://github.com/go-gitea/gitea/assets/115237/43c1ce86-1814-4a8a-9dd2-0c4a82a2be7c"> <img width="241" alt="Screenshot 2023-10-20 at 18 40 46" src="https://github.com/go-gitea/gitea/assets/115237/b541b85b-c428-4903-becd-773ae5807495"> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: 6543 <m.huber@kithara.com>
		
			
				
	
	
		
			96 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
import {SvgIcon} from '../svg.js';
 | 
						|
import {diffTreeStore} from '../modules/stores.js';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {SvgIcon},
 | 
						|
  props: {
 | 
						|
    item: {
 | 
						|
      type: Object,
 | 
						|
      required: true
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data: () => ({
 | 
						|
    store: diffTreeStore(),
 | 
						|
    collapsed: false,
 | 
						|
  }),
 | 
						|
  methods: {
 | 
						|
    getIconForDiffType(pType) {
 | 
						|
      const diffTypes = {
 | 
						|
        1: {name: 'octicon-diff-added', classes: ['text', 'green']},
 | 
						|
        2: {name: 'octicon-diff-modified', classes: ['text', 'yellow']},
 | 
						|
        3: {name: 'octicon-diff-removed', classes: ['text', 'red']},
 | 
						|
        4: {name: 'octicon-diff-renamed', classes: ['text', 'teal']},
 | 
						|
        5: {name: 'octicon-diff-renamed', classes: ['text', 'green']}, // there is no octicon for copied, so renamed should be ok
 | 
						|
      };
 | 
						|
      return diffTypes[pType];
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<template>
 | 
						|
  <!--title instead of tooltip above as the tooltip needs too much work with the current methods, i.e. not being loaded or staying open for "too long"-->
 | 
						|
  <a
 | 
						|
    v-if="item.isFile" class="item-file"
 | 
						|
    :class="{'selected': store.selectedItem === '#diff-' + item.file.NameHash, 'viewed': item.file.IsViewed}"
 | 
						|
    :title="item.name" :href="'#diff-' + item.file.NameHash"
 | 
						|
  >
 | 
						|
    <!-- file -->
 | 
						|
    <SvgIcon name="octicon-file"/>
 | 
						|
    <span class="gt-ellipsis gt-f1">{{ item.name }}</span>
 | 
						|
    <SvgIcon :name="getIconForDiffType(item.file.Type).name" :class="getIconForDiffType(item.file.Type).classes"/>
 | 
						|
  </a>
 | 
						|
  <div v-else class="item-directory" :title="item.name" @click.stop="collapsed = !collapsed">
 | 
						|
    <!-- directory -->
 | 
						|
    <SvgIcon :name="collapsed ? 'octicon-chevron-right' : 'octicon-chevron-down'"/>
 | 
						|
    <SvgIcon class="text primary" name="octicon-file-directory-fill"/>
 | 
						|
    <span class="gt-ellipsis">{{ item.name }}</span>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div v-if="item.children?.length" v-show="!collapsed" class="sub-items">
 | 
						|
    <DiffFileTreeItem v-for="childItem in item.children" :key="childItem.name" :item="childItem"/>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<style scoped>
 | 
						|
a, a:hover {
 | 
						|
  text-decoration: none;
 | 
						|
  color: var(--color-text);
 | 
						|
}
 | 
						|
 | 
						|
.sub-items {
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  gap: 1px;
 | 
						|
  padding-left: 8px;
 | 
						|
}
 | 
						|
 | 
						|
.sub-items .item-file {
 | 
						|
  padding-left: 24px;
 | 
						|
}
 | 
						|
 | 
						|
.item-file.selected {
 | 
						|
  color: var(--color-text);
 | 
						|
  background: var(--color-active);
 | 
						|
  border-radius: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.item-file.viewed {
 | 
						|
  color: var(--color-text-light-3);
 | 
						|
}
 | 
						|
 | 
						|
.item-file,
 | 
						|
.item-directory {
 | 
						|
  display: flex;
 | 
						|
  align-items: center;
 | 
						|
  gap: 0.25em;
 | 
						|
  padding: 3px 6px;
 | 
						|
}
 | 
						|
 | 
						|
.item-file:hover,
 | 
						|
.item-directory:hover {
 | 
						|
  color: var(--color-text);
 | 
						|
  background: var(--color-hover);
 | 
						|
  border-radius: 4px;
 | 
						|
  cursor: pointer;
 | 
						|
}
 | 
						|
</style>
 |