Skip to content

Commit

Permalink
PATCH: chore: keep only the most used file icons
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Apr 30, 2024
1 parent 95d02fe commit f6b46f4
Show file tree
Hide file tree
Showing 263 changed files with 49 additions and 8,959 deletions.
21 changes: 4 additions & 17 deletions src/BIMDataComponents/BIMDataFileIcon/BIMDataFileIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class="file-icon"
:width="size"
:height="(+size * 4) / 3"
:src="imageUrl"
:src="imgSrc"
/>
</template>

Expand All @@ -22,22 +22,9 @@ export default {
},
},
computed: {
name() {
return (this.getFileExtension(this.fileName) || "unknown").toLowerCase();
},
imageUrl() {
return icons[`icon_${this.name}`] || icons.icon_unknown;
},
},
methods: {
getFileExtension(fileName = "") {
const match = fileName.match(/\.([0-9a-zA-Z]+$)/);
const extension = match && match[1];
if (extension && extension.toLowerCase() === "ifczip") {
return "ifc";
} else {
return extension;
}
imgSrc() {
const ext = this.fileName?.match(/\.([0-9a-zA-Z]+$)/)?.[1];
return icons[ext.toLowerCase()] || icons["unknown"];
},
},
};
Expand Down
29 changes: 0 additions & 29 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/3g2.svg

This file was deleted.

28 changes: 0 additions & 28 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/3ga.svg

This file was deleted.

29 changes: 0 additions & 29 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/3gp.svg

This file was deleted.

26 changes: 0 additions & 26 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/7z.svg

This file was deleted.

24 changes: 0 additions & 24 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/aa.svg

This file was deleted.

26 changes: 0 additions & 26 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/aac.svg

This file was deleted.

41 changes: 0 additions & 41 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/accdb.svg

This file was deleted.

39 changes: 0 additions & 39 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/accdt.svg

This file was deleted.

35 changes: 0 additions & 35 deletions src/BIMDataComponents/BIMDataFileIcon/file-icons/adn.svg

This file was deleted.

Loading

0 comments on commit f6b46f4

Please sign in to comment.