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

FIO-9921: fix issue with local paths not being propogated to edit grid #6072

Merged
merged 3 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/components/_classes/component/Component.js
Original file line number Diff line number Diff line change
Expand Up @@ -3097,7 +3097,7 @@

/**
* Returns if the value (e.g. array) should be divided between several inputs
* @returns {boolean}

Check warning on line 3100 in src/components/_classes/component/Component.js

View workflow job for this annotation

GitHub Actions / setup

Missing JSDoc @returns description
*/
isSingleInputValue() {
return false;
Expand Down Expand Up @@ -3434,9 +3434,11 @@
* @param {boolean} dirty - If the component is dirty.
* @param {boolean} ignoreCondition - If conditions for the component should be ignored when checking validity.
* @param {*} row - Contextual row data for this component.
* @param {*} options - Additional options for validation.
* @returns {string} - The message to show when the component is invalid.
*/
invalidMessage(data, dirty, ignoreCondition, row) {
invalidMessage(data, dirty, ignoreCondition, row, options = {}) {
const { local } = options;
if (!row) {
row = getContextualRowData(this.component, data, this.paths);
}
Expand All @@ -3459,6 +3461,7 @@
component: this.component,
data,
row,
local,
path: this.path || this.component.key,
parent: this.parent?.component,
paths: this.paths,
Expand Down Expand Up @@ -3647,7 +3650,7 @@

// Some components (for legacy reasons) have calls to "checkData" in inappropriate places such
// as setValue. Historically, this was bypassed by a series of cached states around the data model
// which caused its own problems. We need to ensure that premium and custom components do not fall into
// which caused its own problems. We need to ensure that premium and custom components do not fall into
// an infinite loop by only checking this component once.
if (this.checkingData) {
return;
Expand Down
4 changes: 3 additions & 1 deletion src/components/editgrid/EditGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,9 @@ export default class EditGridComponent extends NestedArrayComponent {
return false;
}

const message = this.invalid || this.invalidMessage(data, dirty, false, row);
// TODO: this is the only place invalidMessage gets called, and it's not clear why it's needed - we already validate the editGrid
// component above with super.checkComponentValidity
const message = this.invalid || this.invalidMessage(data, dirty, false, row, options);
if (allRowErrors.length && this.root?.submitted && !message) {
this._errors = this.setCustomValidity(message, dirty);
errors.push(...this._errors);
Expand Down
1 change: 1 addition & 0 deletions src/components/unknown/Unknown.form.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

/**
* Unknown Component schema.
* @param {...any} extend

Check warning on line 7 in src/components/unknown/Unknown.form.js

View workflow job for this annotation

GitHub Actions / setup

Missing JSDoc @param "extend" description
* @returns {object} - The Unknown Component edit form.
*/
export default function(...extend) {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/Tags.unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ describe('Tags Component', function() {
setTimeout(() => {
assert.equal(tags.errors.length, 1, 'Should set error after Tags component was blurred');
done();
}, 250);
}, 250);
}, 350);
}, 350);
}).catch(done);
});
});
Loading