listbug.dart 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // ignore_for_file: prefer_typing_uninitialized_variables, must_call_super
  2. import 'package:dio/dio.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:go_router/go_router.dart';
  5. import 'package:namer_app/footer.dart';
  6. import 'package:namer_app/header.dart';
  7. import '../globals.dart';
  8. class ListBugPage extends StatefulWidget {
  9. const ListBugPage({super.key});
  10. @override
  11. State<ListBugPage> createState() => _ListBugPageState();
  12. }
  13. class _ListBugPageState extends State<ListBugPage> {
  14. var jsonList;
  15. @override
  16. void initState(){
  17. getData();
  18. }
  19. void getData() async {
  20. try {
  21. var response = await Dio()
  22. .get('http://localhost:8080/api/v1/bugs',
  23. options: Options(headers: headers));
  24. if (response.statusCode == 200) {
  25. setState(() {
  26. jsonList = response.data['results'] as List;
  27. });
  28. } else {
  29. print(response.statusCode);
  30. }
  31. } catch (e) {
  32. print(e);
  33. }
  34. }
  35. @override
  36. Widget build(BuildContext context) {
  37. return Scaffold(
  38. appBar: CustomAppbar(),
  39. body: Stack(children: [
  40. SingleChildScrollView(
  41. child: Column(
  42. children: [
  43. Center(
  44. child: Row(
  45. mainAxisAlignment: MainAxisAlignment.center,
  46. children: [
  47. Text(
  48. 'LIST BUG',
  49. style: TextStyle(color: Colors.black, fontSize: 48),
  50. ),
  51. ],
  52. )),
  53. Column(
  54. children: List.generate(
  55. jsonList == null ? 0 : jsonList.length,
  56. (i) => SizedBox(
  57. child: ListTile(
  58. leading: SizedBox(
  59. child: Icon(Icons.bug_report),
  60. ),
  61. title: Text(jsonList[i]['description']),
  62. subtitle: Column(
  63. crossAxisAlignment: CrossAxisAlignment.start,
  64. children: [
  65. Text(jsonList[i]['goodday_url']),
  66. Row(
  67. children: [
  68. Text(jsonList[i]['created']),
  69. Container(
  70. width: 30,
  71. ),
  72. Text(jsonList[i]['level']),
  73. ],
  74. ),
  75. Row(
  76. children: [
  77. Text(jsonList[i]['qc']),
  78. Container(
  79. width: 20,
  80. ),
  81. Text(jsonList[i]['status']),
  82. Container(
  83. width: 20,
  84. ),
  85. Text(jsonList[i]['dev']),
  86. Container(
  87. width: 20,
  88. ),
  89. Text(jsonList[i]['dev_status'])
  90. ],
  91. )
  92. ],
  93. ),
  94. trailing: ButtonUser(
  95. items: jsonList[i],
  96. ),
  97. ),
  98. )),
  99. ),
  100. ],
  101. ),
  102. ),
  103. ]),
  104. bottomNavigationBar: Footer(),
  105. );
  106. }
  107. }
  108. class ButtonUser extends StatelessWidget {
  109. final Map<String, dynamic> items;
  110. ButtonUser({
  111. required this.items,
  112. super.key,
  113. });
  114. //todo tombol item
  115. //todo tombol delete
  116. @override
  117. Widget build(BuildContext context) {
  118. return Row(
  119. mainAxisSize: MainAxisSize.min,
  120. children: [
  121. ElevatedButton(
  122. onPressed: () => context.go('/login/bug/editbug'),
  123. style: ElevatedButton.styleFrom(
  124. backgroundColor: Colors.black,
  125. ),
  126. child: Text(
  127. 'Edit',
  128. style: TextStyle(color: Colors.white),
  129. ),
  130. ),
  131. ElevatedButton(
  132. onPressed: null,
  133. style: ElevatedButton.styleFrom(
  134. backgroundColor: Colors.black,
  135. ),
  136. child: Text(
  137. 'Delete',
  138. style: TextStyle(color: Colors.white),
  139. ),
  140. ),
  141. ElevatedButton(
  142. onPressed: () => context.go('/login/bug/comment'),
  143. style: ElevatedButton.styleFrom(
  144. backgroundColor: Colors.black,
  145. ),
  146. child: Text(
  147. 'Comment',
  148. style: TextStyle(color: Colors.white),
  149. ),
  150. ),
  151. ],
  152. );
  153. }
  154. }