-
Notifications
You must be signed in to change notification settings - Fork 13.4k
feat(divider): add new ion-divider component #30270
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
Merged
Merged
Changes from 8 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
42c8465
feat(divider): add new ion-divider component
OS-martacarlos 1d94c41
test(divider): adds new tests for new divider
OS-martacarlos 53a9e78
chore(divider): update screenshots
OS-martacarlos c1ec78b
Apply suggestions from code review
OS-martacarlos 0eed01b
chore(divider): update tests and snapshots
OS-martacarlos 6708bb1
chore(divider): split styles according to themes
OS-martacarlos f2a9b59
chore: update snapshots
OS-martacarlos 9d2675e
Merge branch 'next' into ROU-11632
OS-martacarlos 3002234
Apply suggestions from code review
OS-martacarlos b7bd3e3
chore: delete rlt screenshots
OS-martacarlos f79db00
chore: run lint
OS-martacarlos 129a392
Update core/src/components/divider/divider.common.scss
gnbm 21354fe
Update core/src/components/divider/divider.ionic.scss
gnbm 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 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
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,41 @@ | ||
| @import "../../themes/native/native.globals"; | ||
|
|
||
| :host { | ||
| /** | ||
| * @prop --margin-top: Top margin of the divider | ||
| * @prop --margin-bottom: Bottom margin of the divider | ||
| * @prop --padding-end: Right padding if direction is left-to-right, and left padding if direction is right-to-left of the divider | ||
| * @prop --padding-start: Left padding if direction is left-to-right, and right padding if direction is right-to-left of the divider | ||
| */ | ||
| --margin-top: 0px; | ||
| --margin-bottom: 0px; | ||
| --padding-start: 0px; | ||
| --padding-end: 0px; | ||
|
|
||
| display: block; | ||
|
|
||
| width: 100%; | ||
|
|
||
| /* stylelint-disable */ | ||
| @include ltr() { | ||
| padding-right: var(--padding-end); | ||
OS-martacarlos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| padding-left: calc(var(--padding-start) + var(--ion-safe-area-left, 0px)); | ||
| } | ||
|
|
||
| @include rtl() { | ||
| padding-right: calc(var(--padding-start) + var(--ion-safe-area-right, 0px)); | ||
| padding-left: var(--padding-end); | ||
OS-martacarlos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| /* stylelint-enable */ | ||
| } | ||
|
|
||
| :host hr { | ||
| display: block; | ||
|
|
||
| width: 100%; | ||
|
|
||
| margin-top: var(--margin-top); | ||
| margin-bottom: var(--margin-bottom); | ||
|
|
||
| border: none; | ||
| } | ||
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,47 @@ | ||
| @use "../../themes/ionic/ionic.globals.scss" as globals; | ||
| @import "./divider.common.scss"; | ||
gnbm marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| :host hr { | ||
| border-top: globals.$ion-border-size-025 globals.$ion-border-style-solid globals.$ion-border-default; | ||
| } | ||
|
|
||
| // Divider Inset | ||
| // -------------------------------------------------- | ||
|
|
||
| :host(.divider-inset) { | ||
| --padding-start: #{globals.$ion-space-400}; | ||
| --padding-end: #{globals.$ion-space-400}; | ||
| } | ||
|
|
||
| // Divider Spacing | ||
| // -------------------------------------------------- | ||
|
|
||
| :host(.divider-spacing-xsmall) { | ||
| --margin-top: #{globals.$ion-space-200}; | ||
| --margin-bottom: #{globals.$ion-space-200}; | ||
| } | ||
|
|
||
| :host(.divider-spacing-small) { | ||
| --margin-top: #{globals.$ion-space-300}; | ||
| --margin-bottom: #{globals.$ion-space-300}; | ||
| } | ||
|
|
||
| :host(.divider-spacing-medium) { | ||
| --margin-top: #{globals.$ion-space-400}; | ||
| --margin-bottom: #{globals.$ion-space-400}; | ||
| } | ||
|
|
||
| :host(.divider-spacing-large) { | ||
| --margin-top: #{globals.$ion-space-600}; | ||
| --margin-bottom: #{globals.$ion-space-600}; | ||
| } | ||
|
|
||
| :host(.divider-spacing-xlarge) { | ||
| --margin-top: #{globals.$ion-space-800}; | ||
| --margin-bottom: #{globals.$ion-space-800}; | ||
| } | ||
|
|
||
| :host(.divider-spacing-xxlarge) { | ||
| --margin-top: #{globals.$ion-space-1000}; | ||
| --margin-bottom: #{globals.$ion-space-1000}; | ||
| } | ||
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,4 @@ | ||
| @import "./divider.native.scss"; | ||
|
|
||
| // iOS Divider | ||
| // -------------------------------------------------- |
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,4 @@ | ||
| @import "./divider.native.scss"; | ||
|
|
||
| // Material Design Divider | ||
| // -------------------------------------------------- |
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,46 @@ | ||
| @import "./divider.common.scss"; | ||
|
|
||
| :host hr { | ||
| border-top: 1px solid #e0e0e0; | ||
| } | ||
|
|
||
| // Divider Inset | ||
| // -------------------------------------------------- | ||
|
|
||
| :host(.divider-inset) { | ||
| --padding-start: 16px; | ||
| --padding-end: 16px; | ||
| } | ||
|
|
||
| // Divider Spacing | ||
| // -------------------------------------------------- | ||
|
|
||
| :host(.divider-spacing-xsmall) { | ||
| --margin-top: 8px; | ||
| --margin-bottom: 8px; | ||
| } | ||
|
|
||
| :host(.divider-spacing-small) { | ||
| --margin-top: 12px; | ||
| --margin-bottom: 12px; | ||
| } | ||
|
|
||
| :host(.divider-spacing-medium) { | ||
| --margin-top: 16px; | ||
| --margin-bottom: 16px; | ||
| } | ||
|
|
||
| :host(.divider-spacing-large) { | ||
| --margin-top: 24px; | ||
| --margin-bottom: 24px; | ||
| } | ||
|
|
||
| :host(.divider-spacing-xlarge) { | ||
| --margin-top: 32px; | ||
| --margin-bottom: 32px; | ||
| } | ||
|
|
||
| :host(.divider-spacing-xxlarge) { | ||
| --margin-top: 40px; | ||
| --margin-bottom: 40px; | ||
| } |
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,50 @@ | ||
| import { getIonTheme } from '@global/ionic-global'; | ||
| import type { ComponentInterface } from '@stencil/core'; | ||
| import { Component, Prop, Host, h } from '@stencil/core'; | ||
|
|
||
| @Component({ | ||
| tag: 'ion-divider', | ||
| styleUrls: { | ||
| ios: 'divider.ios.scss', | ||
| md: 'divider.md.scss', | ||
| ionic: 'divider.ionic.scss', | ||
| }, | ||
| shadow: true, | ||
| }) | ||
| export class Divider implements ComponentInterface { | ||
| /** | ||
| * Set to `"xxsmall"` for the smallest spacing. | ||
| * Set to "xsmall" for very small spacing. | ||
| * Set to `"small"` for small spacing. | ||
| * Set to "medium" for medium spacing. | ||
| * Set to "large" for large spacing. | ||
| * Set to `"xlarge"` for the largest spacing. | ||
| * | ||
| * Defaults to `"xxsmall"`. | ||
| */ | ||
| @Prop({ reflect: true }) spacing?: 'xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' = | ||
| 'xxsmall'; | ||
|
|
||
| /** | ||
| * If `true`, the divider will have horizontal margins | ||
| * By default, it's `false` | ||
| */ | ||
| @Prop() inset: boolean = false; | ||
|
|
||
| render() { | ||
| const { inset, spacing } = this; | ||
| const theme = getIonTheme(this); | ||
|
|
||
| return ( | ||
| <Host | ||
| class={{ | ||
| [theme]: true, | ||
| [`divider-spacing-${spacing}`]: spacing !== undefined, | ||
| [`divider-inset`]: inset, | ||
| }} | ||
| > | ||
| <hr /> | ||
| </Host> | ||
| ); | ||
| } | ||
| } |
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,40 @@ | ||
| import { expect } from '@playwright/test'; | ||
| import { configs, test } from '@utils/test/playwright'; | ||
|
|
||
| configs({ directions: ['ltr', 'rtl'], modes: ['ios', 'md', 'ionic-md'] }).forEach(({ config, screenshot, title }) => { | ||
brandyscarney marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
OS-martacarlos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| test.describe(title('divider: rendering'), () => { | ||
| test('should not have visual regressions', async ({ page }) => { | ||
| await page.setContent( | ||
| ` | ||
| <div id="container"> | ||
| top | ||
| <ion-divider></ion-divider> | ||
| bottom | ||
| </div> | ||
| `, | ||
| config | ||
| ); | ||
|
|
||
| const container = page.locator('#container'); | ||
|
|
||
| await expect(container).toHaveScreenshot(screenshot(`divider-basic-default`)); | ||
| }); | ||
|
|
||
| test('should not have visual regressions when inset is enabled', async ({ page }) => { | ||
brandyscarney marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| await page.setContent( | ||
| ` | ||
| <div id="container"> | ||
| top | ||
| <ion-divider inset="true"></ion-divider> | ||
| bottom | ||
| </div> | ||
| `, | ||
| config | ||
| ); | ||
|
|
||
| const container = page.locator('#container'); | ||
|
|
||
| await expect(container).toHaveScreenshot(screenshot(`divider-basic-inset`)); | ||
| }); | ||
| }); | ||
| }); | ||
Binary file added
BIN
+1.35 KB
...e.ts-snapshots/divider-basic-default-ionic-md-ltr-light-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.79 KB
....ts-snapshots/divider-basic-default-ionic-md-ltr-light-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.67 KB
...e.ts-snapshots/divider-basic-default-ionic-md-ltr-light-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.33 KB
...e.ts-snapshots/divider-basic-default-ionic-md-rtl-light-Mobile-Chrome-linux.png
brandyscarney marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.8 KB
....ts-snapshots/divider-basic-default-ionic-md-rtl-light-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.64 KB
...e.ts-snapshots/divider-basic-default-ionic-md-rtl-light-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.62 KB
.../divider.e2e.ts-snapshots/divider-basic-default-ios-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.12 KB
...divider.e2e.ts-snapshots/divider-basic-default-ios-ltr-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.85 KB
.../divider.e2e.ts-snapshots/divider-basic-default-ios-ltr-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.6 KB
.../divider.e2e.ts-snapshots/divider-basic-default-ios-rtl-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.07 KB
...divider.e2e.ts-snapshots/divider-basic-default-ios-rtl-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.79 KB
.../divider.e2e.ts-snapshots/divider-basic-default-ios-rtl-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.51 KB
...c/divider.e2e.ts-snapshots/divider-basic-default-md-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.85 KB
.../divider.e2e.ts-snapshots/divider-basic-default-md-ltr-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.78 KB
...c/divider.e2e.ts-snapshots/divider-basic-default-md-ltr-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.61 KB
...c/divider.e2e.ts-snapshots/divider-basic-default-md-rtl-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.97 KB
.../divider.e2e.ts-snapshots/divider-basic-default-md-rtl-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.9 KB
...c/divider.e2e.ts-snapshots/divider-basic-default-md-rtl-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.36 KB
...e2e.ts-snapshots/divider-basic-inset-ionic-md-ltr-light-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.8 KB
...2e.ts-snapshots/divider-basic-inset-ionic-md-ltr-light-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.68 KB
...e2e.ts-snapshots/divider-basic-inset-ionic-md-ltr-light-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.34 KB
...e2e.ts-snapshots/divider-basic-inset-ionic-md-rtl-light-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.8 KB
...2e.ts-snapshots/divider-basic-inset-ionic-md-rtl-light-Mobile-Firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.65 KB
...e2e.ts-snapshots/divider-basic-inset-ionic-md-rtl-light-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.63 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-ios-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.12 KB
...c/divider.e2e.ts-snapshots/divider-basic-inset-ios-ltr-Mobile-Firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.86 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.61 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.07 KB
...c/divider.e2e.ts-snapshots/divider-basic-inset-ios-rtl-Mobile-Firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.8 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.52 KB
...sic/divider.e2e.ts-snapshots/divider-basic-inset-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.86 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-md-ltr-Mobile-Firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.79 KB
...sic/divider.e2e.ts-snapshots/divider-basic-inset-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
...sic/divider.e2e.ts-snapshots/divider-basic-inset-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.97 KB
...ic/divider.e2e.ts-snapshots/divider-basic-inset-md-rtl-Mobile-Firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.91 KB
...sic/divider.e2e.ts-snapshots/divider-basic-inset-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
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,41 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en" dir="ltr"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <title>Divider - Basic</title> | ||
| <meta | ||
| name="viewport" | ||
| content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" | ||
| /> | ||
| <link href="../../../../../css/ionic.bundle.css" rel="stylesheet" /> | ||
| <link href="../../../../../scripts/testing/styles.css" rel="stylesheet" /> | ||
| <script src="../../../../../scripts/testing/scripts.js"></script> | ||
| <script nomodule src="../../../../../dist/ionic/ionic.js"></script> | ||
| <script type="module" src="../../../../../dist/ionic/ionic.esm.js"></script> | ||
| </head> | ||
|
|
||
| <body> | ||
| <ion-app> | ||
| <ion-header> | ||
| <ion-toolbar> | ||
| <ion-title>Divider - Basic</ion-title> | ||
| </ion-toolbar> | ||
| </ion-header> | ||
|
|
||
| <ion-content> | ||
| <div> | ||
| <h3>Default</h3> | ||
| Top | ||
| <ion-divider></ion-divider> | ||
| Bottom | ||
| </div> | ||
| <div> | ||
| <h3>Inset</h3> | ||
| Top | ||
| <ion-divider inset="true"></ion-divider> | ||
| Bottom | ||
| </div> | ||
| </ion-content> | ||
| </ion-app> | ||
| </body> | ||
| </html> |
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.
Uh oh!
There was an error while loading. Please reload this page.