Add Sigit ID as a path param #195
@ -71,18 +71,22 @@ export const SignPage = () => {
|
||||
* Received from `location.state`
|
||||
*
|
||||
* uploadedZip will be received from home page when a user uploads a sigit zip wrapper that contains keys.json
|
||||
* arrayBuffer will be received in navigation from create page in offline mode
|
||||
* meta will be received in navigation from create & home page in online mode
|
||||
* arrayBuffer (decryptedArrayBuffer) will be received in navigation from create page in offline mode
|
||||
* meta (metaInNavState) will be received in navigation from create & home page in online mode
|
||||
m marked this conversation as resolved
Outdated
|
||||
*/
|
||||
let metaInNavState = location.state.meta
|
||||
|
||||
let metaInNavState = location?.state?.meta || undefined
|
||||
const { arrayBuffer: decryptedArrayBuffer, uploadedZip } = location.state || {
|
||||
meta: undefined,
|
||||
arrayBuffer: undefined,
|
||||
decryptedArrayBuffer: undefined,
|
||||
uploadedZip: undefined
|
||||
}
|
||||
|
||||
/**
|
||||
* If userAppData (redux) is available, and we have route param (sigit id)
|
||||
m marked this conversation as resolved
Outdated
b
commented
sigit id - what is this? should be defined sigit id - what is this? should be defined
|
||||
* we will fetch a sigit based on the provided route ID and set it
|
||||
* to the metaInNavState
|
||||
*/
|
||||
if (usersAppData) {
|
||||
// Sigit id is a createEventId
|
||||
const sigitId = params.id
|
||||
|
||||
if (sigitId) {
|
||||
|
Loading…
Reference in New Issue
Block a user
We should just replace the value of
metaInNavState
without having states.We can just move it out of the destructuring and modify it if needed? Something like?