|
@@ -17,6 +17,43 @@ function getTime(time: string | null) {
|
|
|
return datetime
|
|
|
}
|
|
|
|
|
|
+function getDuration(
|
|
|
+ name: string,
|
|
|
+ takeOffStand: CommonValue
|
|
|
+): { warning: number | null; alarm: number | null } {
|
|
|
+ const subMap =
|
|
|
+ HANDOVER_WARNING_MAP[
|
|
|
+ name.includes('International') ? 'internationalDeparture' : 'departure'
|
|
|
+ ]
|
|
|
+ const stand = parseInt(String(takeOffStand))
|
|
|
+ const matchedKey = Object.keys(subMap).find(key => {
|
|
|
+ if (key.includes('-')) {
|
|
|
+ const [start, end] = key.split('-')
|
|
|
+ const min = Number(start)
|
|
|
+ const max = Number(end)
|
|
|
+ if (!Number.isNaN(min) && !Number.isNaN(max)) {
|
|
|
+ return stand >= min && stand <= max
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return key === takeOffStand
|
|
|
+ })
|
|
|
+ let { warning, alarm } = subMap[matchedKey ?? 'all'] ?? {}
|
|
|
+ if (typeof warning === 'number') {
|
|
|
+ warning *= 60 * 1000
|
|
|
+ } else {
|
|
|
+ warning = null
|
|
|
+ }
|
|
|
+ if (typeof alarm === 'number') {
|
|
|
+ alarm *= 60 * 1000
|
|
|
+ } else {
|
|
|
+ alarm = null
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ warning,
|
|
|
+ alarm,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
export function useTableStyle(tableName?: string) {
|
|
|
const rowClass = ({ row, rowIndex }) => {
|
|
|
const classes: string[] = []
|
|
@@ -119,6 +156,44 @@ export function useTableStyle(tableName?: string) {
|
|
|
classes.push('cell-warning')
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if (
|
|
|
+ tableName === 'DepartureAirport' &&
|
|
|
+ ['addCargo', 'addCargoTime'].includes(column.property)
|
|
|
+ ) {
|
|
|
+ const { endLoadTime, addCargoTime } = row
|
|
|
+ if (getTime(endLoadTime) < getTime(addCargoTime)) {
|
|
|
+ classes.push('cell-warning')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (
|
|
|
+ tableName === 'InternationalDepartureAirport' &&
|
|
|
+ ['securityYes', 'securityTime'].includes(column.property)
|
|
|
+ ) {
|
|
|
+ const { endLoadTime, securityTime } = row
|
|
|
+ if (getTime(endLoadTime) < getTime(securityTime)) {
|
|
|
+ classes.push('cell-warning')
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (
|
|
|
+ tableName?.includes('Departure') &&
|
|
|
+ ['planeDownTime'].includes(column.property)
|
|
|
+ ) {
|
|
|
+ const { planDepartureTime, planeDownTime, takeOffStand } = row
|
|
|
+ const { warning, alarm } = getDuration(tableName, takeOffStand)
|
|
|
+ if (
|
|
|
+ typeof alarm === 'number' &&
|
|
|
+ getTime(planDepartureTime) - getTime(planeDownTime) < alarm
|
|
|
+ ) {
|
|
|
+ classes.push('cell-alarm')
|
|
|
+ } else if (
|
|
|
+ typeof warning === 'number' &&
|
|
|
+ getTime(planDepartureTime) - getTime(planeDownTime) < warning
|
|
|
+ ) {
|
|
|
+ classes.push('cell-warning')
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (tableName?.includes('FlightContainer')) {
|