zhengyiming
2025-03-13 d580f043716d30f9617ed7f3f49a7e80d54b9865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
  <NavBar v-bind="props" dark class="transparent-navigation-bar" :style="wrapperStyle">
    <div :class="['common-navigation-bar-wrapper', { dark: mode == 'dark' }]" :style="barStyle">
      <div class="menu-btn-wrapper" v-if="!isLastPage && showLeftArrow" @click="goBack()">
        <img v-if="props.navigationArrowWhite" class="menu-btn" :src="IconArrowWhite" />
        <img v-else class="menu-btn" :src="IconArrow" />
      </div>
      <div class="common-navigation-bar-title">{{ title }}</div>
    </div>
  </NavBar>
</template>
 
<script setup lang="ts">
import NavBar from './NavBar.vue';
import { commonNavigationBarProps } from './commonNavigationBar';
import { CSSProperties } from 'vue';
import IconArrow from '@/assets/common/icon-navi-arrow.png';
import IconArrowWhite from '@/assets/common/icon-navi-arrow-white.png';
import { useCanGoBack } from '@/hooks';
 
defineOptions({
  name: 'TransparentNavigationBar',
});
 
const props = defineProps(commonNavigationBarProps);
 
const router = useRouter();
 
const { isCanGoBack } = useCanGoBack();
 
const isLastPage = computed(() => {
  return !isCanGoBack.value;
});
 
const barStyle = computed(() => {
  const distance = 24;
  return {
    paddingLeft: `${distance}px`,
    paddingRight: `${distance}px`,
    height: 44 + 'px',
  } as CSSProperties;
});
 
const wrapperStyle = computed(() => {
  return props.isAbsolute
    ? ({
        position: 'absolute',
      } as CSSProperties)
    : {};
});
 
function goBack() {
  router.back();
}
</script>
 
<style lang="scss" scoped>
@use '@/style/common.scss' as *;
 
.transparent-navigation-bar {
  /* position: absolute; */
  width: 100%;
  background-color: transparent;
 
  .common-navigation-bar-wrapper {
    width: 100%;
  }
 
  .common-navigation-bar-title {
    color: getCssVar('text-color', 'primary');
  }
}
</style>