| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <template>
- <view
- :class="['nana-nav-title', innerClass]"
- :style="{
- backgroundColor: theme.resolveThemeColor(backgroundColor),
- height: theme.resolveThemeSize(height),
- paddingLeft: align === 'left' ? theme.resolveThemeSize('NavBarLeftModePaddingLeft', 20) : undefined,
- ...props.innerStyle,
- }"
- >
- <view
- v-if="align !== 'left'"
- class="nana-nav-button-wrapper" :style="{
- marginRight: rightPillSpace ? `${menuButtonInfo.width}px` : undefined,
- }"
- >
- <slot v-if="showLeftButton && leftButton" name="left">
- <IconButton
- :icon="getButton(leftButton)"
- v-bind="iconProps"
- shape="square-full"
- @click="handleButtonNavBack(leftButton, () => emit('leftButtonPressed'))"
- />
- </slot>
- <IconButton v-else icon="space" shape="square-full" />
- </view>
- <slot name="center">
- <HorizontalScrollText
- v-if="titleScroll"
- :outerStyle="{
- ...titleTextStyle,
- ...props.titleStyle,
- paddingLeft: 0,
- paddingRight: 0,
- }"
- :innerClass="titleClass"
- :color="textColor"
- :textAlign="align"
- :text="title"
- />
- <Text
- v-else
- :outerStyle="{
- ...titleTextStyle,
- ...props.titleStyle,
- flex: 1,
- }"
- :innerClass="titleClass"
- :textAlign="align"
- :color="textColor"
- :text="title"
- />
- </slot>
- <view
- class="nana-nav-button-wrapper-end"
- :style="{
- marginRight: rightPillSpace ? `${menuButtonInfo.width ?? 0}px` : undefined,
- minWidth: theme.resolveThemeSize(height),
- }"
- >
- <slot v-if="showRightButton && rightButton" name="right">
- <IconButton
- :icon="getButton(rightButton)"
- v-bind="iconProps"
- shape="square-full"
- @click="handleButtonNavBack(rightButton, () => emit('rightButtonPressed'))"
- />
- </slot>
- <IconButton v-else icon="space" shape="square-full" />
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import type { IconProps } from '../basic/Icon.vue';
- import { propGetThemeVar, useTheme } from '../theme/ThemeDefine';
- import { DynamicSize } from '../theme/ThemeTools';
- import HorizontalScrollText from '../typography/HorizontalScrollText.vue';
- import Text from '../basic/Text.vue';
- import IconButton from '../basic/IconButton.vue';
- export type NavBarButtonTypes = 'back'|'menu'|'search'|'setting'|'custom';
- export interface NavBarProps {
- /**
- * 标题栏高度
- * @default '44px'
- */
- height?: number|string;
- /**
- * 左侧按钮
- */
- leftButton?: NavBarButtonTypes,
- /**
- * 标题文字,支持自定义元素
- */
- title?: string,
- /**
- * 标题对齐
- * @default 'center'
- */
- align?: 'center'|'left',
- /**
- * 右侧按钮
- */
- rightButton?: NavBarButtonTypes,
- /**
- * 是否显示右侧按钮
- * @default true
- */
- showRightButton?: boolean;
- /**
- * 是否显示右侧按钮的胶囊间距
- */
- rightPillSpace?: boolean,
- /**
- * 手动指定右侧按钮的胶囊间距(像素)
- * @default 50
- */
- rightPillSpaceForce?: number,
- /**
- * 是否显示左侧按钮
- * @default true
- */
- showLeftButton?: boolean;
- /**
- * 自定义背景颜色
- */
- backgroundColor?: string;
- /**
- * 自定义文字颜色
- * @default Color.black
- */
- textColor?: string;
- /**
- * 自定义样式
- */
- innerStyle?: object;
- /**
- * 自定义标题文字样式
- */
- titleStyle?: object;
- /**
- * 自定义标题文字样式
- */
- titleClass?: any;
- /**
- * 标题文字超出时,是否自动滚动
- * @default true
- */
- titleScroll?: boolean;
- /**
- * 图标透传样式
- */
- iconProps?: IconProps;
- /**
- * 自定义类名
- */
- innerClass?: any;
- }
- function getButton(type: NavBarButtonTypes) {
- let button = '';
- switch (type) {
- case 'back': button = 'arrow-left-bold'; break;
- case 'menu': button = 'elipsis'; break;
- case 'search': button = 'search'; break;
- case 'setting': button = 'setting'; break;
- }
- return button;
- }
- const emit = defineEmits([ 'leftButtonPressed', 'rightButtonPressed' ]);
- const theme = useTheme();
- const props = withDefaults(defineProps<NavBarProps>(), {
- titleScroll: true,
- align: () => propGetThemeVar('NavBarAlign', 'center'),
- height: () => propGetThemeVar('NavBarHeight', '44px'),
- showLeftButton: true,
- showRightButton: true,
- rightPillSpaceForce: 50,
- textColor: () => propGetThemeVar('NavBarTitleColor', 'black'),
- });
- // #ifdef MP
- const menuButtonInfo = uni.getMenuButtonBoundingClientRect();
- // #endif
- // #ifndef MP
- const menuButtonInfo = {
- width: props.rightPillSpaceForce,
- };
- // #endif
- const titleTextStyle = theme.useThemeStyle({
- flex: 1,
- fontSize: DynamicSize('NavBarTitleFontSize', 30),
- paddingLeft: DynamicSize('NavBarTitlePaddingHorizontal', 15),
- paddingRight: DynamicSize('NavBarTitlePaddingHorizontal', 15),
- });
- function handleButtonNavBack(button: NavBarButtonTypes, callback: () => void) {
- if (button === 'back') {
- uni.navigateBack();
- } else {
- callback();
- }
- }
- </script>
- <style>
- .nana-nav-title {
- position: relative;
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .nana-nav-button-wrapper {
- position: relative;
- flex-direction: row;
- justify-content: flex-start;
- height: 100%;
- flex-shrink: 0;
- }
- .nana-nav-button-wrapper-end {
- position: relative;
- flex-direction: row;
- justify-content: flex-end;
- height: 100%;
- flex-shrink: 0;
- }
- </style>
|