!33 define some interfaces & update some functions

Merge pull request !33 from cassiel/master
This commit is contained in:
Sagi 2022-10-01 12:54:01 +00:00 committed by Gitee
commit 8a2439cdfa
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
5 changed files with 434 additions and 80 deletions

View File

@ -1,7 +1,10 @@
import type { App } from 'vue'; import type { App } from 'vue';
import FButton from './src/button.component'; import FButton from './src/button.component';
import FButtonGroup from './src/button-group.component';
export * from './src/button.props'; export * from './src/button.props';
export * from './src/button-group.props';
export { FButton }; export { FButton };

View File

@ -1,28 +1,37 @@
// import { defineComponent, computed } from 'vue'; import { defineComponent, computed } from 'vue';
// import type { SetupContext } from 'vue'; import type { SetupContext } from 'vue';
// import { buttonGroupProps, ButtonGroupProps } from './button.props'; import { buttonGroupProps, ButtonGroupProps } from './button-group.props';
// import { useButtonGroup } from './composition/use-button-group'; import { useButtonGroup } from './composition/use-button-group';
// export default defineComponent({ export default defineComponent({
// name: 'FButtonGroup', name: 'FButtonGroup',
// props: buttonGroupProps, props: buttonGroupProps,
// emits: ['click'], emits: ['click', 'changeState', 'change', 'clickMenuOut'],
// setup(props: ButtonGroupProps, context: SetupContext) { setup(props: ButtonGroupProps, context: SetupContext) {
// // const { onClickButton } = useButtonGroup(props, context); // const { onClickButton } = useButtonGroup(props, context);
// // const fButtonSize = computed(() => ({ const fButtonGroupSize = computed(() => ({
// // 'btn-lg': props.size === 'large', 'btn-group-lg': props.size === 'large',
// // 'btn-sm': props.size === 'small', 'btn-group-sm': props.size === 'small'
// // })); }));
// // const fButtonType = computed(() => ({ // 样式:
// // 'btn-primary': props.buttonType === 'primary', // 'btn '+
// // 'btn-warning': props.buttonType === 'warning', // (btn.type?'btn-'+ btn.type:'btn-link')+
// // 'btn-danger': props.buttonType === 'danger', // ' '+
// // 'btn-success': props.buttonType === 'success', // (btn.type && btn.type !== 'link' ? 'f-btn-ml' :'')
// // 'btn-link': props.buttonType === 'link',
// // 'btn-secondary': props.buttonType === 'secondary',
// // }));
// return () => ( // btn btn-btn.type f-btn-ml
// ); // btn btn-link
// },
// }); // const fButtonType = computed(() => ({
// 'btn-primary': props.buttonType === 'primary',
// 'btn-warning': props.buttonType === 'warning',
// 'btn-danger': props.buttonType === 'danger',
// 'btn-success': props.buttonType === 'success',
// 'btn-link': props.buttonType === 'link',
// 'btn-secondary': props.buttonType === 'secondary',
// }));
const theFlatButtons = useButtonGroup(props, context);
return () => '';
}
});

View File

@ -1,26 +1,63 @@
// import { ExtractPropTypes, PropType } from 'vue'; import { ExtractPropTypes, PropType } from 'vue';
// type ButtonType = 'primary' | 'warning' | 'danger' | 'success' | 'link' | 'secondary'; // eslint-disable-next-line max-len
// type SizeType = 'small' | 'large'; type PlacementDirection = 'top' | 'top-left' | 'top-right' | 'left' | 'left-top' | 'left-bottom' | 'bottom' | 'bottom-left' | 'bottom-right' | 'right' | 'right-top' | 'right-bottom';
// export const buttonProps = { export const buttonGroupProps = {
// /** /**
// * 组件标识 *
// */ */
// id: String, id: String,
// /** /**
// * 设置按钮类型 *
// */ */
// buttonType: { type: String as PropType<ButtonType>, default: 'primary' }, rectifyReferenceH: { type: HTMLElement, default: 'referenceEl' },
// /** /**
// * 是否禁用 *
// */ */
// disable: { type: Boolean, default: false }, rectifyReferenceV: { type: HTMLElement, default: 'referenceEl' },
// /** /**
// * 按钮尺寸 *
// */ */
// size: { type: String as PropType<SizeType>, default: 'small' }, autoRectify: { type: Boolean, default: 'true' },
// // 待确定text参数 /**
// }; * placement
*/
realPlacement: { type: String, default: 'bottom-right' },
/**
* placement
*/
rectifyPlacement: { type: String, default: 'bottom-right' },
/**
*
*/
data: { type: Array },
/**
* 2
*/
count: { type: Number, default: 2 },
/**
*
*/
size: { type: String, default: 'small' },
/**
*
*/
type: { type: String, default: 'primary' },
/**
*
*/
placement: { type: String, default: 'bottom' }, /**
/**
*
*/
showPanel: { type: Boolean, default: false },
/**
*
*/
dpFlag: { type: Boolean, default: false },
// export type ButtonProps = ExtractPropTypes<typeof buttonProps>; };
export default buttonGroupProps;
export type ButtonGroupProps = ExtractPropTypes<typeof buttonGroupProps>;

