This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| confirmBuy$ = createEffect( | |
| () => | |
| this.actions$.pipe( | |
| ofType(PurchaseContractActions.confirmBuy), | |
| withLatestFrom( | |
| this.store$.pipe(select(fromStore.getSelectedPurchaseContract))), | |
| switchMap(([payload, contract]) => { | |
| const dialogConfig = new MatDialogConfig(); | |
| dialogConfig.width = '420px'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public removePurchaseContract(productKey: string): Observable<string> { | |
| const bytes32Key = utils.formatBytes32String(productKey); | |
| const token = this.contractToken.removeContractByKey(bytes32Key); | |
| return from(token) | |
| .pipe( | |
| switchMap((tx: any) => { | |
| console.log('removeContractByKey Transaction', tx); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| removeProduct$ = createEffect( | |
| () => | |
| this.actions$.pipe( | |
| ofType(PurchaseContractActions.removePurchaseContract), | |
| map(payload => payload.key), | |
| switchMap(key => { | |
| const dialogConfig = new MatDialogConfig(); | |
| dialogConfig.width = '420px'; | |
| dialogConfig.disableClose = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| reload$ = createEffect( | |
| () => | |
| this.actions$.pipe( | |
| ofType( | |
| PurchaseContractActions.abortSelectedPurchaseContractSuccess, | |
| PurchaseContractActions.confirmBuySuccess, | |
| PurchaseContractActions.confirmDeliverySuccess, | |
| PurchaseContractActions.releaseEscrowSuccess, | |
| PurchaseContractActions.withdrawByOwnerSuccess), | |
| withLatestFrom( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abortPurchaseContract(contractAddress: string): Observable<string> { | |
| const contract: Contract = new ethers.Contract(contractAddress, this.abi, this.provider.getSigner()); | |
| // Call the contract method, getting back the transaction tx | |
| const token = contract.abortBySeller(); | |
| return from(token) | |
| .pipe( | |
| switchMap((tx: any) => { | |
| console.log('abortBySeller Tx:', tx); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abortContract$ = createEffect( | |
| () => | |
| this.actions$.pipe( | |
| ofType(PurchaseContractActions.abortSelectedPurchaseContract), | |
| withLatestFrom( | |
| this.store$.pipe(select(fromStore.getSelectedPurchaseContract))), | |
| switchMap(([action, contract]) => { | |
| const dialogConfig = new MatDialogConfig(); | |
| dialogConfig.width = '420px'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| downloadImage$ = createEffect( | |
| () => | |
| this.actions$.pipe( | |
| ofType(IpfsImageActions.downloadImage), | |
| map((action) => action.ipfsHash), | |
| switchMap((ipfsHash: string) => | |
| this.ipfsSrv.getFile(ipfsHash).pipe( | |
| map((image: Blob) => | |
| IpfsImageActions.downloadImageSuccess({ image })), | |
| catchError((err: Error) => |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public loadPurchaseContract(contractAddress: string): | |
| Observable<PurchaseContractModel> { | |
| const contract: Contract = | |
| new ethers.Contract(contractAddress, this.abi, this.provider.getSigner()); | |
| const crObservable: Observable<number | null> = | |
| from(contract.commissionRate()).pipe( | |
| map((commission: ethers.utils.BigNumber) => commission.toNumber()), | |
| // only account with deployer or seller can retrieve this value, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const HDWalletProvider = require('@truffle/hdwallet-provider'); | |
| const { readFileSync } = require('fs'); | |
| const path = require('path'); | |
| module.exports = { | |
| networks: { | |
| ganache: { | |
| host: "127.0.0.1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| loadPurchaseContract$ = createEffect( | |
| () => this.actions$.pipe( | |
| ofType(PurchaseContractActions.loadPurchaseContract), | |
| map(action => action.address), | |
| switchMap(address => { | |
| return this.purchaseSrv.loadPurchaseContract(address).pipe( | |
| map(contract => | |
| PurchaseContractActions.loadPurchaseContractSuccess({ contract })), | |
| catchError((err: Error) => |