-
Notifications
You must be signed in to change notification settings - Fork 6
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
Ios 9356 rename crouton to snackbar #427
Ios 9356 rename crouton to snackbar #427
Conversation
import UIKit | ||
|
||
// Protocol implemented by view controllers that want to Snackbar in a very specific view | ||
@objc public protocol CustomSnackbarContainer { |
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.
new??? in that case, remove @objc
pls
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.
Just moved and renamed the file, no logic changes in this PR.
File in main:
`
import UIKit
// Protocol implemented by view controllers that want to show croutons in a very specific view
@objc public protocol CustomCroutonContainer {
var customCroutonContainerView: UIView { get }
}
`
|
||
| `Info` | `Critical` | | ||
|-----------------------------------------------|---------------------------------------------------| | ||
|  |  | |
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.
Info link looks broken
@@ -20,29 +20,29 @@ public class CroutonController: NSObject { | |||
public typealias DismissHandlerBlock = (SnackbarDismissReason) -> Void | |||
public typealias DidTapActionBlock = () -> Void | |||
|
|||
private var croutonViewList = [OngoingCrouton]() | |||
private var SnackbarViewList = [OngoingSnackbar]() |
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.
private var SnackbarViewList = [OngoingSnackbar]() | |
private var snackbarViewList = [OngoingSnackbar]() |
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.
BREAKING CHANGE: Renamed "Crouton" to "Snackbar". Updated UI for Snackbar component. * IOS-9356 Adjust crouton constraints above the tabbar or the safe area * IOS-9356 adjust crouton border radius and update close button size * Run swiftformat * ci(secrets): Update firebase secret (#420) * IOS-9356 update the close button of the crouton and optimize the view constraints logic * Run swiftformat * Record screenshots automatically launched from GH action * IOS-9356 Add tests for floating crouton behavior in UIScrollView and when a TabTar is present * Run swiftformat * IOS-9356 update crouton tests and undo changes in GitHub configuration file * IOS-9356 update crouton with tabbar test * Run swiftformat * IOS-9356 improved crouton tests * Run swiftformat * IOS-9356 ensure crouton only detects bottom tabbar and fix pr comments * Run swiftformat * IOS-9356 fix crouton animation * IOS-9356 fix crouton constraints to handle UIscrollview safe area * IOS-9356 fix snackbar constrains in uiscrollview case * IOS-9356 update snackbar animation * Run swiftformat * IOS-9356 fix snackbar animation * Run swiftformat * Ios 9356 rename crouton to snackbar (#427) * IOS-9356 rename crouton to snackbar and update README * IOS-9356 continue renaming crouton component to snackbar * IOS-9356 continue crouton renaming * IOS-9356 fix images name and some changes in the crouton renaming * IOS-9356 fix snackbar readme and icons name * IOS-9356 update readme images * IOS-9356 rename snackbar style config * Ios 9356 rename crouton tests (#429) * IOS-9356 rename crouton tests and update screenshots * IOS-9356 disable recording in snackbar tests * Run swiftformat --------- Co-authored-by: L-Trujillo26 <L-Trujillo26@users.noreply.github.com> --------- Co-authored-by: L-Trujillo26 <L-Trujillo26@users.noreply.github.com> * Ios 9356 update crouton buttons (#435) * IOS-9356 update crouton buttons * IOS-9356 fix merge issue and animation that was breaking tests * Run swiftformat * IOS-9356 changed text button color to the updated spec * IOS-9356 restore var * Run swiftformat * IOS-11139 updated snackbar readme * IOS-9356 Added the token again to ensure that the snackbar which is intended to be dismissed is the one presented currently. * Run swiftformat --------- Co-authored-by: L-Trujillo26 <L-Trujillo26@users.noreply.github.com> Co-authored-by: Pablo Bartolome <pablo.bartolomeherranz@telefonica.com> Co-authored-by: José Manuel Rodríguez Moreno <josemanuel.rodriguezmoreno@telefonica.com> Co-authored-by: idenjoe <idenjoe@users.noreply.github.com>
# [34.0.0](v33.8.0...v34.0.0) (2025-03-19) ### Bug Fixes * **semantic-release:** IOS-11147 Update node version as a dependency of the latest semantic-release version. ([#440](#440)) ([17e4001](17e4001)) * **semantic-release:** IOS-11147 Update semantic release to v24.2.3 ([#438](#438)) ([c632beb](c632beb)) * **updateVersionScript:** IOS-11147 Fix the update version script to be compatible with Ubuntu sed version (GNU sed) instead of macOS sed (BSD sed). ([#442](#442)) ([4609b69](4609b69)) * **updateVersionScript:** IOS-11147 Update releasrc and update_version script to be executed in… ([#441](#441)) ([414bc7e](414bc7e)) ### Features * **Crouton:** IOS-11139 Remove crouton queue to avoid enqueuing messages. From now … ([#437](#437)) ([827964b](827964b)) * **Snackbar:** Deprecate Crouton, introduce new Snackbar UI ([#422](#422)) ([da64cea](da64cea)), closes [#420](#420) [#427](#427) [#429](#429) ### BREAKING CHANGES * **Snackbar:** Renamed "Crouton" to "Snackbar". Updated UI for Snackbar component. * IOS-9356 Adjust crouton constraints above the tabbar or the safe area * IOS-9356 adjust crouton border radius and update close button size * Run swiftformat * **Crouton:** UIKit Crouton no longer allows message queuing. If a new crouton is presented, the previous one will be discarded. showCrouton and dismiss CroutonController methods have been modified to remove the token we used to dismiss a specific crouton. * IOS-11139 Remove crouton queue to avoid enqueuing messages. From now if a new crouton is launched, the previous one will be removed. * Run swiftformat
🎟️ Jira ticket
https://jira.tid.es/browse/IOS-9356
🥅 What's the goal?
Rename Crouton component to Snackbar
🚧 How do we do it?
Rename the component.
Update readme.
:
🧪 How can I verify this?
Catalog -> snackbar
snackbar.mov
🏑 AppCenter build