Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Nov 23, 2023
2 parents 3c5bc9e + c36c4c1 commit fa998b9
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 19 deletions.
1 change: 1 addition & 0 deletions src/base-interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ export interface ISurveyLayoutElement {
component?: string;
template?: string;
data?: any;
index?: number;
processResponsiveness?: (width: number) => void;
}
export interface IPlainDataOptions {
Expand Down
31 changes: 16 additions & 15 deletions src/survey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1193,21 +1193,26 @@ export class SurveyModel extends SurveyElementCore
advHeader.titlePositionY = "middle";
advHeader.descriptionPositionX = target.logoPosition === "right" ? "left" : "right";
advHeader.descriptionPositionY = "middle";
advHeader.survey = target;
target.layoutElements.unshift({
id: "advanced-header",
container: "header",
component: "sv-header",
data: advHeader,
processResponsiveness: width => advHeader.processResponsiveness(width)
});
target.insertAdvancedHeader(advHeader);
}
} else {
target.removeLayoutElement("advanced-header");
}
}
}) headerView: "advanced" | "basic";

protected insertAdvancedHeader(advHeader: Cover): void {
advHeader.survey = this;
this.layoutElements.push({
id: "advanced-header",
container: "header",
component: "sv-header",
index: -100,
data: advHeader,
processResponsiveness: width => advHeader.processResponsiveness(width)
});
}

private getNavigationCss(main: string, btn: string) {
return new CssClassBuilder().append(main)
.append(btn).toString();
Expand Down Expand Up @@ -7362,6 +7367,7 @@ export class SurveyModel extends SurveyElementCore
}
}
}
containerLayoutElements.sort((a, b) => (a.index || 0) - (b.index || 0));
return containerLayoutElements;
}
public processPopupVisiblityChanged(question: Question, popup: PopupModel<any>, visible: boolean): void {
Expand All @@ -7382,13 +7388,8 @@ export class SurveyModel extends SurveyElementCore
this.removeLayoutElement("advanced-header");
const advHeader = new Cover();
advHeader.fromTheme(theme);
this.layoutElements.push({
id: "advanced-header",
container: "header",
component: "sv-header",
data: advHeader,
processResponsiveness: width => advHeader.processResponsiveness(width)
});
this.insertAdvancedHeader(advHeader);
this.headerView = "advanced";
}
if (key === "isPanelless") {
this.isCompact = theme[key];
Expand Down
62 changes: 58 additions & 4 deletions tests/surveytests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17250,7 +17250,8 @@ QUnit.test("getContainerContent - do not advanced header on completed page", fun
assert.deepEqual(getContainerContent("header"), [{
"component": "sv-header",
"container": "header",
"id": "advanced-header"
"id": "advanced-header",
"index": -100
}], "header for running survey");
assert.deepEqual(getContainerContent("footer"), [], "");
assert.deepEqual(getContainerContent("contentTop"), [], "");
Expand Down Expand Up @@ -17458,7 +17459,6 @@ QUnit.test("Use variables as default values in expression", function (assert) {
title: "myA = {myA}",
defaultValueExpression: "{myA}",
},

{
type: "text",
name: "q3",
Expand Down Expand Up @@ -17573,6 +17573,60 @@ QUnit.test("getContainerContent - navigation with page.navigationButtonsVisibili
assert.deepEqual(getContainerContent("right"), [], "default right");
});

QUnit.test("getContainerContent - header elements order", function (assert) {
function getContainerContent(container: LayoutElementContainer) {
let result = survey.getContainerContent(container);
result.forEach(item => {
delete item["processResponsiveness"];
delete item["data"];
});
return result;
}

const json = {
pages: [
{
"elements": [
{
"type": "rating",
"name": "satisfaction",
},
]
},
{
"elements": [
{
"type": "radiogroup",
"name": "price to competitors",
},
]
},
]
};

let survey = new SurveyModel(json);
survey.addLayoutElement({
id: "custom",
container: "header",
component: "sv-custom",
});
survey.applyTheme({ header: {} } as any);

assert.deepEqual(getContainerContent("header"), [
{
"component": "sv-header",
"container": "header",
"id": "advanced-header",
"index": -100
},
{
"component": "sv-custom",
"container": "header",
"id": "custom"
}
], "advanved header first, progress next");
});

QUnit.test("check title classes when readOnly changed", function (assert) {
const survey = new SurveyModel({
elements: [{
Expand Down Expand Up @@ -18113,7 +18167,7 @@ QUnit.test("survey.toJSON() doesn't work correctly if questionsOnPageMode=single
assert.equal(surveyJson.pages[0].elements.length, 3, "surveyJson elements count");
assert.equal(prepareJSON.pages[0].elements.length, 3, "prepareJSON elements count");

assert.deepEqual (surveyJson, prepareJSON);
assert.deepEqual(surveyJson, prepareJSON);
});
QUnit.test("survey.toJSON() doesn't work correctly if questionsOnPageMode=questionPerPage is used #7359, #2", function (assert) {
const surveyJson = {
Expand Down Expand Up @@ -18148,7 +18202,7 @@ QUnit.test("survey.toJSON() doesn't work correctly if questionsOnPageMode=questi
assert.equal(surveyJson.pages[0].elements.length, 3, "surveyJson elements count");
assert.equal(prepareJSON.pages[0].elements.length, 3, "prepareJSON elements count");

assert.deepEqual (surveyJson, prepareJSON);
assert.deepEqual(surveyJson, prepareJSON);
});

QUnit.test("Bug on loading json with collapsed panel. It was fixed in v1.9.117, #7355", function (assert) {
Expand Down

0 comments on commit fa998b9

Please sign in to comment.