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

add number validation #520

Merged
merged 3 commits into from
Feb 4, 2020
Merged

add number validation #520

merged 3 commits into from
Feb 4, 2020

Conversation

ninggao
Copy link
Contributor

@ninggao ninggao commented Feb 4, 2020

No description provided.

@ninggao ninggao requested a review from chrimc62 February 4, 2020 18:28
"property": "$@{property}",
"value": "=@number"
"$kind": "Microsoft.IfCondition",
"condition":"or(and(dialogClass.schema.properties['@{property}'].minimum, less(@number, dialogClass.schema.properties['@{property}'].minimum)), and(dialogClass.schema.properties['@{property}'].maximum, greater(@number, dialogClass.schema.properties['@{property}'].maximum)))",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dialogClass.schema.properties['@{property}'].minimum [](start = 32, length = 52)

I don't think you need this. Less with null should be false.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

"actions":[
{
"$kind": "Microsoft.SendActivity",
"activity": "@{callNumberAlert()}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

callNumberAlert [](start = 35, length = 15)

Hmmm. Seems like we might be missing something here--a way to say do the same prompt again. In what we have generated so far, prompts tend to be predicatable, i.e. we keep doing the same one until fulfilled. If though someone used a Random secondary selector the prompt would be different. We don't need to fix this here, but it is something to think about.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree. After check/alert/validation/help, we should have a way to let the users retry.

- ELSE:
- Enter a number for @{name(property)}

# numberValidation(property, number)
- IF: @{dialogClass.schema.properties[property].minimum && less(number, dialogClass.schema.properties[property].minimum)}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dialogClass.schema.properties[property].minimum [](start = 8, length = 48)

Do you need this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested, and removed.

Copy link
Contributor

@chrimc62 chrimc62 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@ninggao ninggao merged commit 94c660f into master Feb 4, 2020
@ninggao ninggao deleted the nigao/number branch February 4, 2020 19:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants