@@ -3,7 +3,8 @@ import styled from "@emotion/styled";
3
3
import fastXml from "fast-xml-parser" ;
4
4
import pdfJS from "pdfjs-dist" ;
5
5
import { spacing , colors , fontSizes , radii } from "../constants" ;
6
- import { ObservableCell , SessionStore } from "../components" ;
6
+ import { ObservableCell } from "../components" ;
7
+ import { SessionStore } from "../library/session-store" ;
7
8
8
9
//Upload page specific css/html
9
10
export const UploadButton = styled ( "div" ) `
@@ -121,6 +122,7 @@ export default class FileUpload extends React.Component {
121
122
constructor ( props , context ) {
122
123
super ( props , context ) ;
123
124
125
+ //Make sure that the worker version matches package.json pdfjs-dist version.
124
126
pdfJS . GlobalWorkerOptions . workerSrc = 'https://cdn.jsdelivr.net/npm/[email protected] /build/pdf.worker.js' ;
125
127
126
128
this . handleUpload = this . handleUpload . bind ( this ) ;
@@ -257,6 +259,7 @@ export default class FileUpload extends React.Component {
257
259
handleXMLFile ( reader ) {
258
260
if ( fastXml . validate ( reader . target . result ) === true ) {
259
261
var parsedText = fastXml . parse ( reader . target . result , { ignoreAttributes : false } )
262
+ console . log ( parsedText )
260
263
var earningsJSON = JSON . stringify ( parsedText )
261
264
SessionStore . push ( 'earnings' , earningsJSON )
262
265
this . setState ( {
@@ -266,23 +269,36 @@ export default class FileUpload extends React.Component {
266
269
}
267
270
268
271
//Parse PDF file
269
- handlePDFFile ( reader ) {
272
+ async handlePDFFile ( reader ) {
270
273
//Returns first page of document
271
274
var combinedValues = [ ]
272
- pdfJS . getDocument ( reader . target . result ) . promise
273
- . then (
274
- ssaDoc => ssaDoc . getPage ( 3 ) ) . then ( earningsPage => earningsPage . getTextContent ( ) )
275
- . then ( ( doc ) => {
276
- doc . items . forEach ( ( item ) => {
277
-
278
- var filter = Number ( item . str . replace ( "," , "" ) . replace ( " " , "" ) )
279
- if ( ! ( Number . isNaN ( filter ) ) ) {
280
- combinedValues . push ( filter )
281
- }
275
+ await pdfJS . getDocument ( reader . target . result ) . promise
276
+ . then ( async ssaDoc => {
277
+ var earningsPage ;
278
+ for ( var page of Array ( ssaDoc . numPages ) . keys ( ) ) {
279
+ var docPage = ssaDoc . getPage ( page + 1 )
280
+ await Promise . resolve ( docPage )
281
+ . then ( pageContent => pageContent . getTextContent ( ) )
282
+ . then ( doc => {
283
+ var textheader = doc . items . slice ( 0 , 10 )
284
+ for ( var text of textheader ) {
285
+ var textstr = text . str . replace ( / / g, "" )
286
+ if ( textstr === "YourEarningsRecord" ) {
287
+ earningsPage = doc
288
+ return
289
+ }
290
+ }
291
+ } )
292
+ }
293
+
294
+ earningsPage . items . forEach ( ( item ) => {
295
+ var filter = Number ( item . str . replace ( "," , "" ) . replace ( " " , "" ) )
296
+ if ( ! ( Number . isNaN ( filter ) ) ) {
297
+ combinedValues . push ( filter )
298
+ }
282
299
} )
283
300
} )
284
- . then ( ( ) => {
285
-
301
+
286
302
var tempRecord = this . state . defaultRecord
287
303
do {
288
304
var newvalue = combinedValues . shift ( )
@@ -293,21 +309,19 @@ export default class FileUpload extends React.Component {
293
309
'@_endYear' : newvalue ,
294
310
'osss:FicaEarnings' : combinedValues . shift ( ) ,
295
311
'osss:MedicafreEarnings' : combinedValues . shift ( )
296
- }
297
-
298
- currentRecord . push ( newrecord )
312
+ }
313
+ currentRecord . push ( newrecord )
299
314
}
300
- } while ( combinedValues . length > 0 ) } )
301
- . then ( ( ) => {
302
- var earningsJSON = JSON . stringify ( this . state . defaultRecord )
303
- SessionStore . push ( 'earnings' , earningsJSON )
304
- this . setState ( {
305
- earningsRecord : this . state . defaultRecord
306
- } )
315
+ } while ( combinedValues . length > 0 )
316
+
317
+ var earningsJSON = JSON . stringify ( this . state . defaultRecord )
318
+ SessionStore . push ( 'earnings' , earningsJSON )
319
+ this . setState ( {
320
+ earningsRecord : this . state . defaultRecord
307
321
} )
308
322
}
309
323
310
- handleUpload ( formResponse ) {
324
+ handleUpload ( formResponse ) {
311
325
this . setState ( {
312
326
displayTable : true
313
327
} ) ;
@@ -332,11 +346,7 @@ export default class FileUpload extends React.Component {
332
346
default :
333
347
alert ( "I'm sorry, that file was not recognized." )
334
348
break ;
335
- }
336
-
337
-
338
-
339
-
349
+ }
340
350
}
341
351
342
352
//Stores users input for manually entered table to allow for persistence across page changes
@@ -357,12 +367,14 @@ export default class FileUpload extends React.Component {
357
367
358
368
//Saves manually entered record to this.state.earningsRecord object, becomes noticable to Observable API
359
369
handleSave ( ) {
370
+ //Load earnings record; if not present, set default record.
360
371
var tempRecord = this . state . earningsRecord ?
361
372
this . state . earningsRecord [ 'osss:OnlineSocialSecurityStatementData' ] [ 'osss:EarningsRecord' ] [ 'osss:Earnings' ] . length === this . state . manualTable . length
362
373
? this . state . earningsRecord : this . state . defaultRecord
363
374
:
364
375
this . state . defaultRecord
365
376
377
+ //Update global earnings record with the manually inputed values
366
378
this . state . manualTable . forEach ( ( record , i ) => {
367
379
var currentRecord = tempRecord [ 'osss:OnlineSocialSecurityStatementData' ] [ 'osss:EarningsRecord' ] [ 'osss:Earnings' ]
368
380
var newrecord = {
@@ -379,6 +391,7 @@ export default class FileUpload extends React.Component {
379
391
380
392
} )
381
393
394
+ //Store earnings record and updated table
382
395
var arrayJSON = JSON . stringify ( this . state . manualTable )
383
396
SessionStore . push ( 'tableArray' , arrayJSON )
384
397
0 commit comments