Skip to content

Commit c077dae

Browse files
bestbeforetodaydenyeart
authored andcommitted
Update TypeScript implementations
- Dependency updates - ESLint flat configuration format, replacing deprecated configuration - Minor fixes to compile and lint issues - Consistent TypeScript formatting with .editorconfig Signed-off-by: Mark S. Lewis <[email protected]>
1 parent a4f0a2c commit c077dae

File tree

87 files changed

+6281
-4341
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+6281
-4341
lines changed

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
9+
[*.ts]
10+
indent_size = 4
11+
quote_type = single
12+
13+
[*.json]
14+
indent_size = 4
15+
16+
[*.md]
17+
max_line_length = off

asset-transfer-basic/application-gateway-typescript/.eslintrc.json

-45
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import js from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
4+
export default tseslint.config(js.configs.recommended, ...tseslint.configs.strictTypeChecked, {
5+
languageOptions: {
6+
ecmaVersion: 2023,
7+
sourceType: 'module',
8+
parserOptions: {
9+
project: 'tsconfig.json',
10+
tsconfigRootDir: import.meta.dirname,
11+
},
12+
},
13+
});

asset-transfer-basic/application-gateway-typescript/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"scripts": {
1111
"build": "tsc",
1212
"build:watch": "tsc -w",
13-
"lint": "eslint . --ext .ts",
13+
"lint": "eslint src",
1414
"prepare": "npm run build",
1515
"pretest": "npm run lint",
1616
"start": "node dist/app.js"
@@ -19,15 +19,15 @@
1919
"author": "Hyperledger",
2020
"license": "Apache-2.0",
2121
"dependencies": {
22-
"@grpc/grpc-js": "^1.9.7",
23-
"@hyperledger/fabric-gateway": "~1.4.0"
22+
"@grpc/grpc-js": "^1.10",
23+
"@hyperledger/fabric-gateway": "^1.5"
2424
},
2525
"devDependencies": {
26+
"@eslint/js": "^9.3.0",
2627
"@tsconfig/node18": "^18.2.2",
2728
"@types/node": "^18.18.6",
28-
"@typescript-eslint/eslint-plugin": "^6.9.0",
29-
"@typescript-eslint/parser": "^6.9.0",
30-
"eslint": "^8.52.0",
31-
"typescript": "~5.2.2"
29+
"eslint": "^8.57.0",
30+
"typescript": "~5.4",
31+
"typescript-eslint": "^7.13.0"
3232
}
3333
}

asset-transfer-basic/application-gateway-typescript/src/app.ts

+12-9
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ const peerEndpoint = envOrDefault('PEER_ENDPOINT', 'localhost:7051');
3434
const peerHostAlias = envOrDefault('PEER_HOST_ALIAS', 'peer0.org1.example.com');
3535

3636
const utf8Decoder = new TextDecoder();
37-
const assetId = `asset${Date.now()}`;
37+
const assetId = `asset${String(Date.now())}`;
3838

3939
async function main(): Promise<void> {
40-
41-
await displayInputParameters();
40+
displayInputParameters();
4241

4342
// The gRPC client connection should be shared by all Gateway connections to this endpoint.
4443
const client = await newGrpcConnection();
@@ -92,7 +91,7 @@ async function main(): Promise<void> {
9291
}
9392
}
9493

95-
main().catch(error => {
94+
main().catch((error: unknown) => {
9695
console.error('******** FAILED to run the application:', error);
9796
process.exitCode = 1;
9897
});
@@ -113,7 +112,11 @@ async function newIdentity(): Promise<Identity> {
113112

114113
async function getFirstDirFileName(dirPath: string): Promise<string> {
115114
const files = await fs.readdir(dirPath);
116-
return path.join(dirPath, files[0]);
115+
const file = files[0];
116+
if (!file) {
117+
throw new Error(`No files in directory: ${dirPath}`);
118+
}
119+
return path.join(dirPath, file);
117120
}
118121

119122
async function newSigner(): Promise<Signer> {
@@ -144,7 +147,7 @@ async function getAllAssets(contract: Contract): Promise<void> {
144147
const resultBytes = await contract.evaluateTransaction('GetAllAssets');
145148

146149
const resultJson = utf8Decoder.decode(resultBytes);
147-
const result = JSON.parse(resultJson);
150+
const result: unknown = JSON.parse(resultJson);
148151
console.log('*** Result:', result);
149152
}
150153

@@ -183,7 +186,7 @@ async function transferAssetAsync(contract: Contract): Promise<void> {
183186

184187
const status = await commit.getStatus();
185188
if (!status.successful) {
186-
throw new Error(`Transaction ${status.transactionId} failed to commit with status code ${status.code}`);
189+
throw new Error(`Transaction ${status.transactionId} failed to commit with status code ${String(status.code)}`);
187190
}
188191

189192
console.log('*** Transaction committed successfully');
@@ -195,7 +198,7 @@ async function readAssetByID(contract: Contract): Promise<void> {
195198
const resultBytes = await contract.evaluateTransaction('ReadAsset', assetId);
196199

197200
const resultJson = utf8Decoder.decode(resultBytes);
198-
const result = JSON.parse(resultJson);
201+
const result: unknown = JSON.parse(resultJson);
199202
console.log('*** Result:', result);
200203
}
201204

@@ -230,7 +233,7 @@ function envOrDefault(key: string, defaultValue: string): string {
230233
/**
231234
* displayInputParameters() will print the global scope parameters used by the main driver routine.
232235
*/
233-
async function displayInputParameters(): Promise<void> {
236+
function displayInputParameters(): void {
234237
console.log(`channelName: ${channelName}`);
235238
console.log(`chaincodeName: ${chaincodeName}`);
236239
console.log(`mspId: ${mspId}`);
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{
2-
"extends":"@tsconfig/node18/tsconfig.json",
3-
"compilerOptions": {
4-
"experimentalDecorators": true,
5-
"emitDecoratorMetadata": true,
6-
"outDir": "dist",
7-
"declaration": true,
8-
"sourceMap": true,
9-
"noImplicitAny": true
10-
},
11-
"include": [
12-
"./src/**/*"
13-
],
14-
"exclude": [
15-
"./src/**/*.spec.ts"
16-
]
2+
"extends": "@tsconfig/node18/tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"declaration": true,
6+
"declarationMap": true,
7+
"sourceMap": true,
8+
"noUnusedLocals": true,
9+
"noImplicitReturns": true,
10+
"noUncheckedIndexedAccess": true,
11+
"forceConsistentCasingInFileNames": true
12+
},
13+
"include": ["./src/**/*"],
14+
"exclude": ["./src/**/*.spec.ts"]
1715
}

asset-transfer-basic/chaincode-typescript/src/asset.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ export class Asset {
1010
public docType?: string;
1111

1212
@Property()
13-
public ID: string;
13+
public ID: string = '';
1414

1515
@Property()
16-
public Color: string;
16+
public Color: string = '';
1717

1818
@Property()
19-
public Size: number;
19+
public Size: number = 0;
2020

2121
@Property()
22-
public Owner: string;
22+
public Owner: string = '';
2323

2424
@Property()
25-
public AppraisedValue: number;
25+
public AppraisedValue: number = 0;
2626
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.ts]
2+
indent_size = 4
3+
quote_type = single

asset-transfer-basic/rest-api-typescript/.prettierrc.json

-3
This file was deleted.

0 commit comments

Comments
 (0)