Skip to content

Commit

Permalink
Work for #6474: change choose button caption if file is going to be r…
Browse files Browse the repository at this point in the history
…eplaced
  • Loading branch information
dk981234 committed Aug 9, 2023
1 parent b874b55 commit 439ef50
Show file tree
Hide file tree
Showing 18 changed files with 223 additions and 185 deletions.
6 changes: 3 additions & 3 deletions packages/survey-angular-ui/src/questions/file.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
tabindex="0"
[class]="model.getChooseFileCss()"
[attr.for]="model.inputId"
[attr.aria-label]="model.chooseButtonCaption"
[attr.aria-label]="model.chooseButtonText"
[key2click]
>
<span>{{ model.chooseButtonCaption }}</span>
<svg *ngIf="model.cssClasses.chooseFileIconId" [title]="model.chooseButtonCaption" [iconName]="model.cssClasses.chooseFileIconId" [size]="'auto'" sv-ng-svg-icon></svg>
<span>{{ model.chooseButtonText }}</span>
<svg *ngIf="model.cssClasses.chooseFileIconId" [title]="model.chooseButtonText" [iconName]="model.cssClasses.chooseFileIconId" [size]="'auto'" sv-ng-svg-icon></svg>
</label>
<span
[class]="model.cssClasses.noFileChosen"
Expand Down
6 changes: 3 additions & 3 deletions packages/survey-vue3-ui/src/File.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
tabindex="0"
:class="question.getChooseFileCss()"
:for="question.inputId"
v-bind:aria-label="question.chooseButtonCaption"
v-bind:aria-label="question.chooseButtonText"
v-key2click
>
<span>{{ question.chooseButtonCaption }}</span>
<span>{{ question.chooseButtonText }}</span>
<sv-svg-icon
v-if="question.cssClasses.chooseFileIconId"
:title="question.chooseButtonCaption"
:title="question.chooseButtonText"
:iconName="question.cssClasses.chooseFileIconId"
:size="'auto'"
></sv-svg-icon>
Expand Down
3 changes: 3 additions & 0 deletions src/knockout/koquestion_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ class QuestionFileImplementor extends QuestionImplementor {
return [];
})
);
this.setObservaleObj("ko", ko.observable<string>());
this.setObservaleObj("koInputTitle", ko.observable<string>());
this.setObservaleObj("koChooseButtonText", ko.observable<string>());
this.setObservaleObj(
"koChooseFileCss",
ko.pureComputed(() => {
Expand Down Expand Up @@ -66,6 +68,7 @@ export class QuestionFile extends QuestionFileModel {
private _implementor: QuestionFileImplementor;
private updateState = (sender: QuestionFileModel, options: any) => {
this.koState(options.state);
this.koChooseButtonText(this.chooseButtonText);
this.koInputTitle(this.inputTitle);
};
constructor(name: string) {
Expand Down
6 changes: 3 additions & 3 deletions src/knockout/templates/question-file.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<span data-bind="css: question.cssClasses.dragAreaPlaceholder, text: question.dragAreaPlaceholder"></span>
<div data-bind="css: question.cssClasses.wrapper">
<!-- ko ifnot: isReadOnly -->
<label tabindex="0" role="button" data-bind="css: question.koChooseFileCss, key2click, attr: { for: question.inputId, 'aria-label': question.chooseButtonCaption }">
<span data-bind="text: question.chooseButtonCaption"></span>
<label tabindex="0" role="button" data-bind="css: question.koChooseFileCss, key2click, attr: { for: question.inputId, 'aria-label': question.koChooseButtonText }">
<span data-bind="text: question.koChooseButtonText"></span>
<!-- ko if: question.cssClasses.chooseFileIconId -->
<!-- ko component: { name: 'sv-svg-icon', params: { title: question.chooseButtonCaption, iconName: question.cssClasses.chooseFileIconId, size: 'auto' } } --><!-- /ko -->
<!-- ko component: { name: 'sv-svg-icon', params: { title: question.chooseButtonText, iconName: question.cssClasses.chooseFileIconId, size: 'auto' } } --><!-- /ko -->
<!-- /ko -->
</label>
<!-- /ko -->
Expand Down
1 change: 1 addition & 0 deletions src/localization/english.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export var englishStrings = {
clearCaption: "Clear",
signaturePlaceHolder: "Sign here",
chooseFileCaption: "Choose file",
replaceFileCaption: "Replace file",
removeFileCaption: "Remove this file",
booleanCheckedLabel: "Yes",
booleanUncheckedLabel: "No",
Expand Down
6 changes: 6 additions & 0 deletions src/question_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ export class QuestionFileModel extends Question {
@property({ localizable: { defaultStr: "confirmRemoveAllFiles" } }) confirmRemoveAllMessage: string;
@property({ localizable: { defaultStr: "noFileChosen" } }) noFileChosenCaption: string;
@property({ localizable: { defaultStr: "chooseFileCaption" } }) chooseButtonCaption: string;
@property({ localizable: { defaultStr: "replaceFileCaption" } }) replaceButtonCaption: string;
@property({ localizable: { defaultStr: "clearCaption" } }) clearButtonCaption: string;
@property({ localizable: { defaultStr: "removeFileCaption" } }) removeFileCaption: string;
@property({ localizable: { defaultStr: "loadingFile" } }) loadingFileTitle: string;
Expand All @@ -227,6 +228,11 @@ export class QuestionFileModel extends Question {
if (this.isEmpty()) return this.chooseFileTitle;
return " ";
}

public get chooseButtonText () {
return this.isEmpty() || this.allowMultiple ? this.chooseButtonCaption : this.replaceButtonCaption;
}

public clear(doneCallback?: () => void) {
if (!this.survey) return;
this.containsMultiplyFiles = false;
Expand Down
6 changes: 3 additions & 3 deletions src/react/reactquestion_file.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ export class SurveyQuestionFile extends SurveyQuestionElementBase {
tabIndex={0}
className={this.question.getChooseFileCss()}
htmlFor={this.question.inputId}
aria-label={this.question.chooseButtonCaption}
aria-label={this.question.chooseButtonText}
>
<span>{this.question.chooseButtonCaption}</span>
{(!!this.question.cssClasses.chooseFileIconId) ? <SvgIcon title={this.question.chooseButtonCaption} iconName={this.question.cssClasses.chooseFileIconId} size={"auto"}></SvgIcon>: null }
<span>{this.question.chooseButtonText}</span>
{(!!this.question.cssClasses.chooseFileIconId) ? <SvgIcon title={this.question.chooseButtonText} iconName={this.question.cssClasses.chooseFileIconId} size={"auto"}></SvgIcon>: null }
</label>
);
if (this.question.isEmpty()) {
Expand Down
6 changes: 3 additions & 3 deletions src/vue/file.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
tabindex="0"
:class="question.getChooseFileCss()"
:for="question.inputId"
v-bind:aria-label="question.chooseButtonCaption"
v-bind:aria-label="question.chooseButtonText"
v-key2click
>
<span>{{ question.chooseButtonCaption }}</span>
<sv-svg-icon v-if="question.cssClasses.chooseFileIconId" :title="question.chooseButtonCaption" :iconName="question.cssClasses.chooseFileIconId" :size="'auto'"></sv-svg-icon>
<span>{{ question.chooseButtonText }}</span>
<sv-svg-icon v-if="question.cssClasses.chooseFileIconId" :title="question.chooseButtonText" :iconName="question.cssClasses.chooseFileIconId" :size="'auto'"></sv-svg-icon>
</label>
<span
:class="question.cssClasses.noFileChosen"
Expand Down
8 changes: 4 additions & 4 deletions tests/markup/snapshots/file-2-png.snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<div class="sd-file__decorator">
<span class="sd-file__drag-area-placeholder">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sd-file__wrapper">
<label aria-label="Choose file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Choose file</span>
<svg aria-label="Choose file" class="sv-svg-icon" role="img">
<label aria-label="Replace file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Replace file</span>
<svg aria-label="Replace file" class="sv-svg-icon" role="img">
<use xlink:href="#icon-choosefile" class="">
</use>
<title class="">Choose file</title>
<title class="">Replace file</title>
</svg>
</label>
</div>
Expand Down
8 changes: 4 additions & 4 deletions tests/markup/snapshots/file-2-zip.snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<div class="sd-file__decorator">
<span class="sd-file__drag-area-placeholder">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sd-file__wrapper">
<label aria-label="Choose file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Choose file</span>
<svg aria-label="Choose file" class="sv-svg-icon" role="img">
<label aria-label="Replace file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Replace file</span>
<svg aria-label="Replace file" class="sv-svg-icon" role="img">
<use xlink:href="#icon-choosefile" class="">
</use>
<title class="">Choose file</title>
<title class="">Replace file</title>
</svg>
</label>
</div>
Expand Down
56 changes: 28 additions & 28 deletions tests/markup/snapshots/file-image-size.snap.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<div class="sv_q_file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div>
<label aria-label="Choose file" class="sv_q_file_choose_button" role="button" tabindex="0">
<span>Choose file</span>
</label>
</div>
</div>
<button class="sv_q_file_remove_button" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv_q_file_preview">
<div class="sv_q_file_sign">
<a download="arrow.svg" href="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6L" style="width:350px;" title="arrow.svg">arrow.svg</a>
</div>
<div>
<img alt="File preview" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6L" style="height:250px; width:350px;">
<div>
<span class="sv_q_file_remove">Remove this file</span>
</div>
</div>
</span>
</div>
</div>
<div class="sv_q_file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div>
<label aria-label="Replace file" class="sv_q_file_choose_button" role="button" tabindex="0">
<span>Replace file</span>
</label>
</div>
</div>
<button class="sv_q_file_remove_button" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv_q_file_preview">
<div class="sv_q_file_sign">
<a download="arrow.svg" href="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6L" style="width:350px;" title="arrow.svg">arrow.svg</a>
</div>
<div>
<img alt="File preview" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6L" style="height:250px; width:350px;">
<div>
<span class="sv_q_file_remove">Remove this file</span>
</div>
</div>
</span>
</div>
</div>
</div>
8 changes: 4 additions & 4 deletions tests/markup/snapshots/file-mob2-png.snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<div class="sd-file__decorator">
<span class="sd-file__drag-area-placeholder">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sd-file__wrapper">
<label aria-label="Choose file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Choose file</span>
<svg aria-label="Choose file" class="sv-svg-icon" role="img">
<label aria-label="Replace file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Replace file</span>
<svg aria-label="Replace file" class="sv-svg-icon" role="img">
<use xlink:href="#icon-choosefile" class="">
</use>
<title class="">Choose file</title>
<title class="">Replace file</title>
</svg>
</label>
</div>
Expand Down
8 changes: 4 additions & 4 deletions tests/markup/snapshots/file-mob2-zip.snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<div class="sd-file__decorator">
<span class="sd-file__drag-area-placeholder">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sd-file__wrapper">
<label aria-label="Choose file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Choose file</span>
<svg aria-label="Choose file" class="sv-svg-icon" role="img">
<label aria-label="Replace file" class="sd-context-btn sd-file__choose-btn sd-file__choose-btn--icon" role="button" tabindex="0">
<span>Replace file</span>
<svg aria-label="Replace file" class="sv-svg-icon" role="img">
<use xlink:href="#icon-choosefile" class="">
</use>
<title class="">Choose file</title>
<title class="">Replace file</title>
</svg>
</label>
</div>
Expand Down
72 changes: 36 additions & 36 deletions tests/markup/snapshots/file-modern-png.snap.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
<div class="sv-file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sv-file__wrapper">
<label aria-label="Choose file" class="sv-btn sv-file__choose-btn" role="button" tabindex="0">
<span>Choose file</span>
</label>
</div>
</div>
<button class="sv-hidden" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv-file__preview">
<div>
<img alt="File preview" src="#item1.png">
<div>
<span class="sv-hidden">Remove this file</span>
<svg aria-label="Remove this file" class="sv-file__remove-svg sv-svg-icon" role="img">
<use xlink:href="#icon-removefile" class="">
</use>
<title class="">Remove this file</title>
</svg>
</div>
</div>
<div class="sv-file__sign">
<a download="item1.png" href="#item1.png" title="item1.png">item1.png</a>
</div>
</span>
</div>
<button class="sv-btn sv-file__clean-btn" type="button">
<span>Clear</span>
</button>
</div>
<div class="sv-file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sv-file__wrapper">
<label aria-label="Replace file" class="sv-btn sv-file__choose-btn" role="button" tabindex="0">
<span>Replace file</span>
</label>
</div>
</div>
<button class="sv-hidden" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv-file__preview">
<div>
<img alt="File preview" src="#item1.png">
<div>
<span class="sv-hidden">Remove this file</span>
<svg aria-label="Remove this file" class="sv-file__remove-svg sv-svg-icon" role="img">
<use xlink:href="#icon-removefile" class="">
</use>
<title class="">Remove this file</title>
</svg>
</div>
</div>
<div class="sv-file__sign">
<a download="item1.png" href="#item1.png" title="item1.png">item1.png</a>
</div>
</span>
</div>
<button class="sv-btn sv-file__clean-btn" type="button">
<span>Clear</span>
</button>
</div>
</div>
70 changes: 35 additions & 35 deletions tests/markup/snapshots/file-modern-zip.snap.html
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
<div class="sv-file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sv-file__wrapper">
<label aria-label="Choose file" class="sv-btn sv-file__choose-btn" role="button" tabindex="0">
<span>Choose file</span>
</label>
</div>
</div>
<button class="sv-hidden" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv-file__preview">
<div>
<div>
<span class="sv-hidden">Remove this file</span>
<svg aria-label="Remove this file" class="sv-file__remove-svg sv-svg-icon" role="img">
<use xlink:href="#icon-removefile" class="">
</use>
<title class="">Remove this file</title>
</svg>
</div>
</div>
<div class="sv-file__sign">
<a download="item1.zip" href="#item1.zip" title="item1.zip">item1.zip</a>
</div>
</span>
</div>
<button class="sv-btn sv-file__clean-btn" type="button">
<span>Clear</span>
</button>
</div>
<div class="sv-file">
<input aria-invalid="false" aria-label="Question title" aria-required="false" class="sv-visuallyhidden" id="testid0i" tabindex="-1" title=" " type="file">
<div>
<div class="sv-file__decorator">
<span class="sv-hidden">Drag and drop a file here or click the button below and choose a file to upload.</span>
<div class="sv-file__wrapper">
<label aria-label="Replace file" class="sv-btn sv-file__choose-btn" role="button" tabindex="0">
<span>Replace file</span>
</label>
</div>
</div>
<button class="sv-hidden" type="button">
<span>Clear</span>
</button>
<div>
<span class="sv-file__preview">
<div>
<div>
<span class="sv-hidden">Remove this file</span>
<svg aria-label="Remove this file" class="sv-file__remove-svg sv-svg-icon" role="img">
<use xlink:href="#icon-removefile" class="">
</use>
<title class="">Remove this file</title>
</svg>
</div>
</div>
<div class="sv-file__sign">
<a download="item1.zip" href="#item1.zip" title="item1.zip">item1.zip</a>
</div>
</span>
</div>
<button class="sv-btn sv-file__clean-btn" type="button">
<span>Clear</span>
</button>
</div>
</div>
Loading

0 comments on commit 439ef50

Please sign in to comment.