-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix part of #5070: Display empty answer message in ratio input intera…
…ction (#5263) <!-- READ ME FIRST: Please fill in the explanation section below and check off every point from the Essential Checklist! --> ## Explanation <!-- - Explain what your PR does. If this PR fixes an existing bug, please include - "Fixes #bugnum:" in the explanation so that GitHub can auto-close the issue - when this PR is merged. --> Fixes part of #5070 Enables the `submit_answer_button` when the pending answer is empty. Instead of disabling the button, an error message, stating "_**Enter a ratio to continue.**_", is now displayed when the user attempts to submit a blank answer. `RatioInputInteractionViewTestActivity` is added to accessibility-label exemption as this is a test activity. https://github.com/oppia/oppia-android/assets/84731134/33c797c5-af44-4eaa-980e-fafaccf72d26 ## Essential Checklist <!-- Please tick the relevant boxes by putting an "x" in them. --> - [x] The PR title and explanation each start with "Fix #bugnum: " (If this PR fixes part of an issue, prefix the title with "Fix part of #bugnum: ...".) - [x] Any changes to [scripts/assets](https://github.com/oppia/oppia-android/tree/develop/scripts/assets) files have their rationale included in the PR explanation. - [x] The PR follows the [style guide](https://github.com/oppia/oppia-android/wiki/Coding-style-guide). - [x] The PR does not contain any unnecessary code changes from Android Studio ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#undo-unnecessary-changes)). - [x] The PR is made from a branch that's **not** called "develop" and is up-to-date with "develop". - [x] The PR is **assigned** to the appropriate reviewers ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#clarification-regarding-assignees-and-reviewers-section)). ## For UI-specific PRs only <!-- Delete these section if this PR does not include UI-related changes. --> If your PR includes UI-related changes, then: - Add screenshots for portrait/landscape for both a tablet & phone of the before & after UI changes - For the screenshots above, include both English and pseudo-localized (RTL) screenshots (see [RTL guide](https://github.com/oppia/oppia-android/wiki/RTL-Guidelines)) - Add a video showing the full UX flow with a screen reader enabled (see [accessibility guide](https://github.com/oppia/oppia-android/wiki/Accessibility-A11y-Guide)) - For PRs introducing new UI elements or color changes, both light and dark mode screenshots must be included - Add a screenshot demonstrating that you ran affected Espresso tests locally & that they're passing --------- Co-authored-by: Adhiambo Peres <[email protected]>
- Loading branch information
1 parent
9ad24ef
commit bb69b22
Showing
12 changed files
with
702 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
app/src/main/java/org/oppia/android/app/testing/RatioInputInteractionViewTestActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package org.oppia.android.app.testing | ||
|
||
import android.content.Context | ||
import android.content.Intent | ||
import android.os.Bundle | ||
import android.view.View | ||
import androidx.databinding.DataBindingUtil | ||
import org.oppia.android.R | ||
import org.oppia.android.app.activity.ActivityComponentImpl | ||
import org.oppia.android.app.activity.InjectableAutoLocalizedAppCompatActivity | ||
import org.oppia.android.app.customview.interaction.RatioInputInteractionView | ||
import org.oppia.android.app.model.InputInteractionViewTestActivityParams | ||
import org.oppia.android.app.model.Interaction | ||
import org.oppia.android.app.model.SchemaObject | ||
import org.oppia.android.app.model.UserAnswer | ||
import org.oppia.android.app.model.WrittenTranslationContext | ||
import org.oppia.android.app.player.state.answerhandling.AnswerErrorCategory | ||
import org.oppia.android.app.player.state.answerhandling.InteractionAnswerErrorOrAvailabilityCheckReceiver | ||
import org.oppia.android.app.player.state.answerhandling.InteractionAnswerReceiver | ||
import org.oppia.android.app.player.state.itemviewmodel.RatioExpressionInputInteractionViewModel | ||
import org.oppia.android.app.player.state.itemviewmodel.StateItemViewModel | ||
import org.oppia.android.app.player.state.itemviewmodel.StateItemViewModel.InteractionItemFactory | ||
import org.oppia.android.app.player.state.listener.StateKeyboardButtonListener | ||
import org.oppia.android.databinding.ActivityRatioInputInteractionViewTestBinding | ||
import org.oppia.android.util.extensions.getProtoExtra | ||
import org.oppia.android.util.extensions.putProtoExtra | ||
import javax.inject.Inject | ||
|
||
/** | ||
* This is a dummy activity to test [RatioInputInteractionView]. | ||
*/ | ||
class RatioInputInteractionViewTestActivity : | ||
InjectableAutoLocalizedAppCompatActivity(), | ||
StateKeyboardButtonListener, | ||
InteractionAnswerErrorOrAvailabilityCheckReceiver, | ||
InteractionAnswerReceiver { | ||
private lateinit var binding: ActivityRatioInputInteractionViewTestBinding | ||
|
||
@Inject | ||
lateinit var ratioViewModelFactory: RatioExpressionInputInteractionViewModel.FactoryImpl | ||
|
||
/** | ||
* Gives access to the [RatioExpressionInputInteractionViewModel]. | ||
*/ | ||
val ratioExpressionInputInteractionViewModel by lazy { | ||
ratioViewModelFactory.create<RatioExpressionInputInteractionViewModel>( | ||
interaction = Interaction.newBuilder().putCustomizationArgs( | ||
"numberOfTerms", | ||
SchemaObject.newBuilder().setSignedInt(3).build() | ||
).build() | ||
) | ||
} | ||
|
||
/** | ||
* Gives access to the translation context. | ||
*/ | ||
lateinit var writtenTranslationContext: WrittenTranslationContext | ||
|
||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
(activityComponent as ActivityComponentImpl).inject(this) | ||
binding = DataBindingUtil.setContentView<ActivityRatioInputInteractionViewTestBinding>( | ||
this, R.layout.activity_ratio_input_interaction_view_test | ||
) | ||
|
||
val params = | ||
intent.getProtoExtra( | ||
TEST_ACTIVITY_PARAMS_ARGUMENT_KEY, | ||
InputInteractionViewTestActivityParams.getDefaultInstance() | ||
) | ||
writtenTranslationContext = params.writtenTranslationContext | ||
|
||
binding.ratioInteractionInputViewModel = ratioExpressionInputInteractionViewModel | ||
} | ||
|
||
/** | ||
* Checks for submit time errors. | ||
*/ | ||
fun getPendingAnswerErrorOnSubmitClick(v: View) { | ||
ratioExpressionInputInteractionViewModel | ||
.checkPendingAnswerError(AnswerErrorCategory.SUBMIT_TIME) | ||
} | ||
|
||
override fun onAnswerReadyForSubmission(answer: UserAnswer) { } | ||
|
||
override fun onEditorAction(actionCode: Int) { } | ||
|
||
private inline fun <reified T : StateItemViewModel> InteractionItemFactory.create( | ||
interaction: Interaction = Interaction.getDefaultInstance() | ||
): T { | ||
return create( | ||
entityId = "fake_entity_id", | ||
hasConversationView = false, | ||
interaction = interaction, | ||
interactionAnswerReceiver = this@RatioInputInteractionViewTestActivity, | ||
answerErrorReceiver = this@RatioInputInteractionViewTestActivity, | ||
hasPreviousButton = false, | ||
isSplitView = false, | ||
writtenTranslationContext, | ||
timeToStartNoticeAnimationMs = null | ||
) as T | ||
} | ||
|
||
companion object { | ||
private const val TEST_ACTIVITY_PARAMS_ARGUMENT_KEY = | ||
"RatioInputInteractionViewTestActivity.params" | ||
|
||
/** | ||
* Creates an intent to open [RatioInputInteractionViewTestActivity]. | ||
*/ | ||
fun createIntent( | ||
context: Context, | ||
extras: InputInteractionViewTestActivityParams | ||
): Intent { | ||
return Intent(context, RatioInputInteractionViewTestActivity::class.java).also { | ||
it.putProtoExtra(TEST_ACTIVITY_PARAMS_ARGUMENT_KEY, extras) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.