View File

@ -1,13 +1,13 @@
// import { ComputedRef } from 'vue'; import { ComputedRef } from 'vue';
// export interface UseButton { export interface UseButtonGroup {
// /** /**
// * 附加按钮的Class * Class
// */ */
// // buttonClass: ComputedRef<Record<string, boolean | undefined>>; // buttonClass: ComputedRef<Record<string, boolean | undefined>>;
// /** /**
// * 点击附加按钮事件响应函数 *
// */ */
// onClickButton: ($event: Event) => void; clickEvent: ($event: Event) => void;
// } }

View File

@ -1,24 +1,329 @@
// import { UseButton } from './types'; import { UseButtonGroup } from './types-group';
// import { ButtonProps } from '../button.props'; import { ButtonGroupProps } from '../button-group.props';
// import { computed, SetupContext } from 'vue'; import { computed, SetupContext } from 'vue';
// export function useButton(props: ButtonProps, context: SetupContext): UseButton { export function useButtonGroup(props: ButtonGroupProps, context: SetupContext): UseButtonGroup {
// ngAfterViewChecked() {
// if (this.show) {
// this.setPosition(this.event)
// }
// }
// // const buttonClass = computed(() => ({ // function onClickButton($event: Event) {
// // // 'input-group-append': true, // $event.stopPropagation();
// // // 'append-force-show': props.showButtonWhenDisabled && (props.readonly || props.disable), // // this.disabled
// // })); // if (props.disable) {
// context.emit('clickButton', $event);
// }
// }
// function onClickButton($event: Event) { function clickEvent($event: Event) {
// $event.stopPropagation(); $event.stopPropagation();
// // this.disabled props.showPanel = !props.showPanel;
// if (props.disable) { // body添加面板
// context.emit('clickButton', $event); if (props.showPanel) {
// } this.appendBody();
// } this.event = $event;
// 绑定相应的事件
this.ngZone.runOutsideAngular(() => {
this.bindMenuMouseenter();
this.bindiMenuMouseleave();
this.mouseNotEnterLeave();
});
}
// 面板显示 脏值检测
this.changeRef.detectChanges();
this.changeRef.markForCheck();
context.emit('changeState', props.showPanel);
}
// return { /* 按钮触发事件 */
// // buttonClass, function toggle($event: any, btn) {
// onClickButton $event.stopPropagation();
// }; if (btn.disabled) return;
// } props.showPanel = false;
// 关闭下拉按钮面板 脏值检测
this.changeRef.detectChanges();
this.changeRef.markForCheck();
context.emit('change', btn.id);
context.emit('click', btn);
}
/* 显示出来的按钮组 */
function flatButtons() {
return props.data && props.data.slice(0, this.count);
}
function dpButtons() {
return props.data && props.data.slice(this.count);
}
// 下拉按钮显示到body中 可改变面板方向
function appendBody() {
if (this.dpMenu.nativeElement) {
// 添加到body 便于全部显示
document.body.appendChild(this.dpMenu.nativeElement);
}
}
/**
* ,
*
* @param btnSize
*/
function changePlacement(btnSize: any) {
if (!props.autoRectify) {
return;
}
const referPosition = this.getReferencePosition();
let newPlacement = props.realPlacement;
if (newPlacement.indexOf('bottom') > -1) {
if (this._menuHeight > referPosition.bottom - btnSize.bottom) {
newPlacement = newPlacement.replace('bottom', 'top');
}
} else if (newPlacement.indexOf('top') > -1) {
if (this._menuHeight > btnSize.top - referPosition.top) {
newPlacement = newPlacement.replace('top', 'bottom');
}
}
if (newPlacement.indexOf('left') > -1) {
if (this._menuWidth > btnSize.left - referPosition.left) {
newPlacement = newPlacement.replace('left', 'right');
}
} else if (newPlacement.indexOf('right') > -1) {
if (this._menuWidth > referPosition.right - btnSize.right) {
newPlacement = newPlacement.replace('right', 'left');
}
}
this.rectifyPlacement = newPlacement;
}
/**
*
*/
function getReferencePosition() {
let rRight = document.documentElement.clientWidth;
let rBottom = document.documentElement.clientHeight;
let rTop = 0;
let rLeft = 0;
// 横向参照
if (props.rectifyReferenceH) {
rRight = props.rectifyReferenceH.getBoundingClientRect().right;
rLeft = props.rectifyReferenceH.getBoundingClientRect().left;
}
// 纵向参照
if (props.rectifyReferenceV) {
rBottom = props.rectifyReferenceV.getBoundingClientRect().bottom;
rTop = props.rectifyReferenceV.getBoundingClientRect().top;
}
return { top: rTop, left: rLeft, right: rRight, bottom: rBottom };
}
/**
* class
* @param position
*/
function _getClsName(position) {
let className = '';
switch (position) {
case 'top-right':
case 'top':
// 朝上,朝上-朝右
className = 'dropup';
break;
case 'top-left':
// 朝上-朝左
className = 'dropup-left';
break;
case 'left-bottom':
case 'left':
// 横向——朝左——朝下
className = 'dropleft';
break;
case 'left-top':
// 横向——朝左——朝上
className = 'dropleft-up';
break;
case 'right-bottom':
case 'right':
// 横向——朝右——朝下
className = 'dropright';
break;
case 'right-top':
// 横向——朝右——朝上
className = 'dropright-up';
break;
case 'bottom-left':
// 朝下——朝左
className = 'dropdown-left';
break;
case 'bottom-right':
className = 'dropdown';
break;
default:
// 朝下,朝下——朝右
className = 'dropdown';
}
return className;
}
function getRealPlacement(pment) {
let result = 'bottom-right';
switch (pment) {
case 'top':
result = 'top-right';
break;
case 'left':
result = 'left-bottom';
break;
case 'right':
result = 'right-bottom';
break;
case 'bottom':
result = 'bottom-right';
break;
default:
result = pment;
}
return result;
}
/*
*
*/
function changePosition(btnSize: any) {
let rplacement = '';
if (props.autoRectify) {
rplacement = this.rectifyPlacement;
} else {
rplacement = props.realPlacement;
}
let styleTop = 0;
let styleLeft = 0;
if (rplacement.indexOf('top') > -1) {
styleTop = btnSize.top - this._menuHeight;
} else if (rplacement.indexOf('bottom') > -1) {
styleTop = btnSize.bottom;
}
if (rplacement.indexOf('right') > -1) {
styleLeft = btnSize.right;
} else if (rplacement.indexOf('left') > -1) {
styleLeft = btnSize.left - this._menuWidth;
}
// 开头
if (rplacement.indexOf('-top') > -1) {
styleTop -= btnSize.height;
} else if (rplacement.indexOf('-bottom') > -1) {
styleTop += btnSize.height;
}
this.dpMenu.nativeElement.style.top = styleTop + 'px';
this.dpMenu.nativeElement.style.left = styleLeft + 'px';
}
/* 绑定下拉面板鼠标进入事件 */
function bindMenuMouseenter() {
this.mouseenterEvent = this.changeFlagToTrue.bind(this);
this.dpMenu.nativeElement.addEventListener('mouseenter', this.mouseenterEvent);
}
/* 绑定下拉面板鼠标离开事件 */
function bindiMenuMouseleave() {
this.mouseleaveEvent = this.mouseLeave.bind(this);
this.dpMenu.nativeElement.addEventListener('mouseleave', this.mouseleaveEvent);
}
/* 绑定点击面板区域之外触发的事件 */
// bindDocClick() {
// this.documentClickEvent = this.clickDoc.bind(this);
// document.addEventListener('click', this.documentClickEvent);
// }
/* 解绑事件 */
function unbindMenuMouseenter() {
if (this.mouseenterEvent) {
this.dpMenu.nativeElement.removeEventListener('mouseenter', this.mouseenterEvent);
}
}
function unbindiMenuMouseleave() {
if (this.mouseleaveEvent) {
this.dpMenu.nativeElement.removeEventListener('mouseleave', this.mouseleaveEvent);
}
}
// unbindDocClick() {
// if (this.documentClickEvent) {
// document.removeEventListener('click', this.documentClickEvent);
// }
// }
/* flag true */
function changeFlagToTrue() {
props.dpFlag = true;
}
/* flag false */
function changeFlagToFalse() {
props.dpFlag = false;
}
/* 鼠标离开时 关闭menu */
function mouseLeave() {
if (props.dpFlag) {
this.changeFlagToFalse();
// this.unbindDocClick();
this.unbindiMenuMouseleave();
this.unbindMenuMouseenter();
this.close();
if (this.setTimeObj) {
this.ngZone.runOutsideAngular(() => {
clearTimeout(this.setTimeObj);
});
}
}
}
/* 鼠标没有进入到面板 一段时间后面板自动消失 */
function mouseNotEnterLeave() {
this.ngZone.runOutsideAngular(() => {
this.setTimeObj = setTimeout(() => {
if (!props.dpFlag) {
this.changeFlagToFalse();
// this.unbindDocClick();
this.unbindiMenuMouseleave();
this.unbindMenuMouseenter();
this.close();
if (this.setTimeObj) {
clearTimeout(this.setTimeObj);
}
}
}, 2000);
});
}
/* 关闭下拉面板 */
function close() {
props.showPanel = false;
// 关闭下拉按钮面板 脏值检测
if (!this.changeRef.destroyed) {
this.changeRef.detectChanges();
this.changeRef.markForCheck();
}
this.dpBtn.nativeElement.blur();
}
/* 动态指定menu在body中的位置 */
function setPosition(e) {
// 下拉按钮
const btnSize = this.dpBtn.nativeElement.getBoundingClientRect();
// 下拉面板
const menuRect = this.dpMenu.nativeElement.getBoundingClientRect();
this._menuHeight = menuRect.height;
this._menuWidth = menuRect.width;
// 如果要自动纠正方向
if (props.autoRectify) {
this.changePlacement(btnSize);
}
this.changePosition(btnSize);
}
return {
clickEvent
};
}