-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19331 & 19330 - Unlinked + Linked Short Name Mapping tables (#2700)
* Adding in some code that could be potentially shared * Add in new linting rule * Minor changes to add in title * PascalCase * use v-sanitize * Minor update to populate table and hide pagination option * Wire this up to pay-api * rename fields * Filters working roughly * Remove debounce for now, not working currently, small UX tweaks * Small CSS fixes for top of tabs * Move table title over a bit * Fix filters being stuck on * Add in branchName to auth-api to update pay-api * Revert "Add in branchName to auth-api to update pay-api" This reverts commit 1d35c4d. * Styling, counts * Move component name * one more spot * Add in actions, remove redundant SCSS reuse old debounce that works * Move short names under different route * add in staff prot for now * Refactor, wire up infinite scroll * up page limit * Remove overrides, move some code * Remove comments * Rename, refactor into model * Minor change * Fix linting errors * minor changes * cleanup * cleanup * SCSS cleanup for view buttons * Test fixes * tidy up infinite scroll * Add in comments * Fix code smell * More typing fixes * Get rid of code duplication * Lint fixes * Add more return hints * Code complexity issue * Spacing issue * Unlinked shortname tab * Missing titles from refactor * Fix import linking * refactor SCSS * Spacing * refactor into scss * Typo * Use enum * More cleanup * Wire up counts * Use composable so we can share across the two components. * ShortNameLookup component * add in reachedEnd = false when setFiltering * remove debugger * refactor infinite scroll callback * refactor to reactive * Fix default value * Addin more typing * rename ShortName -> Shortname * use ShortName not Shortname * ShortNameLookup * Fix any * fix model reference * Short-name fix * Add comments * fix comment * Adding UnlinkedShortNameResults and State * Remove starting data * Add in unit test * Finish off unit test * Cleanup * Add in sandbox.restore(), restore formatAmount back to what it was, unit tests should pass for now * Remove duplicate code * Comment out ShortNameLookup * Code cleanup * Add in defineComponent so build doesn't fail * Cleanup * Testing * Remove onclick for now * refactor * Put back new Promise * Fix lint issue * Deposit date range support * Interface updates * Fix unit test * Display date range dates --------- Co-authored-by: Rodrigo Barraza <rodrigo.barraza@gov.bc.ca>
- Loading branch information
1 parent
4424eaf
commit b76de3b
Showing
27 changed files
with
1,505 additions
and
61 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
::v-deep { | ||
|
||
.base-table__header > tr:first-child > th { | ||
padding: 0 0 0 0 !important; | ||
} | ||
.base-table__header__filter { | ||
padding-left: 16px; | ||
padding-right: 4px; | ||
} | ||
.base-table__item-row { | ||
color: #495057; | ||
font-weight: bold; | ||
} | ||
.base-table__item-cell { | ||
padding: 16px 0 16px 16px; | ||
vertical-align: middle; | ||
} | ||
} |
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,25 @@ | ||
// For the dropdown text color. | ||
::v-deep .theme--light.v-list-item .v-list-item__action-text, .theme--light.v-list-item .v-list-item__subtitle { | ||
color: $app-blue; | ||
font-weight: normal; | ||
.v-icon.v-icon { | ||
color: $app-blue; | ||
} | ||
} | ||
|
||
.new-actions { | ||
height:30px; | ||
.open-action-btn { | ||
font-size: .875rem; | ||
box-shadow: none; | ||
border-top-right-radius: 0; | ||
border-bottom-right-radius: 0; | ||
margin-right: 1px; | ||
} | ||
|
||
.more-actions-btn { | ||
box-shadow: none; | ||
border-top-left-radius: 0; | ||
border-bottom-left-radius: 0; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -84,3 +84,7 @@ | |
font-size: 16px; | ||
color: #495057 | ||
} | ||
|
||
.soft-corners-top { | ||
border-radius: 5px 5px 0 0; | ||
} |
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
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
Oops, something went wrong.