Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new capabilities and properties to Column and Dialog #6611

Merged
merged 10 commits into from
May 15, 2024
8 changes: 8 additions & 0 deletions components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -11892,6 +11892,14 @@
"default": "",
"description": "Inline style of the body."
},
{
"name": "cellEditValidateOnClose",
"optional": true,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "When enabled and cellEditorValidator is set, force to call cellEditorValidator before cell editor is closed. If cellEditorValidator returns false, editor stays open."
},
{
"name": "cellEditValidatorEvent",
"optional": true,
Expand Down
1 change: 1 addition & 0 deletions components/lib/column/ColumnBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const ColumnBase = ComponentBase.extend({
body: null,
bodyClassName: null,
bodyStyle: null,
cellEditValidateOnClose: false,
cellEditValidator: null,
cellEditValidatorEvent: 'click',
className: null,
Expand Down
6 changes: 6 additions & 0 deletions components/lib/column/column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,12 @@ export interface ColumnProps {
* Inline style of the body.
*/
bodyStyle?: React.CSSProperties | undefined;
/**
* When enabled and cellEditorValidator is set, force to call cellEditorValidator
* before cell editor is closed. If cellEditorValidator returns false, editor stays open.
* @defaultValue false
*/
cellEditValidateOnClose?: boolean | undefined;
/**
* Event to trigger the validation, possible values are "click" and "blur".
* @defaultValue click
Expand Down
6 changes: 5 additions & 1 deletion components/lib/datatable/BodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export const BodyCell = React.memo((props) => {
return getColumnProp('editor');
};

const cellEditValidateOnClose = () => {
return getColumnProp('cellEditValidateOnClose');
};

const [bindDocumentClickListener, unbindDocumentClickListener] = useEventListener({
type: 'click',
listener: (e) => {
Expand Down Expand Up @@ -174,7 +178,7 @@ export const BodyCell = React.memo((props) => {

let valid = true;

if (!submit && cellEditValidator) {
if ((!submit || cellEditValidateOnClose()) && cellEditValidator) {
valid = cellEditValidator(params);
}

Expand Down
3 changes: 2 additions & 1 deletion components/lib/dialog/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,8 @@ export const Dialog = React.forwardRef((inProps, ref) => {
type: 'button',
className: cx('closeButton'),
'aria-label': ariaLabel,
onClick: onClose
onClick: onClose,
onKeyDown: (ev) => ev.stopPropagation()
},
ptm('closeButton')
);
Expand Down
54 changes: 27 additions & 27 deletions components/lib/dialog/DialogBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ const styles = `
background-color: transparent;
transition-property: background-color;
}

.p-dialog-visible {
display: flex;
}

.p-dialog-mask.p-component-overlay {
pointer-events: auto;
}

.p-dialog {
display: flex;
flex-direction: column;
Expand All @@ -62,69 +62,69 @@ const styles = `
transform: scale(1);
position: relative;
}

.p-dialog-content {
overflow-y: auto;
flex-grow: 1;
}

.p-dialog-header {
display: flex;
align-items: center;
flex-shrink: 0;
}

.p-dialog-footer {
flex-shrink: 0;
}

.p-dialog .p-dialog-header-icons {
display: flex;
align-items: center;
align-self: flex-start;
flex-shrink: 0;
}

.p-dialog .p-dialog-header-icon {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}

.p-dialog .p-dialog-title {
flex-grow: 1;
}

/* Fluid */
.p-fluid .p-dialog-footer .p-button {
width: auto;
}

/* Animation */
/* Center */
.p-dialog-enter {
opacity: 0;
transform: scale(0.7);
}

.p-dialog-enter-active {
opacity: 1;
transform: scale(1);
transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}

.p-dialog-enter-done {
transform: none;
}

.p-dialog-exit-active {
opacity: 0;
transform: scale(0.7);
transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top, Bottom, Left, Right, Top* and Bottom* */
.p-dialog-top .p-dialog,
.p-dialog-bottom .p-dialog,
Expand All @@ -136,17 +136,17 @@ const styles = `
.p-dialog-bottom-right .p-dialog {
margin: 0.75em;
}

.p-dialog-top .p-dialog-enter,
.p-dialog-top .p-dialog-exit-active {
transform: translate3d(0px, -100%, 0px);
}

.p-dialog-bottom .p-dialog-enter,
.p-dialog-bottom .p-dialog-exit-active {
transform: translate3d(0px, 100%, 0px);
}

.p-dialog-left .p-dialog-enter,
.p-dialog-left .p-dialog-exit-active,
.p-dialog-top-left .p-dialog-enter,
Expand All @@ -155,7 +155,7 @@ const styles = `
.p-dialog-bottom-left .p-dialog-exit-active {
transform: translate3d(-100%, 0px, 0px);
}

.p-dialog-right .p-dialog-enter,
.p-dialog-right .p-dialog-exit-active,
.p-dialog-top-right .p-dialog-enter,
Expand All @@ -164,7 +164,7 @@ const styles = `
.p-dialog-bottom-right .p-dialog-exit-active {
transform: translate3d(100%, 0px, 0px);
}

.p-dialog-top .p-dialog-enter-active,
.p-dialog-bottom .p-dialog-enter-active,
.p-dialog-left .p-dialog-enter-active,
Expand All @@ -176,7 +176,7 @@ const styles = `
transform: translate3d(0px, 0px, 0px);
transition: all 0.3s ease-out;
}

.p-dialog-top .p-dialog-exit-active,
.p-dialog-bottom .p-dialog-exit-active,
.p-dialog-left .p-dialog-exit-active,
Expand All @@ -187,7 +187,7 @@ const styles = `
.p-dialog-bottom-right .p-dialog-exit-active {
transition: all 0.3s ease-out;
}

/* Maximize */
.p-dialog-maximized {
transition: none;
Expand All @@ -199,16 +199,16 @@ const styles = `
top: 0px !important;
left: 0px !important;
}

.p-dialog-maximized .p-dialog-content {
flex-grow: 1;
}

.p-confirm-dialog .p-dialog-content {
display: flex;
align-items: center;
}

/* Resizable */
.p-dialog .p-resizable-handle {
position: absolute;
Expand All @@ -220,10 +220,10 @@ const styles = `
right: 1px;
bottom: 1px;
}

.p-dialog-draggable .p-dialog-header {
cursor: move;
}
}
}
`;

Expand Down
Loading