|
|
|
@@ -5,6 +5,10 @@ import {
|
|
|
|
|
RankItem, RecommendFuturesItem, TabMetric,
|
|
|
|
|
} from './MarketRankingModels';
|
|
|
|
|
import { MarketRankingDataFetcher } from './MarketRankingDataFetcher';
|
|
|
|
|
import {
|
|
|
|
|
cardDataToContracts,
|
|
|
|
|
contractsToPlaceholderCardData,
|
|
|
|
|
} from './MarketRankingDataMapper';
|
|
|
|
|
import { MarketRankingHqRequestClient } from './MarketRankingHqRequestClient';
|
|
|
|
|
import { formatGreatNumber, formatPercent, riseFallColor } from '../common/NumberFormat';
|
|
|
|
|
import { AllCardsCard } from '../common/AllCardsModels';
|
|
|
|
@@ -24,15 +28,21 @@ import {
|
|
|
|
|
|
|
|
|
|
const NORMAL_SIZE = 3;
|
|
|
|
|
const MAX_SIZE = 5;
|
|
|
|
|
const UNFOLDED_STORAGE_KEY = 'firstPageMarketRankingUnfolded';
|
|
|
|
|
|
|
|
|
|
PersistentStorage.persistProp<boolean>(UNFOLDED_STORAGE_KEY, false);
|
|
|
|
|
|
|
|
|
|
@Component
|
|
|
|
|
export struct MarketRankingNodeComponent {
|
|
|
|
|
@State cardConfig: AllCardsCard | undefined = undefined;
|
|
|
|
|
@State cardData: CardData = { tableList: [] };
|
|
|
|
|
private contracts: RecommendFuturesItem[] = [];
|
|
|
|
|
private tabDataCache: Map<string, CardData> = new Map<string, CardData>();
|
|
|
|
|
private dataRequestVersion: number = 0;
|
|
|
|
|
// Tab 选中/展开状态是纯 UI 交互状态,留在 View 里
|
|
|
|
|
@State primaryIdx: number = 0;
|
|
|
|
|
@State secondaryIdx: number = 0;
|
|
|
|
|
@State unfolded: boolean = false;
|
|
|
|
|
@StorageLink(UNFOLDED_STORAGE_KEY) unfolded: boolean = false;
|
|
|
|
|
@State tabViewportWidth: number = 0;
|
|
|
|
|
@State tabContentWidth: number = 0;
|
|
|
|
|
@State tabScrollOffset: number = 0;
|
|
|
|
@@ -58,6 +68,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
aboutToDisappear(): void {
|
|
|
|
|
this.dataRequestVersion += 1;
|
|
|
|
|
emitter.off(EVENT_TCP_RECONNECT, this.tcpReconnectListener);
|
|
|
|
|
this.stopSubscribeHq();
|
|
|
|
|
}
|
|
|
|
@@ -100,50 +111,61 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
|
|
|
|
|
@Builder
|
|
|
|
|
CardTitle() {
|
|
|
|
|
Row({ space: 4 }) {
|
|
|
|
|
Row() {
|
|
|
|
|
Row() {
|
|
|
|
|
Text(this.cardConfig?.card_title.value || $r('app.string.market_ranking_title'))
|
|
|
|
|
.fontSize(18)
|
|
|
|
|
.fontWeight(FontWeight.Bold)
|
|
|
|
|
.fontWeight(500)
|
|
|
|
|
.fontColor($r('app.color.text_primary'))
|
|
|
|
|
.maxLines(1)
|
|
|
|
|
|
|
|
|
|
if ((this.cardConfig?.card_url.android ?? '') !== '' ||
|
|
|
|
|
(this.cardConfig?.card_url.ios ?? '') !== '') {
|
|
|
|
|
Image(this.isDarkMode ? TITLE_ARROW_DARK : TITLE_ARROW_LIGHT)
|
|
|
|
|
.width(12)
|
|
|
|
|
.height(12)
|
|
|
|
|
.width(20)
|
|
|
|
|
.height(20)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((this.cardConfig?.explain_message ?? '') !== '') {
|
|
|
|
|
Image(this.isDarkMode ? INFO_IMAGE_DARK : INFO_IMAGE_LIGHT)
|
|
|
|
|
.width(16)
|
|
|
|
|
.height(16)
|
|
|
|
|
.onClick((event: ClickEvent) => {
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
this.showExplainSheet = true;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.alignItems(VerticalAlign.Center)
|
|
|
|
|
.height('100%')
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
this.jumpToCardTitle();
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Row() {
|
|
|
|
|
Text(this.unfolded
|
|
|
|
|
? $r('app.string.market_ranking_collapse')
|
|
|
|
|
: $r('app.string.market_ranking_expand'))
|
|
|
|
|
.fontSize(12)
|
|
|
|
|
.fontColor($r('app.color.text_tertiary'))
|
|
|
|
|
.height(20)
|
|
|
|
|
.padding({ left: 8, right: 8 })
|
|
|
|
|
.borderRadius(11)
|
|
|
|
|
.backgroundColor($r('app.color.pill_inactive_bg'))
|
|
|
|
|
.height(16)
|
|
|
|
|
.width('100%')
|
|
|
|
|
.textAlign(TextAlign.Center)
|
|
|
|
|
.margin({ left: 4 })
|
|
|
|
|
.onClick((event: ClickEvent) => {
|
|
|
|
|
this.unfolded = !this.unfolded;
|
|
|
|
|
}
|
|
|
|
|
.width(40)
|
|
|
|
|
.height(20)
|
|
|
|
|
.borderRadius(10)
|
|
|
|
|
.backgroundColor($r('app.color.pill_inactive_bg'))
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
this.toggleUnfolded();
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Blank()
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.height(48)
|
|
|
|
|
.alignItems(VerticalAlign.Center)
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
this.jumpToCardTitle();
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Builder
|
|
|
|
@@ -197,18 +219,19 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
Row({ space: 8 }) {
|
|
|
|
|
ForEach(TAB_METRICS, (metric: TabMetric, index: number) => {
|
|
|
|
|
Text(metric.label)
|
|
|
|
|
.fontSize(14)
|
|
|
|
|
.fontWeight(this.primaryIdx === index ? FontWeight.Bold : FontWeight.Normal)
|
|
|
|
|
.fontColor(this.primaryIdx === index
|
|
|
|
|
? $r('app.color.text_blue')
|
|
|
|
|
: $r('app.color.text_secondary'))
|
|
|
|
|
.constraintSize({ minWidth: 63 })
|
|
|
|
|
.fontSize(14)
|
|
|
|
|
.fontWeight(this.primaryIdx === index ? FontWeight.Medium : FontWeight.Normal)
|
|
|
|
|
.padding({ left: 8, right: 8 })
|
|
|
|
|
.height(30)
|
|
|
|
|
.constraintSize({ minWidth: 66 })
|
|
|
|
|
.textAlign(TextAlign.Center)
|
|
|
|
|
.padding({ top: 6, bottom: 6, left: 12, right: 12 })
|
|
|
|
|
.borderRadius(4)
|
|
|
|
|
.backgroundColor(this.primaryIdx === index
|
|
|
|
|
? $r('app.color.pill_active_bg')
|
|
|
|
|
: $r('app.color.pill_inactive_bg'))
|
|
|
|
|
.borderRadius(4)
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
this.primaryIdx = index;
|
|
|
|
|
this.secondaryIdx = 0;
|
|
|
|
@@ -235,7 +258,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
.height(30)
|
|
|
|
|
.linearGradient({
|
|
|
|
|
angle: 90,
|
|
|
|
|
colors: [['#00FFFFFF', 0], [$r('app.color.card_bg'), 1]],
|
|
|
|
|
colors: [[$r('app.color.transparent_white'), 0], [$r('app.color.card_bg'), 1]],
|
|
|
|
|
})
|
|
|
|
|
.hitTestBehavior(HitTestMode.None)
|
|
|
|
|
}
|
|
|
|
@@ -259,7 +282,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
Text(period.label)
|
|
|
|
|
.fontSize(12)
|
|
|
|
|
.fontWeight(this.secondaryIdx === index ? FontWeight.Bold : FontWeight.Normal)
|
|
|
|
|
.fontWeight(this.secondaryIdx === index ? FontWeight.Medium : FontWeight.Normal)
|
|
|
|
|
.fontColor(this.secondaryIdx === index
|
|
|
|
|
? $r('app.color.text_primary')
|
|
|
|
|
: $r('app.color.text_tertiary'))
|
|
|
|
@@ -272,8 +295,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.justifyContent(FlexAlign.End)
|
|
|
|
|
.padding({ left: 10, right: 10 })
|
|
|
|
|
.margin({ top: 8, left: -10, right: -10 })
|
|
|
|
|
.margin({ top: 8 })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.cardData.tableList.length === 0) {
|
|
|
|
@@ -284,71 +306,60 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.height(this.emptyHeight())
|
|
|
|
|
.margin({ top: 10 })
|
|
|
|
|
.alignItems(HorizontalAlign.Center)
|
|
|
|
|
.justifyContent(FlexAlign.Center)
|
|
|
|
|
} else {
|
|
|
|
|
Column() {
|
|
|
|
|
// 表头
|
|
|
|
|
Row() {
|
|
|
|
|
Row({ space: 8 }) {
|
|
|
|
|
Text($r('app.string.market_ranking_contract_name'))
|
|
|
|
|
.fontSize(12)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.fontSize(14)
|
|
|
|
|
.fontColor($r('app.color.text_tertiary'))
|
|
|
|
|
.width('35%')
|
|
|
|
|
Text($r('app.string.market_ranking_latest_price'))
|
|
|
|
|
.fontSize(12)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.fontSize(14)
|
|
|
|
|
.fontColor($r('app.color.text_tertiary'))
|
|
|
|
|
.layoutWeight(1)
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.textAlign(TextAlign.End)
|
|
|
|
|
Text(this.thirdColumnTitle())
|
|
|
|
|
.fontSize(12)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.fontSize(14)
|
|
|
|
|
.fontColor($r('app.color.text_tertiary'))
|
|
|
|
|
.layoutWeight(1)
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.textAlign(TextAlign.End)
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.height(23)
|
|
|
|
|
.margin({ top: 10 })
|
|
|
|
|
.padding({ bottom: 2 })
|
|
|
|
|
.alignItems(VerticalAlign.Center)
|
|
|
|
|
.border({ width: { bottom: 0.5 }, color: $r('app.color.divider_color') })
|
|
|
|
|
.height(40)
|
|
|
|
|
|
|
|
|
|
// 表格列表
|
|
|
|
|
ForEach(
|
|
|
|
|
this.cardData.tableList.slice(0, this.displaySize()),
|
|
|
|
|
(item: RankItem, index: number) => {
|
|
|
|
|
Row() {
|
|
|
|
|
(item: RankItem, _index: number) => {
|
|
|
|
|
Row({ space: 8 }) {
|
|
|
|
|
Text(item.name)
|
|
|
|
|
.fontSize(16)
|
|
|
|
|
.minFontSize(10)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.maxFontSize(16)
|
|
|
|
|
.minFontSize(9)
|
|
|
|
|
.fontColor($r('app.color.text_primary'))
|
|
|
|
|
.width('35%')
|
|
|
|
|
.maxLines(1)
|
|
|
|
|
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
|
|
Text(item.price === undefined ? '--' : `${item.price}`)
|
|
|
|
|
.fontSize(16)
|
|
|
|
|
.minFontSize(10)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.fontFamily('monospace')
|
|
|
|
|
.fontWeight(500)
|
|
|
|
|
.maxFontSize(16)
|
|
|
|
|
.minFontSize(9)
|
|
|
|
|
.fontColor(this.priceColor(item))
|
|
|
|
|
.layoutWeight(1)
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.textAlign(TextAlign.End)
|
|
|
|
|
.maxLines(1)
|
|
|
|
|
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
|
|
Text(this.thirdColumnValue(item))
|
|
|
|
|
.fontSize(16)
|
|
|
|
|
.minFontSize(10)
|
|
|
|
|
.lineHeight(21)
|
|
|
|
|
.fontFamily('monospace')
|
|
|
|
|
.fontWeight(500)
|
|
|
|
|
.maxFontSize(16)
|
|
|
|
|
.minFontSize(9)
|
|
|
|
|
.fontColor(this.thirdColumnColor(item))
|
|
|
|
|
.layoutWeight(1)
|
|
|
|
|
.margin({ left: 8 })
|
|
|
|
|
.textAlign(TextAlign.End)
|
|
|
|
|
.maxLines(1)
|
|
|
|
|
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
|
@@ -356,12 +367,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
.width('100%')
|
|
|
|
|
.height(45)
|
|
|
|
|
.alignItems(VerticalAlign.Center)
|
|
|
|
|
.border(index === Math.min(
|
|
|
|
|
this.displaySize(),
|
|
|
|
|
this.cardData.tableList.length,
|
|
|
|
|
) - 1
|
|
|
|
|
? undefined
|
|
|
|
|
: { width: { bottom: 0.5 }, color: $r('app.color.divider_color') })
|
|
|
|
|
.border({ width: { top: 1 }, color: $r('app.color.divider_color') })
|
|
|
|
|
.onClick(() => {
|
|
|
|
|
if (item.market !== undefined) {
|
|
|
|
|
this.jumpToDetail(item);
|
|
|
|
@@ -374,8 +380,15 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
`${item.chg_speed ?? ''}_${item.turnover ?? ''}_${item.incre_posit ?? ''}`,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.height(this.emptyHeight())
|
|
|
|
|
.animation({ duration: 180, curve: Curve.EaseInOut })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.width('100%')
|
|
|
|
|
.backgroundColor($r('app.color.card_bg'))
|
|
|
|
|
.borderRadius(4)
|
|
|
|
|
.padding({ left: 10, right: 10, bottom: 10 })
|
|
|
|
|
.bindSheet(this.showExplainSheet, this.ExplainSheet, {
|
|
|
|
|
height: SheetSize.FIT_CONTENT,
|
|
|
|
|
dragBar: true,
|
|
|
|
@@ -393,40 +406,61 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
|
|
|
|
|
// 先请求合约榜单填充列表,再根据当前 CardData 订阅行情。
|
|
|
|
|
private async updateCardData(primaryIdx: number, secondaryIdx: number): Promise<void> {
|
|
|
|
|
// 切换 Tab 后立即清理旧列表,避免新请求返回前闪现上一 Tab 的数据。
|
|
|
|
|
const requestVersion: number = this.dataRequestVersion + 1;
|
|
|
|
|
this.dataRequestVersion = requestVersion;
|
|
|
|
|
const cacheKey: string = this.getTabCacheKey(primaryIdx, secondaryIdx);
|
|
|
|
|
const cachedData: CardData | undefined = this.tabDataCache.get(cacheKey);
|
|
|
|
|
this.stopSubscribeHq();
|
|
|
|
|
if (cachedData !== undefined) {
|
|
|
|
|
this.cardData = cachedData;
|
|
|
|
|
this.contracts = cardDataToContracts(cachedData);
|
|
|
|
|
if (this.firstPageVisible) {
|
|
|
|
|
this.subscribeHq(primaryIdx, secondaryIdx);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.contracts = [];
|
|
|
|
|
this.cardData = { tableList: [] };
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
const contracts = await MarketRankingDataFetcher
|
|
|
|
|
.getInstance()
|
|
|
|
|
.fetchRecommendFutures(primaryIdx, secondaryIdx);
|
|
|
|
|
this.cardData = {
|
|
|
|
|
tableList: contracts.map((contract: RecommendFuturesItem): RankItem => ({
|
|
|
|
|
code: contract.contract_code,
|
|
|
|
|
market: contract.market,
|
|
|
|
|
name: contract.contract_name,
|
|
|
|
|
})),
|
|
|
|
|
};
|
|
|
|
|
if (!this.isCurrentDataRequest(requestVersion, primaryIdx, secondaryIdx)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.contracts = contracts;
|
|
|
|
|
if (cachedData === undefined) {
|
|
|
|
|
this.cardData = contractsToPlaceholderCardData(contracts);
|
|
|
|
|
}
|
|
|
|
|
this.tabDataCache.set(cacheKey, this.cardData);
|
|
|
|
|
if (this.firstPageVisible) {
|
|
|
|
|
this.subscribeHq(primaryIdx, secondaryIdx);
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
if (!this.isCurrentDataRequest(requestVersion, primaryIdx, secondaryIdx)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (cachedData === undefined) {
|
|
|
|
|
this.contracts = [];
|
|
|
|
|
this.cardData = { tableList: [] };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 使用当前 CardData 中的合约列表订阅行情,推送后整体更新 CardData。
|
|
|
|
|
// 使用 HTTP 保存的合约列表订阅行情,推送后整体更新当前 Tab 缓存。
|
|
|
|
|
private subscribeHq(primaryIdx: number, secondaryIdx: number): void {
|
|
|
|
|
const contracts = this.cardData.tableList.map((item: RankItem): RecommendFuturesItem => ({
|
|
|
|
|
contract_code: item.code,
|
|
|
|
|
contract_name: item.name,
|
|
|
|
|
market: item.market,
|
|
|
|
|
}));
|
|
|
|
|
this.stopSubscribeHq();
|
|
|
|
|
if (this.contracts.length === 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.hqUnsubscribe = MarketRankingHqRequestClient
|
|
|
|
|
.getInstance()
|
|
|
|
|
.subscribeHq(contracts, primaryIdx, secondaryIdx, (cardData: CardData): void => {
|
|
|
|
|
.subscribeHq(this.contracts, primaryIdx, secondaryIdx, (cardData: CardData): void => {
|
|
|
|
|
if (primaryIdx === this.primaryIdx && secondaryIdx === this.secondaryIdx) {
|
|
|
|
|
this.cardData = cardData;
|
|
|
|
|
this.tabDataCache.set(this.getTabCacheKey(primaryIdx, secondaryIdx), cardData);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -437,6 +471,24 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private isCurrentDataRequest(
|
|
|
|
|
requestVersion: number,
|
|
|
|
|
primaryIdx: number,
|
|
|
|
|
secondaryIdx: number,
|
|
|
|
|
): boolean {
|
|
|
|
|
return requestVersion === this.dataRequestVersion &&
|
|
|
|
|
primaryIdx === this.primaryIdx &&
|
|
|
|
|
secondaryIdx === this.secondaryIdx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getTabCacheKey(primaryIdx: number, secondaryIdx: number): string {
|
|
|
|
|
const metric: TabMetric = TAB_METRICS[primaryIdx];
|
|
|
|
|
if (metric.hasChildren) {
|
|
|
|
|
return `${metric.id}_${PERIOD_RANGES[secondaryIdx].id}`;
|
|
|
|
|
}
|
|
|
|
|
return metric.id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 跳转到分时详情页
|
|
|
|
|
// todo: 后续跳转为真实的页面
|
|
|
|
|
private jumpToDetail(item: RankItem): void {
|
|
|
|
@@ -473,6 +525,10 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 以下是UI相关
|
|
|
|
|
private toggleUnfolded(): void {
|
|
|
|
|
this.unfolded = !this.unfolded;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private showTabGradient(): boolean {
|
|
|
|
|
const maxOffset = this.tabContentWidth - this.tabViewportWidth;
|
|
|
|
|
return maxOffset > 0 && this.tabScrollOffset < maxOffset;
|
|
|
|
@@ -480,7 +536,7 @@ export struct MarketRankingNodeComponent {
|
|
|
|
|
|
|
|
|
|
private emptyHeight(): number {
|
|
|
|
|
const rowHeight = 45;
|
|
|
|
|
const headerHeight = 24;
|
|
|
|
|
const headerHeight = 40;
|
|
|
|
|
return this.displaySize() * rowHeight + headerHeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|