aboutsummaryrefslogtreecommitdiff
path: root/src/components/TileImg.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-03-28 18:54:10 +1100
committerTerry Truong <terry06890@gmail.com>2022-03-28 18:54:10 +1100
commitc9a116654004c014257a2aac8d6cf82bc7d7d580 (patch)
tree2b9f5cf11093a1969a8292bdd7c2eeb71e65b5c0 /src/components/TileImg.vue
parentbcf60b4e1aa2283821010715b33009d8f4a48207 (diff)
Merge TileImg back into Tile, adding nonAbsPos prop for AncestryBar usage
Diffstat (limited to 'src/components/TileImg.vue')
-rw-r--r--src/components/TileImg.vue105
1 files changed, 0 insertions, 105 deletions
diff --git a/src/components/TileImg.vue b/src/components/TileImg.vue
deleted file mode 100644
index 3de0fa8..0000000
--- a/src/components/TileImg.vue
+++ /dev/null
@@ -1,105 +0,0 @@
-<script lang="ts">
-import {defineComponent, PropType} from 'vue';
-import InfoIcon from './icon/InfoIcon.vue';
-import {LayoutNode} from '../layout';
-
-export default defineComponent({
- props: {
- layoutNode: {type: Object as PropType<LayoutNode>, required: true},
- tileSz: {type: Number, required: true}, //px (edge length)
- options: {type: Object, required: true},
- },
- data(){
- return {
- highlight: false,
- infoMouseOver: false,
- };
- },
- computed: {
- isExpandable(){
- return this.layoutNode.tolNode.children.length > 0;
- },
- styles(): Record<string,string> {
- return {
- // Sizing
- width: this.tileSz + 'px',
- height: this.tileSz + 'px',
- minWidth: this.tileSz + 'px',
- minHeight: this.tileSz + 'px',
- // Image
- backgroundImage:
- 'linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),' +
- 'url(\'/img/' + this.layoutNode.tolNode.name.replaceAll('\'', '\\\'') + '.png\')',
- backgroundSize: 'cover',
- // Child layout
- display: 'flex',
- flexDirection: 'column',
- // Other
- borderRadius: this.options.borderRadius + 'px',
- boxShadow: this.highlight ? this.options.shadowHighlight :
- (this.layoutNode.hasFocus ? this.options.shadowFocused : this.options.shadowNormal),
- };
- },
- headerStyles(): Record<string,string> {
- return {
- height: (this.options.imgTileFontSz + this.options.imgTilePadding * 2) + 'px',
- lineHeight: this.options.imgTileFontSz + 'px',
- fontSize: this.options.imgTileFontSz + 'px',
- padding: this.options.imgTilePadding + 'px',
- color: this.isExpandable ? this.options.expandableImgTileColor : this.options.imgTileColor,
- // For ellipsis
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- };
- },
- infoIconStyles(): Record<string,string> {
- return {
- width: this.options.infoIconSz + 'px',
- height: this.options.infoIconSz + 'px',
- marginTop: 'auto',
- marginBottom: this.options.infoIconPadding + 'px',
- marginRight: this.options.infoIconPadding + 'px',
- alignSelf: 'flex-end',
- color: this.infoMouseOver ? this.options.infoIconHoverColor : this.options.infoIconColor,
- };
- },
- },
- methods: {
- onMouseEnter(evt: Event){
- if (this.isExpandable){
- this.highlight = true;
- }
- },
- onMouseLeave(evt: Event){
- if (this.isExpandable){
- this.highlight = false;
- }
- },
- onMouseDown(evt: Event){
- this.highlight = false;
- },
- onInfoMouseEnter(evt: Event){
- this.infoMouseOver = true;
- },
- onInfoMouseLeave(evt: Event){
- this.infoMouseOver = false;
- },
- onInfoClick(evt: Event){
- this.$emit('info-icon-clicked', this.layoutNode);
- },
- },
- components: {InfoIcon, },
- emits: ['info-icon-clicked'],
-});
-</script>
-
-<template>
-<div :style="styles" @mouseenter="onMouseEnter" @mouseleave="onMouseLeave" @mousedown="onMouseDown"
- :class="isExpandable ? ['hover:cursor-pointer'] : []">
- <h1 :style="headerStyles">{{layoutNode.tolNode.name}}</h1>
- <info-icon :style="infoIconStyles" class="hover:cursor-pointer"
- @mouseenter="onInfoMouseEnter" @mouseleave="onInfoMouseLeave"
- @click.stop="onInfoClick" @mousedown.stop @mouseup.stop/>
-</div>
-</template>