forked from akvelon/flutter-code-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdartpad_analyzer.dart
67 lines (57 loc) · 1.64 KB
/
dartpad_analyzer.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// ignore_for_file: avoid_dynamic_calls
import 'dart:convert';
import 'package:http/http.dart' as http;
import '../code/code.dart';
import 'abstract.dart';
import 'models/analysis_result.dart';
import 'models/issue.dart';
import 'models/issue_type.dart';
// Example for implementation of Analyzer for Dart.
class DartPadAnalyzer extends AbstractAnalyzer {
static const _url =
'https://stable.api.dartpad.dev/api/dartservices/v2/analyze';
@override
Future<AnalysisResult> analyze(Code code) async {
final client = http.Client();
final response = await client.post(
Uri.parse(_url),
body: json.encode({
'source': code.text,
}),
encoding: utf8,
);
final decodedResponse = jsonDecode(utf8.decode(response.bodyBytes)) as Map;
final issueMaps = decodedResponse['issues'];
if (issueMaps is! Iterable || (issueMaps.isEmpty)) {
return const AnalysisResult(issues: []);
}
final issues = issueMaps
.cast<Map<String, dynamic>>()
.map(issueFromJson)
.toList(growable: false);
return AnalysisResult(issues: issues);
}
}
// Converts json to Issue object for the DartAnalyzer.
Issue issueFromJson(Map<String, dynamic> json) {
final type = mapIssueType(json['kind']);
return Issue(
line: json['line'] - 1,
message: json['message'],
suggestion: json['correction'],
type: type,
url: json['url'],
);
}
IssueType mapIssueType(String type) {
switch (type) {
case 'error':
return IssueType.error;
case 'warning':
return IssueType.warning;
case 'info':
return IssueType.info;
default:
return IssueType.warning;
}
}