Skip to content
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

Revamp the "Market" page #41

Merged
merged 90 commits into from
Jul 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
90 commits
Select commit Hold shift + click to select a range
582ac6d
Modify the `EntitySubscription` to accept `stateAccessor` parameter.
Artem-Semenov-dev Jun 23, 2023
5bff148
Center the title of the `Dialog` component.
Artem-Semenov-dev Jun 23, 2023
9172856
Configure the `headlineSmall` parameter of the `MaterialTheme.typogra…
Artem-Semenov-dev Jun 23, 2023
0b4b660
Add a leading icon to the input field component.
Artem-Semenov-dev Jun 23, 2023
af02be1
Add subscription to the previous state of the `AvailableSharesMarket`…
Artem-Semenov-dev Jun 23, 2023
c7d10c6
Modify the `NumericInput` component to use the custom `Input` component.
Artem-Semenov-dev Jun 23, 2023
8975fca
Modify `MainItemContent` to show the price difference between shares.
Artem-Semenov-dev Jun 23, 2023
0d7409f
Implement `SearchField` component.
Artem-Semenov-dev Jun 23, 2023
200cb12
Rewrite the `Image` component to draw the image synchronously.
Artem-Semenov-dev Jun 23, 2023
7cf32c8
Extract the `ShareItem` component.
Artem-Semenov-dev Jun 23, 2023
9bee684
Modify the layout of the `ButtonSection` component on the `MarketPage`.
Artem-Semenov-dev Jun 23, 2023
912ba76
Modify the layout of the `PurchaseDialog` component.
Artem-Semenov-dev Jun 23, 2023
5fb683e
Implement the `ShareProfile` component.
Artem-Semenov-dev Jun 23, 2023
dd43aa7
Extract the `SharesList` component.
Artem-Semenov-dev Jun 23, 2023
a5d10c4
Modify the layout of the `MarketPage` component.
Artem-Semenov-dev Jun 23, 2023
bb6370d
Add green color to the `MaterialTheme.colorScheme`
Artem-Semenov-dev Jun 23, 2023
cc5a8d1
Extract the `Input` component to a separate file.
Artem-Semenov-dev Jun 23, 2023
dd48b53
Add parameters documentation for components in the `MarketPage`.
Artem-Semenov-dev Jun 23, 2023
d6297c4
Implement the empty state of the shares list on the `MarketPage`.
Artem-Semenov-dev Jun 23, 2023
ef48f0c
Fix EOF in the `Input`.
Artem-Semenov-dev Jun 23, 2023
22cfeb4
Add documentation for the new API of the `MarketPageModel`.
Artem-Semenov-dev Jun 23, 2023
3a34825
Implement the `PurchaseResultMessage` component.
Artem-Semenov-dev Jun 23, 2023
69550aa
Change the arrangement of components in the `MarketPage`.
Artem-Semenov-dev Jun 23, 2023
765b2c4
Remove an empty line from the `MarketPage`.
Artem-Semenov-dev Jun 23, 2023
05fee62
Change filtering by index with filtering by id in the `ShareList` com…
Artem-Semenov-dev Jun 26, 2023
b0dc961
Rename the `stateAccessor` callback in `EntitySubscription` to `befor…
Artem-Semenov-dev Jun 26, 2023
ad2f175
Add `contentPadding` parameter to the `Input` component.
Artem-Semenov-dev Jun 26, 2023
a15193d
Rename the `MainItemContent` component to `ShareItemContent`.
Artem-Semenov-dev Jun 26, 2023
a8d6aeb
Change RGB notation of green color to HEX in the `Theme`.
Artem-Semenov-dev Jun 26, 2023
5e34972
Extract the `ShareProfileTab` component from the `MarketPage` component.
Artem-Semenov-dev Jun 26, 2023
8c6c4ff
Rename the `beforeUpdate` callback to `previousStateAccessor` in the …
Artem-Semenov-dev Jun 26, 2023
c4dfaf4
Rewrite `PriceDifferenceCard` component.
Artem-Semenov-dev Jun 27, 2023
d8377bd
Divide the `Input` component onto smaller ones.
Artem-Semenov-dev Jun 27, 2023
30fdf85
Extract all extensions to a separate file.
Artem-Semenov-dev Jun 27, 2023
88a7432
Extract the `Popup` component to a separate file.
Artem-Semenov-dev Jun 27, 2023
ca3c059
Move `NumericInput` component to the `Input` file.
Artem-Semenov-dev Jun 27, 2023
2f88938
Extract common components to a separate file.
Artem-Semenov-dev Jun 27, 2023
ac1bad3
Implement `ModifierExtensions` object.
Artem-Semenov-dev Jun 27, 2023
2d44c6f
Configure the `Jacoco` lib version.
Artem-Semenov-dev Jun 28, 2023
5efbcd5
Extract the `Java` version to a `BuildSettings` file.
Artem-Semenov-dev Jun 28, 2023
38c5ec7
Add dependency on the gradle plugin for `Kotlin` in the `buildSrc` mo…
Artem-Semenov-dev Jun 28, 2023
97f6ac2
Implement custom 'kotlin-common' plugin.
Artem-Semenov-dev Jun 28, 2023
7d3e433
Use defined constant for `kotlin-gradle-plugin` version.
Artem-Semenov-dev Jun 28, 2023
ab2e0ed
Bump `Jacoco` version -> `0.8.10`
Artem-Semenov-dev Jun 28, 2023
ed98a84
Rename the `kotlin-common` plugin to `kotlin-settings`.
Artem-Semenov-dev Jun 28, 2023
b698c3c
Extract the `MarketPageModel` from the `MarketPage` file.
Artem-Semenov-dev Jun 29, 2023
a3182fa
Extract the `SharesListTab` component from the `MarketPage` to a sepa…
Artem-Semenov-dev Jun 29, 2023
5343bb4
Extract the `SharesListTab` component from the `MarketPage` to a sepa…
Artem-Semenov-dev Jun 29, 2023
1cfbbc3
Move `NumericField` component to a `PageComponents` file.
Artem-Semenov-dev Jun 29, 2023
9020546
Divide the `PageComponents` file into separate files.
Artem-Semenov-dev Jun 29, 2023
0b3ca2b
Update documentation for the `EmptyShareProfileTab` component.
Artem-Semenov-dev Jun 29, 2023
577c08c
Add gradle plugin for `Detekt` dependency to project.
Artem-Semenov-dev Jun 29, 2023
fe90cff
Divide extensions into a separate files.
Artem-Semenov-dev Jun 29, 2023
947dfe0
Extract `NumericInput` to a separate file.
Artem-Semenov-dev Jun 29, 2023
9f3562b
Extract `SearchField` to a separate file.
Artem-Semenov-dev Jun 29, 2023
f1ef868
Extract `PurchaseOperationModel` from the `MarketPageModel` class.
Artem-Semenov-dev Jun 29, 2023
fd1f70a
Adjust imports in the `SharesListTab`.
Artem-Semenov-dev Jun 29, 2023
5586081
Move the `PrimaryButton` component to the `component` package.
Artem-Semenov-dev Jun 29, 2023
fbd4cab
Add explicitly declaration of the Kotlin version.
Artem-Semenov-dev Jun 29, 2023
e87daf0
Configure the `Detekt` library.
Artem-Semenov-dev Jun 29, 2023
90ca44d
Merge branch 'market-page-ui' into kotlin-configuration
Artem-Semenov-dev Jun 29, 2023
5b61ccd
Remove the `extension` package.
Artem-Semenov-dev Jun 30, 2023
3de630e
Rename the custom `Scaffold` component to `ContainerWithPopup`.
Artem-Semenov-dev Jul 3, 2023
7ec500a
Create the specific package for the Share-related components.
Artem-Semenov-dev Jul 3, 2023
94d3d49
Configure the `Detekt` lib for the `client` module.
Artem-Semenov-dev Jul 3, 2023
6ecb1c5
Move `asUsd` and `validateMoney` extensions to the `MoneyExts` file.
Artem-Semenov-dev Jul 3, 2023
2fa44ea
Merge branch 'market-page-ui' into kotlin-configuration
Artem-Semenov-dev Jul 3, 2023
5d0e3ec
Replace wildcard imports with imports using fully qualified class names.
Artem-Semenov-dev Jul 4, 2023
ed8b532
Format lines that contain more than 100 symbols.
Artem-Semenov-dev Jul 4, 2023
fe8f1f0
Remove object destruction in the `Popup` component.
Artem-Semenov-dev Jul 4, 2023
35b0bce
Rename the `currentPage` variable to `current` in the `CurrentPage` o…
Artem-Semenov-dev Jul 4, 2023
cc0cc3b
Add parameter to define color for the `Modifier.bottomBorder` extension.
Artem-Semenov-dev Jul 4, 2023
904b1b5
Suppress the `EmptyFunctionBlock` `Detekt` rule for the pages that ar…
Artem-Semenov-dev Jul 4, 2023
7639c08
Make the `Main` class an object.
Artem-Semenov-dev Jul 4, 2023
3ff6f73
Format the line that contains more than 100 symbols in the `PurchaseD…
Artem-Semenov-dev Jul 4, 2023
c739f69
Remove all redundant private APIs from the `DesktopClient` class.
Artem-Semenov-dev Jul 4, 2023
67f2704
Extract the `PurchaseResultMessageModel` from the `PurchaseOperationM…
Artem-Semenov-dev Jul 4, 2023
6bcf2b6
Rename the `Menu` component to `Navigation`.
Artem-Semenov-dev Jul 4, 2023
f77dca6
Suppress the "MemberNameEqualsClassName" `Detekt` rule for the `main`…
Artem-Semenov-dev Jul 4, 2023
ce993ad
Divide the `WalletPageModel` on parts.
Artem-Semenov-dev Jul 4, 2023
9a7d0a1
Adjust the `Kotlin` version in the `buildSrc` module.
Artem-Semenov-dev Jul 4, 2023
a380c6e
Get rid of the hardcoded "$" symbol for `asReadableString` `Money` ex…
Artem-Semenov-dev Jul 5, 2023
d247eee
Revert "Get rid of the hardcoded "$" symbol for `asReadableString` `M…
Artem-Semenov-dev Jul 5, 2023
75309be
Get rid of the hardcoded "$" symbol for `asReadableString` `Money` ex…
Artem-Semenov-dev Jul 5, 2023
67237d5
Merge branch 'market-page-ui' into kotlin-configuration
Artem-Semenov-dev Jul 5, 2023
f09e5d4
Merge `detekt-config.yml` and `detekt-config-compose.yml` to one file.
Artem-Semenov-dev Jul 5, 2023
b94bcbe
Remove redundant check for 'currency' option existence in the `Curren…
Artem-Semenov-dev Jul 5, 2023
a860adc
Remove sequence call in `Currency.symbol` extension.
Artem-Semenov-dev Jul 5, 2023
0cb94de
Change the signature of the `CurrencyDescriptor.findValueOf` method t…
Artem-Semenov-dev Jul 5, 2023
8447757
Merge pull request #42 from spine-examples/kotlin-configuration
Artem-Semenov-dev Jul 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump Jacoco version -> 0.8.10
  • Loading branch information
Artem-Semenov-dev committed Jun 28, 2023
commit ab2e0ed119626ccd530c7629491a53a117a48a37
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ package io.spine.examples.shareaware.dependency

// https://github.com/jacoco/jacoco
public object Jacoco {
public const val version = "0.8.8"
public const val version = "0.8.10"
}