-
Notifications
You must be signed in to change notification settings - Fork 11
Fix/smschars remove duplicate tests #2610
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
Open
andrewleith
wants to merge
6
commits into
main
Choose a base branch
from
fix/smschars-remove-duplicate-tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0733206
feat: add SMS Character Info to storybook menu
andrewleith c1423ed
feat: add link to SMS character info with service prefix example
andrewleith dc9d77c
refactor: remove duplicate tests and streamline SMS character info tests
andrewleith 646d0c2
chore: formatting
andrewleith 2237f9d
chore: run gulp
andrewleith 37a0fb7
Merge branch 'main' into fix/smschars-remove-duplicate-tests
jzbahrai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
app/templates/views/storybook/sms-character-info-with-prefix.html
This file contains hidden or 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,23 @@ | ||
| {% from "components/sms-character-info.html" import sms_character_info %} | ||
|
|
||
| <h2 class="heading-large">SMS Character Info - With Service Prefix</h2> | ||
| <p>Fragment count when a service prefix is prepended to the message. The 7-character "NotifyBC" prefix + ": " separator (9 chars total overhead) is counted toward the SMS fragment limit.</p> | ||
| <p>Try typing 152 characters in the box below to see it cross into 2 fragments (161 total with prefix overhead).</p> | ||
| <hr /> | ||
|
|
||
| <div class="md:w-2/3"> | ||
|
|
||
| <h2 class="heading-medium">Story: SMS character info panel with prefix</h2> | ||
|
|
||
| <label class="form-label" for="template_content">Message content</label> | ||
| <textarea | ||
| id="template_content" | ||
| name="template_content" | ||
| class="form-control w-full" | ||
| data-testid="template-content" | ||
| rows="5" | ||
| ></textarea> | ||
|
|
||
| {{ sms_character_info(sms_daily_limit="1,000", sms_prefix="NotifyBC") }} | ||
|
|
||
| </div> | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -61,7 +61,11 @@ | |
| { | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added the existing page to the menu so we can navigate to it. |
||
| 'name': 'Scheduler', | ||
| 'path': 'scheduler' | ||
| } | ||
| }, | ||
| { | ||
| 'name': 'SMS Character Info', | ||
| 'path': 'sms-character-info' | ||
| }, | ||
| ] %} | ||
| <ul class="list list-bullet ml-10"> | ||
| <!-- loop through components --> | ||
|
|
||
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a separate storybook page for when the prefix is on.