-
Notifications
You must be signed in to change notification settings - Fork 58
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
feat(card_image): Improve card_image()
API and usage
#1076
Merged
Merged
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8678c94
feat(card_image): Improve API
gadenbuie e32a918
tests(card_image): Add snapshot tests
gadenbuie 3656364
feat(card_image): Add `alt` parameter
gadenbuie 55cea50
Resave data (GitHub Action)
gadenbuie ce0432f
docs(card_image): src
gadenbuie 5fd4221
chore(card_image): Move `alt` behind `...`
gadenbuie 6348307
feat: Add additional error validation to `card_image()`
gadenbuie 92a932e
Merge 'origin/main' into branch fix/card-image
gadenbuie 475ce03
Resave data (GitHub Action)
gadenbuie ebdbcb2
docs: Add NEWS item
gadenbuie 9cbc3aa
tests: update snaps
gadenbuie 607b934
docs: tweak news wording
gadenbuie 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
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# card_image() | ||
|
||
Code | ||
show_raw_html(card(card_image("https://example.com/image.jpg"), card_body( | ||
"image cap on top of card"))) | ||
Output | ||
<div class="card bslib-card bslib-mb-spacing html-fill-item html-fill-container" data-bslib-card-init data-require-bs-caller="card()" data-require-bs-version="5"> | ||
<img alt="" class="img-fluid card-img-top" src="https://example.com/image.jpg"/> | ||
<div class="card-body bslib-gap-spacing html-fill-item html-fill-container" style="margin-top:auto;margin-bottom:auto;flex:1 1 auto;">image cap on top of card</div> | ||
<script data-bslib-card-init>bslib.Card.initializeAllCards();</script> | ||
</div> | ||
|
||
--- | ||
|
||
Code | ||
show_raw_html(card(card_body("image cap on bottom of card"), card_image( | ||
"https://example.com/image.jpg"))) | ||
Output | ||
<div class="card bslib-card bslib-mb-spacing html-fill-item html-fill-container" data-bslib-card-init data-require-bs-caller="card()" data-require-bs-version="5"> | ||
<div class="card-body bslib-gap-spacing html-fill-item html-fill-container" style="margin-top:auto;margin-bottom:auto;flex:1 1 auto;">image cap on bottom of card</div> | ||
<img alt="" class="img-fluid card-img-bottom" src="https://example.com/image.jpg"/> | ||
<script data-bslib-card-init>bslib.Card.initializeAllCards();</script> | ||
</div> | ||
|
||
--- | ||
|
||
Code | ||
show_raw_html(card(card_header("header"), card_image( | ||
"https://example.com/image.jpg"), card_body("image not a cap"))) | ||
Output | ||
<div class="card bslib-card bslib-mb-spacing html-fill-item html-fill-container" data-bslib-card-init data-require-bs-caller="card()" data-require-bs-version="5"> | ||
<div class="card-header">header</div> | ||
<img src="https://example.com/image.jpg" alt="" class="img-fluid"/> | ||
<div class="card-body bslib-gap-spacing html-fill-item html-fill-container" style="margin-top:auto;margin-bottom:auto;flex:1 1 auto;">image not a cap</div> | ||
<script data-bslib-card-init>bslib.Card.initializeAllCards();</script> | ||
</div> | ||
|
||
--- | ||
|
||
Code | ||
show_raw_html(card(card_image("https://example.com/image.jpg", alt = "card-img"))) | ||
Output | ||
<div class="card bslib-card bslib-mb-spacing html-fill-item html-fill-container" data-bslib-card-init data-require-bs-caller="card()" data-require-bs-version="5"> | ||
<img alt="card-img" class="img-fluid card-img" src="https://example.com/image.jpg"/> | ||
<script data-bslib-card-init>bslib.Card.initializeAllCards();</script> | ||
</div> | ||
|
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,41 @@ | ||
test_that("card_image()", { | ||
show_raw_html <- function(x) { | ||
cat(format(x)) | ||
} | ||
|
||
expect_snapshot( | ||
show_raw_html( | ||
card( | ||
card_image("https://example.com/image.jpg"), | ||
card_body("image cap on top of card") | ||
) | ||
) | ||
) | ||
|
||
expect_snapshot( | ||
show_raw_html( | ||
card( | ||
card_body("image cap on bottom of card"), | ||
card_image("https://example.com/image.jpg") | ||
) | ||
) | ||
) | ||
|
||
expect_snapshot( | ||
show_raw_html( | ||
card( | ||
card_header("header"), | ||
card_image("https://example.com/image.jpg"), | ||
card_body("image not a cap") | ||
) | ||
) | ||
) | ||
|
||
expect_snapshot( | ||
show_raw_html( | ||
card( | ||
card_image("https://example.com/image.jpg", alt = "card-img") | ||
) | ||
) | ||
) | ||
}) |
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.
Let's investigate what this would mean for
navset_card_*()
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.
Turns out this works perfectly with
navset_card_*()
.Kapture.2024-07-15.at.10.30.52.mp4