mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
73bef787cd
* feat: add Result component * fix: update md template tag html>tpl - fix `result` typo - update jest `result` snapshots * refactor: svg file to functional component icon - update jest snapshot * feat: add result * Feat descriptions (#1251) * feat: add descriptions * fix: add descriptions types and fix docs * fix: lint change code * fix: demo warning * fix: update demo, snapshot and remove classnames * test: add descriptions test * fix: descriptions demo (#1498) * feat: add page header (#1250) * feat: add page-header component * update site: page-header * ts definition update: page-header * get page-header props with getComponentFromProp func * optimize page-header * doc: add page-header actions.md responsive.md * breadcrumb itemRender add pure function support * style: format code * feat: update style to 3.23.6 from 2.13.6 * feat: update style to 3.26.8 from 3.23.6 * chore: update util * chore: update util * feat: update affix * feat: update alert * feat: update anchor * feat: update auto-complete * feat: update avatar * feat: update back-top * feat: update badge * feat: update button * feat: update breadcrumb * feat: update ts * docs: update doc * feat: update calendat * feat: update card * feat: update carousel * feat: update carousel * feat: update checkbox * feat: update comment * feat: update config-provider * docs: update doc * feat: update collapse * feat: update locale * feat: update date-picker * feat: update divider * feat: update drawer * feat: update dropdown * feat: update rc-trigger * feat: update dropdown * feat: update empty * test: add empty test * feat: update form * feat: update form * feat: update spin * feat: update grid * docs: update grid doc * feat: update icon * feat: update slider * feat: update textarea * feat: update input-number * feat: update layout * feat: update list * feat: update menu * feat: meaage add key for update content * feat: modal add closeIcon support * feat: update notification * feat: add pagination disabled support * feat: popconfirm add disabled support * test: update popover * feat: progress support custom line-gradiend * feat: update radio * test: update radio test * docs: update rate demo * feat: skeleton add avatar support number type * test: add switch test * test: update statistic test * fix: input clear icon event * feat: steps add type、 v-model、subTitle * feat: delete typography component * feat: delete Typography style * perf: update select * feat: add download transformFile previewFile actio * docs: update upload * feat: update tree-select * docs: update tree-select * feat: tree add blockNode selectable * docs: add tree demo * test: update snap * docs: updatedoc * feat: update tag * docs: update ad doc * feat: update tooltip * feat: update timeline * feat: time-picker add clearIcon * docs: update tabs * feat: transfer support custom children * test: update transfer test * feat: update table * test: update table test * test: update test * feat: calendar update locale * test: update test snap * feat: add mentions (#1790) * feat: mentions style * feat: theme default * feat: add mentions component * feat: mentions API * feat: add unit test for mentions * feat: update mentions demo * perf: model and inheritAttrs for mentions * perf: use getComponentFromProp instead of this.$props * perf: mentions rm defaultProps * feat: rm rows in mentionsProps * fix: mentions keyDown didn't work * docs: update mentions api * perf: mentions code * feat: update mentions * bump 1.5.0-alpha.1 * feat: pageheader add ghost prop * docs: update descriptions demo * chore: page-header add ghost type * fix: color error * feat: update to 3.26.12 * fix: some prop default value * fix(typo): form, carousel, upload. duplicate identifier (#1848) * Add Mentions Type (#1845) * feat: add mentions type * feat: add mentions in ant-design-vue.d.ts * docs: update doc * docs: add changelog * fix: mentions getPopupCotainer value (#1850) * docs: update doc * docs: uptate demo * docs: update demo * docs: delete demo * docs: delete doc * test: update snapshots * style: format code * chore: update travis * docs: update demo Co-authored-by: Sendya <18x@loacg.com> Co-authored-by: zkwolf <chenhao5866@gmail.com> Co-authored-by: drafish <xwlyy1991@163.com> Co-authored-by: Amour1688 <31695475+Amour1688@users.noreply.github.com>
289 lines
9.4 KiB
Vue
Executable File
289 lines
9.4 KiB
Vue
Executable File
import PropTypes from '../_util/vue-types';
|
|
import classNames from 'classnames';
|
|
import { ColProps } from '../grid/Col';
|
|
import Vue from 'vue';
|
|
import isRegExp from 'lodash/isRegExp';
|
|
import warning from '../_util/warning';
|
|
import createDOMForm from '../vc-form/src/createDOMForm';
|
|
import createFormField from '../vc-form/src/createFormField';
|
|
import FormItem from './FormItem';
|
|
import { FIELD_META_PROP, FIELD_DATA_PROP } from './constants';
|
|
import { initDefaultProps, getListeners } from '../_util/props-util';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
import Base from '../base';
|
|
|
|
export const FormCreateOption = {
|
|
onFieldsChange: PropTypes.func,
|
|
onValuesChange: PropTypes.func,
|
|
mapPropsToFields: PropTypes.func,
|
|
validateMessages: PropTypes.any,
|
|
withRef: PropTypes.bool,
|
|
name: PropTypes.string,
|
|
};
|
|
|
|
// function create
|
|
export const WrappedFormUtils = {
|
|
/** 获取一组输入控件的值,如不传入参数,则获取全部组件的值 */
|
|
getFieldsValue: PropTypes.func,
|
|
/** 获取一个输入控件的值*/
|
|
getFieldValue: PropTypes.func,
|
|
/** 设置一组输入控件的值*/
|
|
setFieldsValue: PropTypes.func,
|
|
/** 设置一组输入控件的值*/
|
|
setFields: PropTypes.func,
|
|
/** 校验并获取一组输入域的值与 Error */
|
|
validateFields: PropTypes.func,
|
|
// validateFields(fieldNames: Array<string>, options: Object, callback: ValidateCallback): void;
|
|
// validateFields(fieldNames: Array<string>, callback: ValidateCallback): void;
|
|
// validateFields(options: Object, callback: ValidateCallback): void;
|
|
// validateFields(callback: ValidateCallback): void;
|
|
// validateFields(): void;
|
|
/** 与 `validateFields` 相似,但校验完后,如果校验不通过的菜单域不在可见范围内,则自动滚动进可见范围 */
|
|
validateFieldsAndScroll: PropTypes.func,
|
|
// validateFieldsAndScroll(fieldNames?: Array<string>, options?: Object, callback?: ValidateCallback): void;
|
|
// validateFieldsAndScroll(fieldNames?: Array<string>, callback?: ValidateCallback): void;
|
|
// validateFieldsAndScroll(options?: Object, callback?: ValidateCallback): void;
|
|
// validateFieldsAndScroll(callback?: ValidateCallback): void;
|
|
// validateFieldsAndScroll(): void;
|
|
/** 获取某个输入控件的 Error */
|
|
getFieldError: PropTypes.func,
|
|
getFieldsError: PropTypes.func,
|
|
/** 判断一个输入控件是否在校验状态*/
|
|
isFieldValidating: PropTypes.func,
|
|
isFieldTouched: PropTypes.func,
|
|
isFieldsTouched: PropTypes.func,
|
|
/** 重置一组输入控件的值与状态,如不传入参数,则重置所有组件 */
|
|
resetFields: PropTypes.func,
|
|
|
|
getFieldDecorator: PropTypes.func,
|
|
};
|
|
|
|
export const FormProps = {
|
|
layout: PropTypes.oneOf(['horizontal', 'inline', 'vertical']),
|
|
labelCol: PropTypes.shape(ColProps).loose,
|
|
wrapperCol: PropTypes.shape(ColProps).loose,
|
|
colon: PropTypes.bool,
|
|
labelAlign: PropTypes.oneOf(['left', 'right']),
|
|
form: PropTypes.object,
|
|
// onSubmit: React.FormEventHandler<any>;
|
|
prefixCls: PropTypes.string,
|
|
hideRequiredMark: PropTypes.bool,
|
|
autoFormCreate: PropTypes.func,
|
|
options: PropTypes.object,
|
|
selfUpdate: PropTypes.bool,
|
|
};
|
|
|
|
export const ValidationRule = {
|
|
/** validation error message */
|
|
message: PropTypes.string,
|
|
/** built-in validation type, available options: https://github.com/yiminghe/async-validator#type */
|
|
type: PropTypes.string,
|
|
/** indicates whether field is required */
|
|
required: PropTypes.boolean,
|
|
/** treat required fields that only contain whitespace as errors */
|
|
whitespace: PropTypes.boolean,
|
|
/** validate the exact length of a field */
|
|
len: PropTypes.number,
|
|
/** validate the min length of a field */
|
|
min: PropTypes.number,
|
|
/** validate the max length of a field */
|
|
max: PropTypes.number,
|
|
/** validate the value from a list of possible values */
|
|
enum: PropTypes.oneOfType([String, PropTypes.arrayOf(String)]),
|
|
/** validate from a regular expression */
|
|
pattern: PropTypes.custom(isRegExp),
|
|
/** transform a value before validation */
|
|
transform: PropTypes.func,
|
|
/** custom validate function (Note: callback must be called) */
|
|
validator: PropTypes.func,
|
|
};
|
|
|
|
// export type ValidateCallback = (errors: any, values: any) => void;
|
|
|
|
// export type GetFieldDecoratorOptions = {
|
|
// /** 子节点的值的属性,如 Checkbox 的是 'checked' */
|
|
// valuePropName?: string;
|
|
// /** 子节点的初始值,类型、可选值均由子节点决定 */
|
|
// initialValue?: any;
|
|
// /** 收集子节点的值的时机 */
|
|
// trigger?: string;
|
|
// /** 可以把 onChange 的参数转化为控件的值,例如 DatePicker 可设为:(date, dateString) => dateString */
|
|
// getValueFromEvent?: (...args: any[]) => any;
|
|
// /** Get the component props according to field value. */
|
|
// getValueProps?: (value: any) => any;
|
|
// /** 校验子节点值的时机 */
|
|
// validateTrigger?: string | string[];
|
|
// /** 校验规则,参见 [async-validator](https://github.com/yiminghe/async-validator) */
|
|
// rules?: ValidationRule[];
|
|
// /** 是否和其他控件互斥,特别用于 Radio 单选控件 */
|
|
// exclusive?: boolean;
|
|
// /** Normalize value to form component */
|
|
// normalize?: (value: any, prevValue: any, allValues: any) => any;
|
|
// /** Whether stop validate on first rule of error for this field. */
|
|
// validateFirst?: boolean;
|
|
// /** 是否一直保留子节点的信息 */
|
|
// preserve?: boolean;
|
|
// };
|
|
|
|
const Form = {
|
|
name: 'AForm',
|
|
props: initDefaultProps(FormProps, {
|
|
layout: 'horizontal',
|
|
hideRequiredMark: false,
|
|
colon: true,
|
|
}),
|
|
Item: FormItem,
|
|
createFormField: createFormField,
|
|
create: (options = {}) => {
|
|
return createDOMForm({
|
|
fieldNameProp: 'id',
|
|
...options,
|
|
fieldMetaProp: FIELD_META_PROP,
|
|
fieldDataProp: FIELD_DATA_PROP,
|
|
});
|
|
},
|
|
createForm(context, options = {}) {
|
|
const V = Base.Vue || Vue;
|
|
return new V(Form.create({ ...options, templateContext: context })());
|
|
},
|
|
created() {
|
|
this.formItemContexts = new Map();
|
|
},
|
|
provide() {
|
|
return {
|
|
FormContextProps: this,
|
|
// https://github.com/vueComponent/ant-design-vue/issues/446
|
|
collectFormItemContext:
|
|
this.form && this.form.templateContext
|
|
? (c, type = 'add') => {
|
|
const formItemContexts = this.formItemContexts;
|
|
const number = formItemContexts.get(c) || 0;
|
|
if (type === 'delete') {
|
|
if (number <= 1) {
|
|
formItemContexts.delete(c);
|
|
} else {
|
|
formItemContexts.set(c, number - 1);
|
|
}
|
|
} else {
|
|
if (c !== this.form.templateContext) {
|
|
formItemContexts.set(c, number + 1);
|
|
}
|
|
}
|
|
}
|
|
: () => {},
|
|
};
|
|
},
|
|
inject: {
|
|
configProvider: { default: () => ConfigConsumerProps },
|
|
},
|
|
watch: {
|
|
form() {
|
|
this.$forceUpdate();
|
|
},
|
|
},
|
|
computed: {
|
|
vertical() {
|
|
return this.layout === 'vertical';
|
|
},
|
|
},
|
|
beforeUpdate() {
|
|
this.formItemContexts.forEach((number, c) => {
|
|
if (c.$forceUpdate) {
|
|
c.$forceUpdate();
|
|
}
|
|
});
|
|
},
|
|
updated() {
|
|
if (this.form && this.form.cleanUpUselessFields) {
|
|
this.form.cleanUpUselessFields();
|
|
}
|
|
},
|
|
methods: {
|
|
onSubmit(e) {
|
|
if (!getListeners(this).submit) {
|
|
e.preventDefault();
|
|
} else {
|
|
this.$emit('submit', e);
|
|
}
|
|
},
|
|
},
|
|
|
|
render() {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
hideRequiredMark,
|
|
layout,
|
|
onSubmit,
|
|
$slots,
|
|
autoFormCreate,
|
|
options = {},
|
|
} = this;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('form', customizePrefixCls);
|
|
|
|
const formClassName = classNames(prefixCls, {
|
|
[`${prefixCls}-horizontal`]: layout === 'horizontal',
|
|
[`${prefixCls}-vertical`]: layout === 'vertical',
|
|
[`${prefixCls}-inline`]: layout === 'inline',
|
|
[`${prefixCls}-hide-required-mark`]: hideRequiredMark,
|
|
});
|
|
if (autoFormCreate) {
|
|
warning(false, 'Form', '`autoFormCreate` is deprecated. please use `form` instead.');
|
|
const DomForm =
|
|
this.DomForm ||
|
|
createDOMForm({
|
|
fieldNameProp: 'id',
|
|
...options,
|
|
fieldMetaProp: FIELD_META_PROP,
|
|
fieldDataProp: FIELD_DATA_PROP,
|
|
templateContext: this.$vnode.context,
|
|
})({
|
|
provide() {
|
|
return {
|
|
decoratorFormProps: this.$props,
|
|
};
|
|
},
|
|
data() {
|
|
return {
|
|
children: $slots.default,
|
|
formClassName: formClassName,
|
|
submit: onSubmit,
|
|
};
|
|
},
|
|
created() {
|
|
autoFormCreate(this.form);
|
|
},
|
|
render() {
|
|
const { children, formClassName, submit } = this;
|
|
return (
|
|
<form onSubmit={submit} class={formClassName}>
|
|
{children}
|
|
</form>
|
|
);
|
|
},
|
|
});
|
|
if (this.domForm) {
|
|
this.domForm.children = $slots.default;
|
|
this.domForm.submit = onSubmit;
|
|
this.domForm.formClassName = formClassName;
|
|
}
|
|
this.DomForm = DomForm;
|
|
|
|
return (
|
|
<DomForm
|
|
wrappedComponentRef={inst => {
|
|
this.domForm = inst;
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
return (
|
|
<form onSubmit={onSubmit} class={formClassName}>
|
|
{$slots.default}
|
|
</form>
|
|
);
|
|
},
|
|
};
|
|
|
|
export default Form;
|