useTrackData.ts 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. import { CSSProperties } from 'vue'
  2. import { CommonData, MaybeRef } from '~/common'
  3. interface TrackNode {
  4. name: string
  5. nodeCode: string
  6. flag: boolean
  7. labelWidth?: number
  8. descriptions: string[]
  9. }
  10. interface TrackAirport {
  11. airport: string
  12. isDeparture: boolean
  13. trackSteps: TrackNode[]
  14. }
  15. interface TrackAirline {
  16. flightNO: string
  17. flightDate: string
  18. airports: TrackAirport[]
  19. }
  20. const trackNodesMap = {
  21. departure: [
  22. {
  23. name: '收货核单',
  24. nodeCode: 'DEH',
  25. },
  26. {
  27. name: '查验',
  28. nodeCode: 'ACC_CHECK',
  29. },
  30. {
  31. name: '安检',
  32. nodeCode: '安检', // 暂无
  33. },
  34. {
  35. name: '加货',
  36. nodeCode: 'LS_CARGO',
  37. },
  38. {
  39. name: '待运区',
  40. nodeCode: 'WAT_LOC',
  41. },
  42. {
  43. name: '货站交接',
  44. nodeCode: 'CARGOS_DEP_ULD_HANDOVER',
  45. },
  46. {
  47. name: '机下交接',
  48. nodeCode: '出港货邮',
  49. },
  50. {
  51. name: '装机',
  52. nodeCode: '装载完成',
  53. },
  54. {
  55. name: '拉下',
  56. nodeCode: 'CARGOS_OFFLOAD',
  57. },
  58. {
  59. name: '拉回',
  60. nodeCode: 'OFFLOAD_CONFIRM',
  61. },
  62. // {
  63. // name: '起飞',
  64. // nodeCode: 'TAKEOFF', // 待定
  65. // },
  66. {
  67. name: '退运',
  68. nodeCode: 'BILL_RETURN',
  69. },
  70. ],
  71. arrival: [
  72. {
  73. name: '卸机',
  74. nodeCode: 'CARGOS_ARR_HANDOVER',
  75. },
  76. {
  77. name: '机下交接',
  78. nodeCode: 'CARGOS_HANDOVER_STATUS',
  79. },
  80. {
  81. name: '货站交接',
  82. nodeCode: '货站交接', // 暂无
  83. },
  84. {
  85. name: '理货',
  86. nodeCode: 'IMP_TALLY',
  87. },
  88. {
  89. name: '出库',
  90. nodeCode: 'FSU_DLV',
  91. },
  92. ],
  93. internationalDeparture: [],
  94. internationalArrival: [],
  95. }
  96. export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
  97. const isInternational = name.includes('International')
  98. const trackAirlines = ref<TrackAirline[]>([])
  99. const getTrackAirlines = () => {
  100. const airlines = unref(trackData).reduce(
  101. (
  102. airlines,
  103. {
  104. flightNO,
  105. flightDate,
  106. departureAirport,
  107. arriveAirport,
  108. nodeCode,
  109. execPosition,
  110. ConsignmentItemPackagingQuantityQuantity,
  111. execResult,
  112. execTime,
  113. }
  114. ) => {
  115. if (
  116. !nodeCode ||
  117. Object.values(trackNodesMap)
  118. .flat()
  119. .every(node => node.nodeCode !== nodeCode)
  120. ) {
  121. return airlines
  122. }
  123. const isDeparture = [
  124. 'DEH',
  125. 'ACC_CHECK',
  126. '安检',
  127. 'ACC_BUP',
  128. 'WAT_LOC',
  129. 'CARGOS_DEP_ULD_HANDOVER',
  130. '出港货邮',
  131. '装载完成',
  132. 'CARGOS_OFFLOAD',
  133. 'OFFLOAD_CONFIRM',
  134. 'BILL_RETURN',
  135. ].includes(String(nodeCode))
  136. const airport = isDeparture
  137. ? String(departureAirport ?? '')
  138. : String(arriveAirport ?? '')
  139. const trackNode = {
  140. flag: Boolean(
  141. execPosition ||
  142. ConsignmentItemPackagingQuantityQuantity ||
  143. execResult ||
  144. execTime
  145. ),
  146. descriptions: [
  147. String(execPosition ?? ''),
  148. String(ConsignmentItemPackagingQuantityQuantity ?? ''),
  149. String(execResult ?? ''),
  150. String(execTime ?? '').split('T')[1] ?? '',
  151. ],
  152. }
  153. const nodeList = trackNodesMap[
  154. isDeparture
  155. ? isInternational
  156. ? 'internationalDeparture'
  157. : 'departure'
  158. : isInternational
  159. ? 'internationalArrival'
  160. : 'arrival'
  161. ].map(node => {
  162. if (node.nodeCode === nodeCode) {
  163. return {
  164. ...node,
  165. ...trackNode,
  166. }
  167. } else {
  168. return {
  169. ...node,
  170. flag: false,
  171. descriptions: [],
  172. }
  173. }
  174. })
  175. const airline = airlines.find(
  176. airline =>
  177. airline.flightNO === flightNO &&
  178. airline.flightDate === airline.flightDate
  179. )
  180. if (airline) {
  181. const trackAirport = airline.airports.find(
  182. trackAirport => trackAirport.airport === airport
  183. )
  184. if (trackAirport) {
  185. trackAirport.trackSteps = trackAirport.trackSteps.map(node => {
  186. if (node.nodeCode === nodeCode) {
  187. node = {
  188. ...node,
  189. ...trackNode,
  190. }
  191. }
  192. return node
  193. })
  194. } else {
  195. airline.airports.push({
  196. airport,
  197. isDeparture: isDeparture,
  198. trackSteps: nodeList,
  199. })
  200. }
  201. } else {
  202. airlines.push({
  203. flightNO: String(flightNO ?? ''),
  204. flightDate: String(flightDate ?? ''),
  205. airports: [
  206. {
  207. airport,
  208. isDeparture: isDeparture,
  209. trackSteps: nodeList,
  210. },
  211. ],
  212. })
  213. }
  214. return airlines
  215. },
  216. [] as TrackAirline[]
  217. )
  218. trackAirlines.value = airlines.map(airline => {
  219. return {
  220. ...airline,
  221. airports:
  222. name.includes('Departure') === airline.airports[0].isDeparture
  223. ? airline.airports
  224. : airline.airports.reverse(),
  225. }
  226. })
  227. }
  228. watch(trackData, () => {
  229. getTrackAirlines()
  230. })
  231. const trackBoxStyle = computed(
  232. () => (airports: TrackAirport[], index: number) => {
  233. const style: CSSProperties = {}
  234. const totalLength = airports.reduce((pre, current) => {
  235. return pre + current.trackSteps.length - 1
  236. }, 0)
  237. style.width = totalLength
  238. ? `calc((100% - ${airports.length - 1} * 8px) * ${
  239. (airports[index].trackSteps.length - 1) / totalLength
  240. })`
  241. : '100%'
  242. return style
  243. }
  244. )
  245. return {
  246. trackAirlines,
  247. trackBoxStyle,
  248. }
  249. }