2026-03-09 10:36:03 +08:00
"use client" ;
import clsx from "clsx" ;
2026-04-13 18:42:27 +08:00
import { CSSProperties , useEffect , useMemo , useState } from "react" ;
2026-03-09 10:36:03 +08:00
import { useDashboardStore } from "@/hooks/useDashboardStore" ;
2026-03-10 04:45:40 +08:00
import { useI18n } from "@/hooks/useI18n" ;
2026-03-13 06:41:33 +08:00
import { ProFeaturePaywall } from "@/components/dashboard/ProFeaturePaywall" ;
2026-04-28 20:19:17 +08:00
import { getFutureModalView } from "@/lib/dashboard-utils" ;
2026-04-28 12:07:43 +08:00
import { getModelView , getProbabilityView } from "@/lib/model-utils" ;
2026-04-28 11:45:34 +08:00
import { getTodayPaceView } from "@/lib/pace-utils" ;
2026-04-21 23:01:38 +08:00
import { dashboardClient } from "@/lib/dashboard-client" ;
2026-04-28 12:17:42 +08:00
import { getWeatherSummary } from "@/lib/weather-summary-utils" ;
2026-04-22 23:43:27 +08:00
import {
normalizeObservationSourceCode ,
normalizeObservationSourceLabel ,
} from "@/lib/source-labels" ;
2026-04-28 20:19:17 +08:00
import type { MarketScan } from "@/lib/dashboard-types" ;
import { FutureForecastForwardView } from "./FutureForecastForwardView" ;
import {
FutureModelForecastPanel ,
FutureProbabilityPanel ,
FutureTemperaturePathChart ,
} from "./FutureForecastModalPanels" ;
import { FutureForecastTodayDecisionBrief } from "./FutureForecastTodayDecisionBrief" ;
import { FutureForecastTodayEvidenceGrid } from "./FutureForecastTodayEvidenceGrid" ;
import {
FutureRefreshLock ,
FutureSyncStatusStrip ,
type FutureSyncStatusItem ,
} from "./FutureForecastModalStatus" ;
import {
FutureAnchorStatusCard ,
FuturePaceCard ,
FuturePaceLoadingCard ,
type FuturePaceSignalItem ,
} from "./FutureForecastTodayCards" ;
import {
TODAY_MARKET_SCAN_AUTO_REFRESH_MS ,
clamp ,
formatBucketLabel ,
formatMarketPercent ,
getTrendMetricVisual ,
localizedList ,
localizedText ,
parseBucketBoundaries ,
parseClockMinutes ,
parseLeadingNumber ,
} from "./FutureForecastModal.utils" ;
2026-03-09 10:36:03 +08:00
export function FutureForecastModal() {
const store = useDashboardStore ();
2026-03-10 04:45:40 +08:00
const { locale , t } = useI18n ();
2026-03-09 10:36:03 +08:00
const detail = store . selectedDetail ;
const dateStr = store . futureModalDate ;
2026-04-24 13:04:27 +08:00
if ( ! detail || ! dateStr ) return null ;
return (
< FutureForecastModalContent
store = { store }
locale = { locale }
t = { t }
detail = { detail }
dateStr = { dateStr }
/>
);
}
function FutureForecastModalContent ({
store ,
locale ,
t ,
detail ,
dateStr ,
} : {
store : ReturnType < typeof useDashboardStore >;
locale : ReturnType < typeof useI18n >[ "locale" ];
t : ReturnType < typeof useI18n >[ "t" ];
detail : NonNullable < ReturnType < typeof useDashboardStore > [ "selectedDetail" ] >;
dateStr : string ;
}) {
2026-03-13 06:41:33 +08:00
const isPro = store . proAccess . subscriptionActive ;
const isProLoading = store . proAccess . loading ;
2026-04-24 13:04:27 +08:00
const hasModalContext = true ;
2026-04-23 22:35:34 +08:00
const [ showDeferredTodaySections , setShowDeferredTodaySections ] =
useState ( false );
const [ freshMarketScan , setFreshMarketScan ] = useState < MarketScan | null >(
null ,
);
2026-03-09 10:36:03 +08:00
2026-04-13 18:42:27 +08:00
useEffect (() => {
2026-04-24 04:34:33 +08:00
if ( ! hasModalContext ) {
setShowDeferredTodaySections ( false );
return ;
}
2026-04-13 18:42:27 +08:00
setShowDeferredTodaySections ( false );
if ( typeof window === "undefined" ) {
setShowDeferredTodaySections ( true );
return ;
}
let cancelled = false ;
let timeoutId : ReturnType < typeof setTimeout > | null = null ;
let idleId : number | null = null ;
const reveal = () => {
if ( ! cancelled ) {
setShowDeferredTodaySections ( true );
}
};
if ( "requestIdleCallback" in window ) {
idleId = window . requestIdleCallback ( reveal , { timeout : 600 });
} else {
timeoutId = setTimeout ( reveal , 120 );
}
return () => {
cancelled = true ;
if ( idleId != null && "cancelIdleCallback" in window ) {
window . cancelIdleCallback ( idleId );
}
if ( timeoutId != null ) {
clearTimeout ( timeoutId );
}
};
2026-04-24 04:34:33 +08:00
}, [ dateStr , detail , hasModalContext ]);
2026-04-13 18:42:27 +08:00
2026-04-17 20:40:17 +08:00
const isToday =
store . forecastModalMode === "today" ||
2026-04-24 04:34:33 +08:00
( store . forecastModalMode == null && dateStr === detail ? . local_date );
const detailDepth = detail ? . detail_depth || "full" ;
2026-04-13 11:19:24 +08:00
const isFullDetailReady = detailDepth === "full" ;
2026-04-23 22:35:34 +08:00
const isStructureSyncing =
store . loadingState . futureDeep || ! isFullDetailReady ;
2026-04-15 16:30:13 +08:00
const isAnyLayerSyncing = isStructureSyncing ;
2026-04-17 21:08:26 +08:00
const isTodayBlockingRefresh = isToday && isStructureSyncing ;
2026-04-24 04:34:33 +08:00
const activeMarketScan = freshMarketScan || detail ? . market_scan || null ;
2026-04-21 23:01:38 +08:00
useEffect (() => {
setFreshMarketScan ( null );
2026-04-24 04:34:33 +08:00
if ( ! hasModalContext || ! isToday || ! isFullDetailReady || ! isPro ) return ;
const cityName = String ( detail ? . name || detail ? . display_name || "" ). trim ();
2026-04-21 23:01:38 +08:00
if ( ! cityName || ! dateStr ) return ;
let cancelled = false ;
2026-04-22 02:30:49 +08:00
let intervalId : ReturnType < typeof setInterval > | null = null ;
const refreshMarketScan = () => {
dashboardClient
. getCityMarketScan ( cityName , {
force : false ,
2026-04-23 20:45:32 +08:00
lite : false ,
2026-04-24 04:34:33 +08:00
marketSlug : detail?.market_scan?.primary_market?.slug || null ,
2026-04-22 02:30:49 +08:00
targetDate : dateStr ,
})
. then (( payload ) => {
if ( cancelled ) return ;
setFreshMarketScan ( payload . market_scan || null );
})
. catch (() => {
if ( ! cancelled ) {
setFreshMarketScan ( null );
}
});
};
refreshMarketScan ();
intervalId = setInterval (() => {
2026-04-23 22:35:34 +08:00
if (
typeof document !== "undefined" &&
document . visibilityState === "hidden"
) {
2026-04-22 02:30:49 +08:00
return ;
}
refreshMarketScan ();
2026-04-24 13:35:36 +08:00
}, TODAY_MARKET_SCAN_AUTO_REFRESH_MS );
2026-04-21 23:01:38 +08:00
return () => {
cancelled = true ;
2026-04-22 02:30:49 +08:00
if ( intervalId != null ) {
clearInterval ( intervalId );
}
2026-04-21 23:01:38 +08:00
};
}, [
dateStr ,
2026-04-24 04:34:33 +08:00
detail ? . display_name ,
detail ? . local_date ,
detail ? . market_scan ? . primary_market ? . slug ,
detail ? . name ,
detail ? . updated_at ,
hasModalContext ,
2026-04-21 23:01:38 +08:00
isFullDetailReady ,
isPro ,
isToday ,
]);
2026-03-10 04:45:40 +08:00
const view = getFutureModalView ( detail , dateStr , locale );
2026-03-09 10:36:03 +08:00
const scorePosition = ` ${ 50 + view . front . score / 2 } %` ;
const barStyle = {
"--score-position" : scorePosition ,
} as CSSProperties & { "--score-position" : string };
2026-03-10 04:45:40 +08:00
const weatherSummary = getWeatherSummary ( detail , locale );
2026-04-08 10:33:58 +08:00
const paceView = useMemo (
2026-04-13 18:42:27 +08:00
() =>
isToday && showDeferredTodaySections
? getTodayPaceView ( detail , locale )
: null ,
[ detail , isToday , locale , showDeferredTodaySections ],
2026-04-08 10:33:58 +08:00
);
2026-04-08 11:16:51 +08:00
const probabilityView = useMemo (
() => getProbabilityView ( detail , dateStr ),
[ dateStr , detail ],
);
2026-04-23 22:35:34 +08:00
const modelView = useMemo (
() => getModelView ( detail , dateStr ),
[ dateStr , detail ],
);
2026-04-19 03:41:39 +08:00
const probabilityEngineKey = String ( probabilityView ? . engine || "" )
. trim ()
. toLowerCase ();
const probabilityCalibrationMode = String (
probabilityView ? . calibrationMode || "" ,
)
. trim ()
. toLowerCase ();
2026-04-17 20:53:37 +08:00
const hasLgbmProbability = useMemo (
() =>
Object . keys ( modelView ? . models || {}). some (( name ) =>
2026-04-23 22:35:34 +08:00
String ( name || "" )
. toLowerCase ()
. replace ( /[\s_/-]/g , "" )
. includes ( "lgbm" ),
2026-04-17 20:53:37 +08:00
),
[ modelView ],
);
2026-04-19 03:41:39 +08:00
const hasEmosProbability =
2026-04-23 22:35:34 +08:00
probabilityEngineKey === "emos" ||
probabilityCalibrationMode . includes ( "emos" );
2026-04-19 03:41:39 +08:00
const probabilityEngineLabel = hasLgbmProbability
? locale === "en-US"
? "LGBM"
: "LGBM"
: hasEmosProbability
? "EMOS"
: locale === "en-US"
? "Calibrated model"
: "校准模型" ;
const probabilityTitle = hasLgbmProbability
? locale === "en-US"
? "LGBM-Calibrated Probability"
: "LGBM 校准概率"
: hasEmosProbability
? locale === "en-US"
? "EMOS-Calibrated Probability"
: "EMOS 校准概率"
: locale === "en-US"
? "Calibrated Model Probability"
: "校准模型概率" ;
2026-04-08 11:16:51 +08:00
const topProbabilityBucket = useMemo (() => {
const buckets = Array . isArray ( probabilityView ? . probabilities )
? probabilityView . probabilities
: [];
return [... buckets ]
. filter (( bucket ) => Number . isFinite ( Number ( bucket ? . probability )))
. sort (( a , b ) => Number ( b ? . probability ) - Number ( a ? . probability ))[ 0 ];
}, [ probabilityView ]);
const modelSpreadView = useMemo (() => {
const values = Object . values ( modelView ? . models || {})
. map (( value ) => Number ( value ))
. filter (( value ) => Number . isFinite ( value ));
if ( ! values . length ) return null ;
const min = Math . min (... values );
const max = Math . max (... values );
const spread = max - min ;
return {
2026-04-08 15:23:34 +08:00
count : values.length ,
2026-04-08 11:16:51 +08:00
max ,
min ,
spread ,
};
}, [ modelView ]);
const boundaryRiskView = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return null ;
2026-04-08 11:16:51 +08:00
if ( ! isToday || ! paceView ) return null ;
2026-04-15 16:30:13 +08:00
const selectedBucket = topProbabilityBucket || null ;
2026-04-08 11:16:51 +08:00
const bounds = parseBucketBoundaries ( selectedBucket );
if ( ! bounds ) return null ;
const projected =
paceView . paceAdjustedHigh ??
( detail . deb ? . prediction != null ? Number ( detail . deb . prediction ) : null );
if ( projected == null || ! Number . isFinite ( projected )) return null ;
const distances = [ bounds . lower , bounds . upper ]
2026-04-23 22:35:34 +08:00
. filter (
( value ) : value is number => value != null && Number . isFinite ( value ),
)
2026-04-08 11:16:51 +08:00
. map (( value ) => ({
boundary : value ,
gap : Math.abs ( projected - value ),
}))
. sort (( a , b ) => a . gap - b . gap );
if ( ! distances . length ) return null ;
const nearest = distances [ 0 ];
const tone =
nearest . gap <= 0.4 ? "amber" : nearest . gap <= 0.8 ? "blue" : "cyan" ;
const status =
nearest . gap <= 0.4
? locale === "en-US"
? "High boundary risk"
: "边界风险高"
: nearest . gap <= 0.8
? locale === "en-US"
? "Watch boundary"
: "边界需观察"
: locale === "en-US"
? "Boundary buffer"
: "边界缓冲" ;
const note =
locale === "en-US"
? ` ${ projected . toFixed ( 1 ) }${ detail . temp_symbol } is ${ nearest . gap . toFixed ( 1 ) }${ detail . temp_symbol } from the nearest boundary ${ nearest . boundary . toFixed ( 1 ) } °C.`
: ` ${ projected . toFixed ( 1 ) }${ detail . temp_symbol } 距最近边界 ${ nearest . boundary . toFixed ( 1 ) } °C 还有 ${ nearest . gap . toFixed ( 1 ) }${ detail . temp_symbol } 。` ;
return {
label : locale === "en-US" ? "Boundary risk" : "边界风险" ,
note ,
status ,
tone ,
value : ` ${ nearest . gap . toFixed ( 1 ) }${ detail . temp_symbol } ` ,
};
2026-04-23 22:35:34 +08:00
}, [
detail . deb ? . prediction ,
detail . temp_symbol ,
isToday ,
locale ,
paceView ,
showDeferredTodaySections ,
topProbabilityBucket ,
]);
2026-04-08 11:16:51 +08:00
const peakWindowStateView = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return null ;
2026-04-08 11:16:51 +08:00
if ( ! isToday || ! paceView ) return null ;
const firstHour = Number ( detail . peak ? . first_h );
const lastHour = Number ( detail . peak ? . last_h );
if (
! Number . isFinite ( firstHour ) ||
! Number . isFinite ( lastHour ) ||
firstHour < 0 ||
lastHour < firstHour
) {
return null ;
}
const currentMinutes = parseClockMinutes ( detail . local_time );
const startMinutes = firstHour * 60 ;
const endMinutes = ( lastHour + 1 ) * 60 ;
let status = locale === "en-US" ? "Awaiting peak" : "未进入峰值" ;
let tone : "amber" | "blue" | "cyan" = "blue" ;
if ( currentMinutes != null && currentMinutes >= endMinutes ) {
status = locale === "en-US" ? "Past peak" : "已过峰值" ;
tone = "cyan" ;
} else if ( currentMinutes != null && currentMinutes >= startMinutes ) {
status = locale === "en-US" ? "Peak window live" : "峰值窗口进行中" ;
tone = "amber" ;
}
const note =
locale === "en-US"
? `Primary peak window ${ paceView . peakWindowText } .`
: `核心峰值窗口 ${ paceView . peakWindowText } 。` ;
return {
label : locale === "en-US" ? "Peak window" : "峰值窗口状态" ,
note ,
status ,
tone ,
value : paceView.peakWindowText ,
};
2026-04-23 22:35:34 +08:00
}, [
detail . local_time ,
detail . peak ? . first_h ,
detail . peak ? . last_h ,
isToday ,
locale ,
paceView ,
showDeferredTodaySections ,
]);
2026-04-08 11:16:51 +08:00
const networkLeadView = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return null ;
2026-04-08 11:16:51 +08:00
if ( ! isToday ) return null ;
const delta = Number ( detail . airport_vs_network_delta );
const leadSignal = detail . network_lead_signal ;
if ( ! Number . isFinite ( delta )) return null ;
const leaderLabel =
String ( leadSignal ? . leader_station_label || "" ). trim () ||
String ( leadSignal ? . leader_station_code || "" ). trim ();
2026-04-23 22:35:34 +08:00
const leaderSyncStatus = String ( leadSignal ? . leader_sync_status || "" )
. trim ()
. toLowerCase ();
const leaderSyncDelta = Number (
leadSignal ? . leader_time_delta_vs_anchor_minutes ,
);
2026-04-19 02:38:34 +08:00
const syncNote =
leaderSyncStatus === "near_realtime" || leaderSyncStatus === "lagged"
? Number . isFinite ( leaderSyncDelta )
? locale === "en-US"
? ` Timing offset versus the airport anchor is about ${ Math . round ( leaderSyncDelta ) } minutes.`
: ` 与机场锚点存在约 ${ Math . round ( leaderSyncDelta ) } 分钟时间差。`
: locale === "en-US"
? " Nearby observations are not fully synchronized."
: " 周边观测并非完全同步。"
: leaderSyncStatus === "unknown"
? locale === "en-US"
? " Nearby station timing is not fully verified."
: " 周边站观测时间尚未完全校验。"
: "" ;
2026-04-08 11:16:51 +08:00
const absDelta = Math . abs ( delta );
const status =
delta <= - 0.4
? locale === "en-US"
? "Airport trailing"
: "机场落后"
: delta >= 0.4
? locale === "en-US"
? "Airport leading"
: "机场领先"
: locale === "en-US"
? "Tracking network"
: "与站网齐平" ;
2026-04-23 22:35:34 +08:00
const tone = delta <= - 0.4 ? "amber" : delta >= 0.4 ? "cyan" : "blue" ;
2026-04-08 11:16:51 +08:00
const note =
delta <= - 0.4
? locale === "en-US"
2026-04-19 02:38:34 +08:00
? `Airport anchor is ${ absDelta . toFixed ( 1 ) }${ detail . temp_symbol } cooler than the nearby official network ${ leaderLabel ? `, led by ${ leaderLabel } ` : "" } . ${ syncNote } `
: `机场主站当前比周边官方站网低 ${ absDelta . toFixed ( 1 ) }${ detail . temp_symbol }${ leaderLabel ? `,领先点位是 ${ leaderLabel } ` : "" } 。 ${ syncNote } `
2026-04-08 11:16:51 +08:00
: delta >= 0.4
? locale === "en-US"
2026-04-19 02:38:34 +08:00
? `Airport anchor is ${ absDelta . toFixed ( 1 ) }${ detail . temp_symbol } hotter than the nearby official network. ${ syncNote } `
: `机场主站当前比周边官方站网高 ${ absDelta . toFixed ( 1 ) }${ detail . temp_symbol } 。 ${ syncNote } `
2026-04-08 11:16:51 +08:00
: locale === "en-US"
? "Airport anchor and nearby official network are broadly aligned."
: "机场主站与周边官方站网当前大体齐平。" ;
return {
label : locale === "en-US" ? "Airport vs network" : "机场 vs 周边站" ,
note ,
status ,
tone ,
value : ` ${ delta > 0 ? "+" : "" }${ delta . toFixed ( 1 ) }${ detail . temp_symbol } ` ,
};
2026-04-23 22:35:34 +08:00
}, [
detail . airport_vs_network_delta ,
detail . network_lead_signal ,
detail . temp_symbol ,
isToday ,
locale ,
showDeferredTodaySections ,
]);
2026-04-28 20:19:17 +08:00
const paceSignalItems = useMemo (
() =>
[ boundaryRiskView , peakWindowStateView , networkLeadView ]
. filter (( item ) => item != null )
. map (( item ) => ({
label : item.label ,
note : item.note ,
status : item.status ,
tone : item.tone ,
value : item.value ,
})) as FuturePaceSignalItem [],
[ boundaryRiskView , networkLeadView , peakWindowStateView ],
);
2026-03-27 20:58:38 +08:00
const isNoaaSettlement =
detail . current ? . settlement_source === "noaa" ||
detail . current ? . settlement_source_label === "NOAA" ;
const noaaStationCode = String (
detail . current ? . station_code || detail . risk ? . icao || "NOAA" ,
)
. trim ()
. toUpperCase ();
const noaaStationName =
String ( detail . current ? . station_name || "" ). trim () ||
String ( detail . risk ? . airport || "" ). trim () ||
noaaStationCode ;
2026-04-15 16:30:13 +08:00
const hottestBucketLabel = formatBucketLabel ( topProbabilityBucket );
2026-04-08 11:16:51 +08:00
const probabilitySummary = (() => {
if ( ! topProbabilityBucket ) {
return locale === "en-US"
? "Probability mass is still too dispersed; avoid over-reading a single bracket."
: "当前概率还比较分散,不要只盯单一区间。" ;
}
const bucketLabel = formatBucketLabel ( topProbabilityBucket );
const bucketProb = formatMarketPercent ( topProbabilityBucket . probability );
2026-04-19 04:02:46 +08:00
if ( ! isToday ) {
return locale === "en-US"
? `Target-day model probability reference puts the leading bucket at ${ bucketLabel } ( ${ bucketProb } ). EMOS is reserved for intraday analysis after live anchor observations arrive.`
: `目标日模型概率参考显示领先温度桶为 ${ bucketLabel } ( ${ bucketProb } )。EMOS 仅用于有实时锚点观测后的日内分析。` ;
}
2026-04-17 20:53:37 +08:00
if ( hasLgbmProbability ) {
return locale === "en-US"
? `LGBM-calibrated read puts the leading bucket at ${ bucketLabel } ( ${ bucketProb } ). Treat this as the base case, not the final settlement.`
: `LGBM 校准后领先温度桶为 ${ bucketLabel } ( ${ bucketProb } )。可作为基准情形,但不要直接等同于最终结算。` ;
}
2026-04-19 03:41:39 +08:00
if ( hasEmosProbability ) {
return locale === "en-US"
? `EMOS-calibrated probability puts the leading bucket at ${ bucketLabel } ( ${ bucketProb } ). It is the primary calibrated probability layer, not the final settlement.`
: `EMOS 校准概率显示领先温度桶为 ${ bucketLabel } ( ${ bucketProb } )。这是当前主概率层,但不要直接等同于最终结算。` ;
}
2026-04-08 11:16:51 +08:00
return locale === "en-US"
2026-04-17 20:53:37 +08:00
? `Calibrated model probability puts the leading bucket at ${ bucketLabel } ( ${ bucketProb } ). Treat this as the base case, not the final settlement.`
: `校准模型概率显示领先温度桶为 ${ bucketLabel } ( ${ bucketProb } )。可作为基准情形,但不要直接等同于最终结算。` ;
2026-04-08 11:16:51 +08:00
})();
const modelSummary = (() => {
if ( ! modelSpreadView ) {
return locale === "en-US"
? "Model spread is unavailable right now."
: "当前拿不到可用的模型分歧。" ;
}
2026-04-08 15:23:34 +08:00
const modelEntries = Object . entries ( modelView ? . models || {}). filter (
2026-04-23 22:35:34 +08:00
([, value ]) =>
value !== null && value !== undefined && Number . isFinite ( Number ( value )),
2026-04-08 15:23:34 +08:00
);
if ( modelEntries . length === 1 ) {
const [ singleModelName , singleModelValue ] = modelEntries [ 0 ];
return locale === "en-US"
? `Only ${ singleModelName } is available right now at ${ Number ( singleModelValue ). toFixed ( 1 ) }${ detail . temp_symbol } ; multi-model spread is temporarily unavailable.`
: `当前只收到 ${ singleModelName } ${ Number ( singleModelValue ). toFixed ( 1 ) }${ detail . temp_symbol } ,其他多模型暂未回传,所以这里先不判断模型分歧。` ;
}
2026-04-08 11:16:51 +08:00
return locale === "en-US"
? `Model range runs from ${ modelSpreadView . min . toFixed ( 1 ) }${ detail . temp_symbol } to ${ modelSpreadView . max . toFixed ( 1 ) }${ detail . temp_symbol } ; spread ${ modelSpreadView . spread . toFixed ( 1 ) }${ detail . temp_symbol } .`
: `当前模型区间在 ${ modelSpreadView . min . toFixed ( 1 ) }${ detail . temp_symbol } 到 ${ modelSpreadView . max . toFixed ( 1 ) }${ detail . temp_symbol } ,分歧 ${ modelSpreadView . spread . toFixed ( 1 ) }${ detail . temp_symbol } 。` ;
})();
2026-03-24 02:07:15 +08:00
const upperAirSignal = detail . vertical_profile_signal || {};
2026-03-24 03:13:54 +08:00
const tafSignal = detail . taf ? . signal || {};
2026-04-15 16:30:13 +08:00
const upperAirCue = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return null ;
2026-04-23 22:35:34 +08:00
if ( ! isToday || ( ! upperAirSignal . source && ! tafSignal . available ))
return null ;
2026-03-24 02:07:15 +08:00
2026-04-23 22:35:34 +08:00
const setup = String (
upperAirSignal . heating_setup || "neutral" ,
). toLowerCase ();
2026-03-24 03:13:54 +08:00
const tafSuppression = String (
tafSignal . suppression_level || "low" ,
). toLowerCase ();
const tafDisruption = String (
tafSignal . disruption_level || "low" ,
). toLowerCase ();
const reasons : string [] = [];
let score = 0 ;
2026-03-24 02:07:15 +08:00
if ( setup === "supportive" ) {
2026-03-24 03:13:54 +08:00
score += 2 ;
reasons . push (
locale === "en-US"
? "upper-air structure still supports daytime heating"
: "高空结构仍偏支持白天冲高" ,
);
} else if ( setup === "suppressed" ) {
score -= 2 ;
reasons . push (
locale === "en-US"
? "upper-air structure still leans toward capping the peak"
: "高空结构更偏向压住峰值" ,
);
}
if ( tafSuppression === "high" ) {
score -= 2 ;
reasons . push (
locale === "en-US"
? "TAF flags meaningful cloud/rain suppression near the peak window"
: "TAF 在峰值窗口提示云雨压温风险偏高" ,
);
} else if ( tafSuppression === "medium" ) {
score -= 1 ;
reasons . push (
locale === "en-US"
? "TAF keeps some cloud/rain suppression risk on the table"
: "TAF 仍提示一定的云雨压温风险" ,
);
}
if ( tafDisruption === "high" ) {
score -= 1 ;
reasons . push (
locale === "en-US"
? "TAF also suggests a noisier afternoon regime"
: "TAF 还提示午后扰动偏强" ,
);
} else if ( tafDisruption === "medium" ) {
score -= 0.5 ;
reasons . push (
locale === "en-US"
? "TAF keeps some afternoon timing noise in play"
: "TAF 提示午后仍可能有时段性扰动" ,
);
}
if ( score >= 1.5 ) {
2026-03-24 02:07:15 +08:00
return {
2026-03-24 03:13:54 +08:00
summary :
locale === "en-US"
2026-04-15 16:30:13 +08:00
? "The combined upper-air and TAF read still leans warmer. Do not fade lower buckets too early."
: "高空和 TAF 两层信号合并后仍偏暖侧,不宜过早做更低温区间。" ,
2026-03-24 03:13:54 +08:00
note :
locale === "en-US"
? ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) } .`
: ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) } 。` ,
2026-03-24 02:07:15 +08:00
tone : "warm" ,
value : locale === "en-US" ? "Lean warmer" : "偏暖侧" ,
};
}
2026-03-24 03:13:54 +08:00
if ( score <= - 1.5 ) {
2026-03-24 02:07:15 +08:00
return {
2026-03-24 03:13:54 +08:00
summary :
locale === "en-US"
2026-04-15 16:30:13 +08:00
? "The combined upper-air and TAF read leans more defensive. Be more careful chasing higher buckets."
: "高空和 TAF 两层信号合并后更偏防守,追更高温区间要更谨慎。" ,
2026-03-24 03:13:54 +08:00
note :
locale === "en-US"
? ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) } .`
: ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) } 。` ,
2026-03-24 02:07:15 +08:00
tone : "cold" ,
value : locale === "en-US" ? "Lean cautious" : "偏谨慎" ,
};
}
return {
2026-03-24 03:13:54 +08:00
summary :
locale === "en-US"
2026-04-15 16:30:13 +08:00
? "The combined upper-air and TAF read is mixed. Let surface structure decide before taking a side."
: "高空和 TAF 两层信号目前偏混合,先看近地面结构变化,不急着站边。" ,
2026-03-24 03:13:54 +08:00
note :
locale === "en-US"
? ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) || "No clean edge from the upper-air layer alone" } .`
: ` ${ reasons . slice ( 0 , 2 ). join ( "; " ) || "单看高空层还没有干净的交易边" } 。` ,
2026-03-24 02:07:15 +08:00
tone : "" ,
value : locale === "en-US" ? "Wait / confirm" : "先观察" ,
};
}, [
2026-03-24 03:13:54 +08:00
tafSignal . available ,
tafSignal . disruption_level ,
tafSignal . suppression_level ,
2026-03-24 02:07:15 +08:00
isToday ,
locale ,
upperAirSignal . heating_setup ,
upperAirSignal . source ,
2026-04-13 18:42:27 +08:00
showDeferredTodaySections ,
2026-03-24 02:07:15 +08:00
]);
2026-03-10 09:02:56 +08:00
const topObservedTemp =
detail . current ? . max_so_far != null
? detail.current.max_so_far
: detail.current?.temp ;
const currentTempText =
detail . current ? . temp != null
? ` ${ detail . current . temp }${ detail . temp_symbol } `
: "--" ;
2026-03-27 23:34:48 +08:00
const daylightProgress = (() => {
const now = parseClockMinutes ( detail . current ? . obs_time );
const sunrise = parseClockMinutes ( detail . forecast ? . sunrise );
const sunset = parseClockMinutes ( detail . forecast ? . sunset );
if ( now == null || sunrise == null || sunset == null || sunset <= sunrise ) {
return null ;
}
const percent = clamp ((( now - sunrise ) / ( sunset - sunrise )) * 100 , 0 , 100 );
const phase =
now < sunrise ? "夜间" : now > sunset ? "已日落" : "白昼进行中" ;
return {
phase ,
percent ,
};
})();
2026-04-13 18:42:27 +08:00
const displayedUpperAirSummary = showDeferredTodaySections
2026-04-15 16:30:13 +08:00
? upperAirCue ? . summary || view . front . upperAirSummary
2026-04-13 18:42:27 +08:00
: "" ;
const displayedUpperAirMetrics = showDeferredTodaySections
? ( view . front . upperAirMetrics || []). map (( metric , index ) =>
index === 0 &&
( metric . label === "Trade cue" || metric . label === "交易动作" ) &&
2026-04-15 16:30:13 +08:00
upperAirCue
2026-04-13 18:42:27 +08:00
? {
... metric ,
2026-04-15 16:30:13 +08:00
note : upperAirCue.note ,
tone : upperAirCue.tone ,
value : upperAirCue.value ,
2026-04-13 18:42:27 +08:00
}
: metric ,
)
: [];
2026-04-08 11:41:34 +08:00
const localizedAiCommentaryLines = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return [] as string [];
2026-04-08 11:41:34 +08:00
const commentary = detail . dynamic_commentary || {};
const headline = String (
2026-04-23 22:35:34 +08:00
locale === "en-US"
? commentary . headline_en || ""
: commentary . headline_zh || "" ,
2026-04-08 11:41:34 +08:00
). trim ();
const bullets = (
locale === "en-US" ? commentary.bullets_en : commentary.bullets_zh
) as string [] | null | undefined ;
const cleanedBullets = Array . isArray ( bullets )
? bullets . map (( item ) => String ( item || "" ). trim ()). filter ( Boolean )
: [];
return [ headline , ... cleanedBullets ]. filter ( Boolean ). slice ( 0 , 3 );
2026-04-13 18:42:27 +08:00
}, [ detail . dynamic_commentary , locale , showDeferredTodaySections ]);
2026-04-08 11:16:51 +08:00
const todayTradeSummaryLines = useMemo (() => {
2026-04-13 18:42:27 +08:00
if ( ! showDeferredTodaySections ) return [] as string [];
2026-04-08 11:16:51 +08:00
if ( ! isToday ) return [] as string [];
2026-04-08 11:41:34 +08:00
if ( localizedAiCommentaryLines . length > 0 ) {
return localizedAiCommentaryLines ;
}
2026-04-08 11:16:51 +08:00
const lines : string [] = [];
if ( paceView ) {
const headline =
paceView . biasTone === "warm"
? locale === "en-US"
2026-04-08 11:41:34 +08:00
? `Pace is running hot by ${ paceView . deltaText } ; the day high still leans above the base curve.`
: `节奏偏热 ${ paceView . deltaText } ,日高仍偏向落在基础曲线之上。`
2026-04-08 11:16:51 +08:00
: paceView . biasTone === "cold"
? locale === "en-US"
2026-04-08 11:41:34 +08:00
? `Pace is trailing by ${ paceView . deltaText } ; chasing higher buckets needs caution.`
: `节奏落后 ${ paceView . deltaText } ,继续追更高温区间要更谨慎。`
2026-04-08 11:16:51 +08:00
: locale === "en-US"
2026-04-08 11:41:34 +08:00
? "Pace is still on curve; the next move depends on the peak-window push."
: "节奏目前贴着曲线走,下一步主要看峰值窗口还有没有上冲。" ;
2026-04-08 11:16:51 +08:00
lines . push ( headline );
}
if ( boundaryRiskView ) {
lines . push (
locale === "en-US"
2026-04-08 11:41:34 +08:00
? ` ${ boundaryRiskView . label } : ${ boundaryRiskView . note } `
: ` ${ boundaryRiskView . label } : ${ boundaryRiskView . note } ` ,
2026-04-08 11:16:51 +08:00
);
}
if ( networkLeadView ) {
lines . push (
locale === "en-US"
2026-04-08 11:41:34 +08:00
? ` ${ networkLeadView . label } : ${ networkLeadView . note } `
: ` ${ networkLeadView . label } : ${ networkLeadView . note } ` ,
2026-04-08 11:16:51 +08:00
);
}
2026-04-08 11:41:34 +08:00
return lines . slice ( 0 , 3 );
2026-04-23 22:35:34 +08:00
}, [
boundaryRiskView ,
isToday ,
locale ,
localizedAiCommentaryLines ,
networkLeadView ,
paceView ,
showDeferredTodaySections ,
]);
2026-04-16 17:13:53 +08:00
const intradayMeteorology = detail . intraday_meteorology || {};
2026-04-23 22:35:34 +08:00
const meteorologySignals = Array . isArray (
intradayMeteorology . signal_contributions ,
)
2026-04-16 17:13:53 +08:00
? intradayMeteorology . signal_contributions
: [];
2026-04-16 17:34:39 +08:00
const invalidationRules = localizedList (
locale ,
intradayMeteorology . invalidation_rules ,
intradayMeteorology . invalidation_rules_en ,
);
const confirmationRules = localizedList (
locale ,
intradayMeteorology . confirmation_rules ,
intradayMeteorology . confirmation_rules_en ,
);
2026-04-16 17:13:53 +08:00
const meteorologyHeadline =
2026-04-16 17:34:39 +08:00
localizedText (
locale ,
intradayMeteorology . headline ,
intradayMeteorology . headline_en ,
) ||
2026-04-16 17:13:53 +08:00
todayTradeSummaryLines [ 0 ] ||
( locale === "en-US"
? "Intraday meteorology layers are still syncing; use the next observation as the anchor."
: "关键日内气象层仍在同步,先以下一次观测作为判断锚点。" );
const baseCaseBucket =
String ( intradayMeteorology . base_case_bucket || "" ). trim () ||
formatBucketLabel ( topProbabilityBucket );
const nextObservationTime =
String ( intradayMeteorology . next_observation_time || "" ). trim () || "--" ;
const baseBucketNumber = parseLeadingNumber ( baseCaseBucket );
const referenceObservedTemp =
topObservedTemp != null && Number . isFinite ( Number ( topObservedTemp ))
? Number ( topObservedTemp )
: detail . current ? . temp != null
? Number ( detail . current . temp )
: null ;
const gapToBaseBucket =
baseBucketNumber != null && referenceObservedTemp != null
? Math . max ( 0 , baseBucketNumber - referenceObservedTemp )
: null ;
const pathStatus =
gapToBaseBucket == null
? locale === "en-US"
? "Awaiting anchor"
: "等待锚点"
: gapToBaseBucket <= 0.05
? locale === "en-US"
? "Base path touched"
: "基准路径已触达"
: gapToBaseBucket <= 1.0
? locale === "en-US"
? "Base path open"
: "基准路径开放"
: locale === "en-US"
? "Needs peak push"
: "需要峰值推动" ;
const peakWindowText =
String ( intradayMeteorology . peak_window || "" ). trim () ||
paceView ? . peakWindowText ||
"--" ;
2026-04-22 23:43:27 +08:00
const settlementSourceCode = normalizeObservationSourceCode (
2026-04-17 00:19:47 +08:00
detail . current ? . settlement_source || "" ,
2026-04-22 23:43:27 +08:00
);
2026-04-17 00:19:47 +08:00
const settlementStationCode = String (
detail . current ? . station_code || detail . risk ? . icao || "" ,
)
. trim ()
. toUpperCase ();
const settlementStationName =
String ( detail . current ? . station_name || detail . risk ? . airport || "" ). trim () ||
settlementStationCode ||
( locale === "en-US" ? "Anchor station" : "锚点站" );
const airportMetarAnchor =
settlementSourceCode === "metar" ||
Boolean ( settlementStationCode && /^[A-Z]{4}$/ . test ( settlementStationCode ));
const anchorSourceLabel = airportMetarAnchor
? settlementStationCode
? ` ${ settlementStationCode } METAR`
: "METAR"
2026-04-22 23:43:27 +08:00
: normalizeObservationSourceLabel (
detail . current ? . settlement_source_label ||
detail . current ? . settlement_source ,
locale === "en-US" ? "Official observation" : "官方观测" ,
);
2026-04-17 00:19:47 +08:00
const anchorRuleText = airportMetarAnchor
? locale === "en-US"
2026-04-22 23:43:27 +08:00
? `Airport contract anchor: use the ${ anchorSourceLabel } reports. Third-party history pages are display-only when present.`
: `机场合约锚点:以 ${ anchorSourceLabel } 报文为准;第三方历史页只作为展示入口。`
2026-04-17 00:19:47 +08:00
: locale === "en-US"
? `Official anchor: use ${ anchorSourceLabel } observations for this contract.`
: `官方锚点:该合约按 ${ anchorSourceLabel } 观测口径判断。` ;
const nextObservationLabel = airportMetarAnchor
? locale === "en-US"
? "Next METAR watch"
: "下一次 METAR 观察"
: locale === "en-US"
? "Next anchor watch"
: "下一次锚点观察" ;
const gapToBaseText =
gapToBaseBucket == null
? "--"
: ` ${ gapToBaseBucket . toFixed ( 1 ) }${ detail . temp_symbol || "°C" } ` ;
2026-04-13 11:19:24 +08:00
const syncStatusItems = [
{
key : "base" ,
2026-04-17 21:08:26 +08:00
state : isAnyLayerSyncing ? "syncing" : "ready" ,
2026-04-23 22:35:34 +08:00
label : isAnyLayerSyncing
? locale === "en-US"
? "Refreshing base analysis"
: "正在刷新基础分析"
: locale === "en-US"
? "Base analysis ready"
: "基础分析已加载" ,
note : isAnyLayerSyncing
? locale === "en-US"
? "Latest anchor readings and forecast curve are being rebuilt."
: "正在重建最新锚点读数和预测曲线。"
: locale === "en-US"
? "Forecast curve, anchor state, and the core intraday view are available."
: "预测曲线、锚点状态和核心日内视图已经可用。" ,
2026-04-13 11:19:24 +08:00
},
{
key : "market" ,
2026-04-17 21:08:26 +08:00
state : isAnyLayerSyncing ? "syncing" : "ready" ,
2026-04-23 22:35:34 +08:00
label : isAnyLayerSyncing
? locale === "en-US"
? "Refreshing probability layer"
: "正在刷新概率层"
: locale === "en-US"
? "Probability layer ready"
: "概率层已加载" ,
note : isAnyLayerSyncing
? locale === "en-US"
? "Model spread and calibrated buckets are updating."
: "模型分歧和校准概率桶正在更新。"
: locale === "en-US"
? `Probability buckets are derived from the ${ probabilityEngineLabel } layer.`
: `概率桶当前由 ${ probabilityEngineLabel } 层推导。` ,
2026-04-13 11:19:24 +08:00
},
2026-04-28 20:19:17 +08:00
] satisfies FutureSyncStatusItem [];
2026-03-09 10:36:03 +08:00
return (
< div
className = "modal-overlay"
role = "dialog"
aria-modal = "true"
aria-labelledby = "future-modal-title"
onClick = {( event ) => {
if ( event . target === event . currentTarget ) {
store . closeFutureModal ();
}
}}
>
2026-03-13 07:56:20 +08:00
{ isProLoading ? (
< div
className = "modal-content large"
style = {{ padding : "40px" , textAlign : "center" }}
>
< div style = {{ color : "var(--text-muted)" }}>
{ t ( "dashboard.loading" )}
</ div >
</ div >
) : ! isPro ? (
< ProFeaturePaywall
feature = { isToday ? "today" : "future" }
onClose = { store . closeFutureModal }
/>
) : (
< div className = "modal-content large future-modal" >
< div className = "modal-header" >
2026-04-15 23:51:54 +08:00
< div className = "modal-title-stack" >
< div className = "modal-overline" >
2026-04-23 22:35:34 +08:00
< span >
{ locale === "en-US" ? "Analysis workspace" : "分析工作台" }
</ span >
2026-04-15 23:51:54 +08:00
< span className = "modal-overline-sep" > • </ span >
< span >{ detail . display_name . toUpperCase ()}</ span >
</ div >
< h2
id = "future-modal-title"
className = "future-modal-title-with-actions"
2026-03-13 07:56:20 +08:00
>
2026-04-15 23:51:54 +08:00
< span >
{ isToday
? t ( "future.todayTitle" , {
city : detail.display_name.toUpperCase (),
})
: t ( "future.dateTitle" , {
city : detail.display_name.toUpperCase (),
date : dateStr ,
})}
</ span >
< button
className = { clsx (
"future-refresh-btn" ,
isAnyLayerSyncing && "spinning" ,
)}
disabled = { ! isPro || isProLoading }
onClick = {() => {
if ( isToday ) {
void store . openTodayModal ( true );
return ;
}
store . openFutureModal ( dateStr , true );
}}
title = {
! isPro
? locale === "en-US"
? "Pro subscription required"
: "需要 Pro 订阅"
: locale === "en-US"
? "Refresh Data"
: "刷新数据"
}
2026-03-13 07:56:20 +08:00
>
2026-04-15 23:51:54 +08:00
< svg
width = "14"
height = "14"
viewBox = "0 0 24 24"
fill = "none"
stroke = "currentColor"
strokeWidth = "2.5"
strokeLinecap = "round"
strokeLinejoin = "round"
>
< path d = "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
< path d = "M3 3v5h5" />
</ svg >
</ button >
</ h2 >
< div className = "modal-subtitle" >
{ isToday
? locale === "en-US"
2026-04-16 00:24:30 +08:00
? "Base signal first, then probability and model layers."
: "先看基础信号,再看概率层和模型层。"
2026-04-15 23:51:54 +08:00
: locale === "en-US"
? "Forward date view with phased model and structure sync."
: "未来日期视图,模型层与结构层分阶段补齐。" }
</ div >
</ div >
2026-03-13 07:56:20 +08:00
< button
type = "button"
className = "modal-close"
aria-label = {
isToday ? t ( "future.closeTodayAria" ) : t ( "future.closeDateAria" )
2026-03-13 06:41:33 +08:00
}
2026-03-13 07:56:20 +08:00
onClick = { store . closeFutureModal }
2026-03-10 09:02:56 +08:00
>
2026-03-13 07:56:20 +08:00
×
2026-03-10 09:02:56 +08:00
</ button >
2026-03-13 07:56:20 +08:00
</ div >
2026-04-17 21:08:26 +08:00
< div
className = { clsx (
"modal-body future-modal-body" ,
isTodayBlockingRefresh && "future-modal-body-refreshing" ,
)}
>
2026-04-28 20:19:17 +08:00
{ isTodayBlockingRefresh && < FutureRefreshLock locale = { locale } />}
2026-04-16 17:13:53 +08:00
{ isToday && (
2026-04-28 20:19:17 +08:00
< FutureForecastTodayDecisionBrief
anchorRuleText = { anchorRuleText }
anchorSourceLabel = { anchorSourceLabel }
baseCaseBucket = { baseCaseBucket }
confidence = { intradayMeteorology . confidence }
displayName = { detail . display_name }
downsideBucket = { intradayMeteorology . downside_bucket }
gapToBaseText = { gapToBaseText }
locale = { locale }
meteorologyHeadline = { meteorologyHeadline }
nextObservationLabel = { nextObservationLabel }
nextObservationTime = { nextObservationTime }
pathStatus = { pathStatus }
settlementStationName = { settlementStationName }
upsideBucket = { intradayMeteorology . upside_bucket }
/>
2026-04-16 17:13:53 +08:00
)}
2026-04-28 20:19:17 +08:00
< FutureSyncStatusStrip items = { syncStatusItems } compact = { isToday } />
2026-03-27 20:58:38 +08:00
{ isNoaaSettlement && (
2026-04-15 23:51:54 +08:00
< div className = "modal-callout modal-callout-info" >
2026-03-23 14:39:41 +08:00
{ locale === "en-US"
2026-03-27 20:58:38 +08:00
? ` ${ detail . display_name } now settles against NOAA ${ noaaStationCode } ( ${ noaaStationName } ). The market uses the highest rounded whole-degree Celsius reading in the Temp column after the day is finalized.`
: ` ${ detail . display_name } 当前按 NOAA ${ noaaStationCode } ( ${ noaaStationName } )结算。市场最终采用该日 Temp 列完成质控后的最高整度摄氏值,不按小数温度结算。` }
2026-03-23 14:39:41 +08:00
</ div >
)}
2026-03-13 07:56:20 +08:00
{ isToday ? (
< div className = "future-v2-layout" >
< aside className = "future-v2-left" >
2026-04-28 20:19:17 +08:00
< FutureAnchorStatusCard
locale = { locale }
currentTempText = { currentTempText }
weatherSummary = { weatherSummary }
obsTime = { detail . current ? . obs_time }
daylightProgress = { daylightProgress }
sunrise = { detail . forecast ? . sunrise }
sunset = { detail . forecast ? . sunset }
topObservedTemp = { topObservedTemp }
tempSymbol = { detail . temp_symbol }
gapToBaseBucket = { gapToBaseBucket }
pathStatus = { pathStatus }
/>
2026-03-10 09:02:56 +08:00
2026-04-13 18:42:27 +08:00
{ showDeferredTodaySections && paceView ? (
2026-04-28 20:19:17 +08:00
< FuturePaceCard
locale = { locale }
paceView = { paceView }
tempSymbol = { detail . temp_symbol }
signalItems = { paceSignalItems }
/>
2026-04-13 18:42:27 +08:00
) : isToday ? (
2026-04-28 20:19:17 +08:00
< FuturePaceLoadingCard locale = { locale } />
2026-04-08 10:33:58 +08:00
) : null }
2026-03-13 07:56:20 +08:00
</ aside >
< main className = "future-v2-right" >
< section className = "future-modal-section future-v2-main-chart" >
2026-04-15 23:51:54 +08:00
< div className = "modal-section-heading" >
< div className = "modal-section-kicker" >
{ locale === "en-US" ? "Primary view" : "主视图" }
</ div >
< h3 >
{ locale === "en-US"
2026-04-17 00:19:47 +08:00
? "Today's temperature path (anchor obs + models)"
: "今日气温路径(锚点观测 + 模型)" }
2026-04-15 23:51:54 +08:00
</ h3 >
</ div >
2026-04-28 20:19:17 +08:00
< FutureTemperaturePathChart dateStr = { dateStr } forceToday = { isToday } />
2026-04-16 17:13:53 +08:00
< div className = "future-v2-chart-thresholds" >
2026-04-23 22:35:34 +08:00
< span >
{ locale === "en-US" ? "Base" : "基准" } · { " " }
{ baseCaseBucket || "--" }
</ span >
< span >
{ locale === "en-US" ? "Upside" : "上修" } · { " " }
{ intradayMeteorology . upside_bucket || "--" }
</ span >
< span >
{ locale === "en-US" ? "Invalidates at" : "失效观察" } · { " " }
{ nextObservationTime }
</ span >
2026-04-16 17:13:53 +08:00
</ div >
2026-03-10 09:02:56 +08:00
</ section >
2026-04-28 20:19:17 +08:00
< FutureForecastTodayEvidenceGrid
airportMetarAnchor = { airportMetarAnchor }
confirmationRules = { confirmationRules }
invalidationRules = { invalidationRules }
locale = { locale }
meteorologySignals = { meteorologySignals }
modelSummary = { modelSummary }
/>
2026-04-16 17:13:53 +08:00
2026-03-13 07:56:20 +08:00
< div className = "future-modal-grid" >
< section className = "future-modal-section" >
2026-04-15 23:51:54 +08:00
< div className = "modal-section-heading" >
< div className = "modal-section-kicker" >
2026-04-17 20:53:37 +08:00
{ locale === "en-US" ? "Probability read" : "概率判断" }
2026-04-15 23:51:54 +08:00
</ div >
2026-04-23 22:35:34 +08:00
< h3 >{ probabilityTitle }</ h3 >
2026-04-15 23:51:54 +08:00
</ div >
2026-04-23 22:35:34 +08:00
< div
className = "future-text-block"
style = {{ marginBottom : "12px" }}
>
2026-04-08 11:16:51 +08:00
{ probabilitySummary }
</ div >
2026-03-13 07:56:20 +08:00
< div style = {{ position : "relative" , minHeight : "120px" }}>
2026-04-28 20:19:17 +08:00
< FutureProbabilityPanel
2026-03-13 07:56:20 +08:00
detail = { detail }
targetDate = { dateStr }
2026-04-21 23:01:38 +08:00
marketScan = { activeMarketScan }
2026-03-13 07:56:20 +08:00
hideTitle
2026-03-10 09:02:56 +08:00
/>
</ div >
2026-03-13 07:56:20 +08:00
</ section >
< section className = "future-modal-section" >
2026-04-15 23:51:54 +08:00
< div className = "modal-section-heading" >
< div className = "modal-section-kicker" >
{ locale === "en-US" ? "Model layer" : "模型层" }
</ div >
< h3 >
2026-04-23 22:35:34 +08:00
{ locale === "en-US"
? "Model Range & Spread"
: "模型区间与分歧" }
2026-04-15 23:51:54 +08:00
</ h3 >
</ div >
2026-04-23 22:35:34 +08:00
< div
className = "future-text-block"
style = {{ marginBottom : "12px" }}
>
2026-04-08 11:16:51 +08:00
{ modelSummary }
</ div >
2026-04-28 20:19:17 +08:00
< FutureModelForecastPanel
2026-03-13 07:56:20 +08:00
detail = { detail }
targetDate = { dateStr }
hideTitle
/>
</ section >
</ div >
</ main >
2026-03-09 10:36:03 +08:00
</ div >
2026-03-13 07:56:20 +08:00
) : (
2026-04-28 20:19:17 +08:00
< FutureForecastForwardView
dateStr = { dateStr }
detail = { detail }
t = { t }
view = { view }
/>
2026-03-13 07:56:20 +08:00
)}
</ div >
2026-03-09 10:36:03 +08:00
</ div >
2026-03-13 07:56:20 +08:00
)}
2026-03-09 10:36:03 +08:00
</ div >
);
}