Skip to content

Commit

Permalink
Merge pull request #38 from ezewer/master
Browse files Browse the repository at this point in the history
Update sub modules
  • Loading branch information
ezewer authored Apr 23, 2020
2 parents 3c13407 + 3a276d5 commit fd6fb22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 57 files
+3 −3 package-lock.json
+2 −0 public/locales/en-US/translations.json
+20 −4 public/locales/ru/translations.json
+18 −2 public/locales/zh-CN/translations.json
+18 −2 public/locales/zh-TW/translations.json
+3 −0 src/components/Candles/Candles.js
+8 −7 src/components/Logins/Logins.columns.js
+9 −7 src/components/Orders/Orders.columns.js
+8 −6 src/components/Positions/Positions.columns.js
+0 −2 src/components/PublicFunding/PublicFunding.container.js
+1 −10 src/components/PublicFunding/PublicFunding.js
+0 −1 src/components/PublicFunding/PublicFunding.props.js
+0 −2 src/components/PublicTrades/PublicTrades.container.js
+2 −10 src/components/PublicTrades/PublicTrades.js
+0 −1 src/components/PublicTrades/PublicTrades.props.js
+0 −2 src/components/Tickers/Tickers.container.js
+0 −8 src/components/Tickers/Tickers.js
+0 −1 src/components/Tickers/Tickers.props.js
+1 −1 src/state/accountSummary/reducer.js
+1 −1 src/state/accountSummary/selectors.js
+1 −1 src/state/fundingCreditHistory/reducer.js
+1 −1 src/state/fundingLoanHistory/reducer.js
+1 −1 src/state/publicFunding/reducer.js
+5 −5 src/state/symbols/__tests__/utils.mapping.test.js
+1 −4 src/state/symbols/reducer.js
+0 −16 src/state/symbols/utils/mapping.js
+24 −0 src/state/sync/actions.js
+6 −7 src/state/sync/constants.js
+49 −20 src/state/sync/reducer.js
+190 −0 src/state/sync/saga.config.js
+4 −139 src/state/sync/saga.js
+12 −5 src/state/sync/selectors.js
+2 −0 src/styles/index.scss
+21 −0 src/ui/CandlesSyncPref/CandlesSyncPref.container.js
+275 −0 src/ui/CandlesSyncPref/CandlesSyncPref.js
+22 −0 src/ui/CandlesSyncPref/CandlesSyncPref.props.js
+83 −0 src/ui/CandlesSyncPref/_CandlesSyncPref.scss
+3 −0 src/ui/CandlesSyncPref/index.js
+2 −1 src/ui/CandlesTimeframe/CandlesTimeframe.js
+4 −1 src/ui/CandlesTimeframe/CandlesTimeframe.props.js
+16 −7 src/ui/Charts/Candlestick/Candlestick.js
+1 −1 src/ui/Charts/Candlestick/_Candlestick.scss
+1 −1 src/ui/ColumnsFilter/ColumnsFilter.js
+2 −2 src/ui/DateInput/DateInput.js
+29 −0 src/ui/JSONFormat/JSONFormat.js
+11 −0 src/ui/JSONFormat/_JSONFormat.scss
+3 −0 src/ui/JSONFormat/index.js
+4 −1 src/ui/PairSelector/PairSelector.js
+2 −0 src/ui/PairSelector/PairSelector.props.js
+0 −36 src/ui/SyncNotSetYet.js
+6 −29 src/ui/SyncPrefButton/SyncPrefButton.container.js
+35 −0 src/ui/SyncPrefButton/SyncPrefButton.helpers.js
+42 −34 src/ui/SyncPrefButton/SyncPrefButton.js
+3 −11 src/ui/SyncSymbolPrefButton/SyncSymbolPrefButton.container.js
+39 −33 src/ui/SyncSymbolPrefButton/SyncSymbolPrefButton.js
+6 −5 src/utils/columns.js
+1 −1 src/var/config.js
2 changes: 1 addition & 1 deletion bfx-reports-framework
Submodule bfx-reports-framework updated 64 files
+1 −1 package.json
+19 −2,955 test/1-api-sync-mode-sqlite.spec.js
+18 −689 test/2-additional-api-sync-mode-sqlite.spec.js
+405 −0 test/4-sub-account.spec.js
+33 −1 test/helpers/helpers.core.js
+2 −2 test/helpers/helpers.mock-rest-v2.js
+746 −0 test/test-cases/additional-api-sync-mode-sqlite-test-cases.js
+3,184 −0 test/test-cases/api-sync-mode-sqlite-test-cases.js
+13 −0 test/test-cases/index.js
+29 −2 workers/loc.api/di/app.deps.js
+7 −1 workers/loc.api/di/types.js
+41 −5 workers/loc.api/errors/index.js
+11 −3 workers/loc.api/helpers/index.js
+105 −4 workers/loc.api/helpers/schema.js
+93 −0 workers/loc.api/helpers/sub-account-auth.js
+0 −5 workers/loc.api/helpers/utils.js
+282 −155 workers/loc.api/service.report.framework.js
+35 −4 workers/loc.api/sync/balance.history/index.js
+332 −27 workers/loc.api/sync/colls.accessors/public.colls.conf.accessors.js
+28 −5 workers/loc.api/sync/currency.converter/index.js
+31 −9 workers/loc.api/sync/dao/dao.js
+326 −115 workers/loc.api/sync/dao/dao.sqlite.js
+2 −0 workers/loc.api/sync/dao/db-migrations/db.migrator.js
+1 −5 workers/loc.api/sync/dao/db-migrations/helpers/get-fn-arr-to-remove-all-tables.js
+3 −1 workers/loc.api/sync/dao/db-migrations/helpers/index.js
+57 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/helpers/get-sql-arr-to-remove-columns.js
+9 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/helpers/index.js
+10 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v1.js
+398 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v3.js
+106 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v4.js
+10 −4 workers/loc.api/sync/dao/db-migrations/sqlite.db.migrator.js
+38 −0 workers/loc.api/sync/dao/helpers/get-index-query.js
+5 −0 workers/loc.api/sync/dao/helpers/get-insertable-array-objects-filter.js
+27 −5 workers/loc.api/sync/dao/helpers/get-table-creation-query.js
+34 −0 workers/loc.api/sync/dao/helpers/get-timeframe-filter.js
+0 −16 workers/loc.api/sync/dao/helpers/get-unique-index-query.js
+4 −1 workers/loc.api/sync/dao/helpers/get-where-query.js
+10 −4 workers/loc.api/sync/dao/helpers/index.js
+55 −5 workers/loc.api/sync/dao/helpers/utils.js
+2 −1 workers/loc.api/sync/dao/tables-names.js
+33 −21 workers/loc.api/sync/data.inserter/api.middleware.handler.after.js
+0 −89 workers/loc.api/sync/data.inserter/helpers/convert-currency.js
+3 −3 workers/loc.api/sync/data.inserter/helpers/index.js
+37 −14 workers/loc.api/sync/data.inserter/helpers/search-close-price-and-sum-amount.js
+36 −9 workers/loc.api/sync/data.inserter/helpers/utils.js
+136 −0 workers/loc.api/sync/data.inserter/hooks/convert.currency.hook.js
+49 −0 workers/loc.api/sync/data.inserter/hooks/data.inserter.hook.js
+346 −0 workers/loc.api/sync/data.inserter/hooks/recalc.sub.account.ledgers.balances.hook.js
+175 −79 workers/loc.api/sync/data.inserter/index.js
+11 −3 workers/loc.api/sync/helpers/get-mts-grouped-by-timeframe.js
+16 −3 workers/loc.api/sync/helpers/group-by-timeframe.js
+5 −1 workers/loc.api/sync/helpers/index.js
+56 −0 workers/loc.api/sync/helpers/set-mts-to-starting-and-ending-frames.js
+103 −0 workers/loc.api/sync/order.trades/index.js
+1 −1 workers/loc.api/sync/performing.loan/index.js
+72 −0 workers/loc.api/sync/positions.audit/index.js
+1 −1 workers/loc.api/sync/positions.snapshot/index.js
+179 −115 workers/loc.api/sync/schema.js
+339 −0 workers/loc.api/sync/sub.account.api.data/index.js
+119 −0 workers/loc.api/sync/sub.account/index.js
+122 −20 workers/loc.api/sync/sync.queue/index.js
+25 −12 workers/loc.api/sync/trades/index.js
+20 −1 workers/loc.api/sync/wallets/index.js
+17 −9 workers/loc.api/sync/win.loss/index.js

0 comments on commit fd6fb22

Please sign in to comment.