-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathdisplay_posts.dart
More file actions
460 lines (424 loc) · 12.8 KB
/
display_posts.dart
File metadata and controls
460 lines (424 loc) · 12.8 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_wordpress/flutter_wordpress.dart' as wp;
import 'post_page.dart';
class PostListPage extends StatelessWidget {
final wp.WordPress wordPress;
final wp.User user;
PostListPage({Key key, @required this.wordPress, this.user});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Posts"),
),
body: Center(
child: PostsBuilder(
wordPress: wordPress,
user: user,
),
),
);
}
}
class PostsBuilder extends StatefulWidget {
final wp.WordPress wordPress;
final wp.User user;
PostsBuilder({Key key, @required this.wordPress, this.user});
@override
PostsBuilderState createState() => PostsBuilderState();
}
class PostsBuilderState extends State<PostsBuilder> {
final paddingCardsList = EdgeInsets.symmetric(vertical: 4.0, horizontal: 8.0);
final padding_4 = EdgeInsets.all(4.0);
final padding_8 = EdgeInsets.all(8.0);
final padding_16 = EdgeInsets.all(16.0);
Future<List<wp.Post>> posts;
@override
void initState() {
super.initState();
fetchPosts();
}
void createPost({@required wp.User user}) {
final post = widget.wordPress.createPost(
post: new wp.Post(
title: 'First post as a Chief Editor',
content: 'Blah! blah! blah!',
excerpt: 'Discussion about blah!',
authorID: user.id,
commentStatus: wp.PostCommentStatus.open,
pingStatus: wp.PostPingStatus.closed,
status: wp.PostPageStatus.publish,
format: wp.PostFormat.standard,
sticky: true,
),
);
post.then((p) {
print('Post created successfully with ID: ${p.id}');
}).catchError((err) {
print('Failed to create post: $err');
});
}
// yahya
Future<void> createUser(
{@required String email,
@required String username,
@required String password,
@required List<String> roles}) async {
await widget.wordPress
.createUser(
user: wp.User(
email: email,
password: password,
username: username,
roles: roles))
.then((p) {
print('User created successfully ${p}');
}).catchError((err) {
print('Failed to create user: $err');
});
}
// =====================
// UPDATE START
// =====================
Future<void> updatePost({@required int id, @required int userId}) async {
await widget.wordPress
.updatePost(
post: new wp.Post(
title: 'First post as a Chief Editor',
content: 'Blah! blah! blah!',
excerpt: 'Discussion about blah!',
authorID: userId,
commentStatus: wp.PostCommentStatus.open,
pingStatus: wp.PostPingStatus.closed,
status: wp.PostPageStatus.publish,
format: wp.PostFormat.standard,
sticky: true,
),
id: id, //
)
.then((p) {
print('Post updated successfully with ID ${p}');
}).catchError((err) {
print('Failed to update post: $err');
});
}
Future<void> updateComment(
{@required int id, @required int postId, @required wp.User user}) async {
await widget.wordPress
.updateComment(
comment: new wp.Comment(
content: "Comment Updated2!",
author: user.id,
post: postId,
),
id: id,
)
.then((c) {
print('Comment updated successfully "$c"');
}).catchError((err) {
print('Failed to update Comment: $err');
});
}
Future<void> updateUser(
{@required int id,
@required String username,
@required String email}) async {
await widget.wordPress
.updateUser(
user: new wp.User(
description: "This is description for this user",
username: username,
id: id,
email: email),
id: id,
)
.then((u) {
print('User updated successfully $u');
}).catchError((err) {
print('Failed to update User: $err');
});
}
// =====================
// UPDATE END
// =====================
// =====================
// DELETE START
// =====================
Future<void> deletePost({@required int id}) async {
await widget.wordPress.deletePost(id: id).then((p) {
print('Post Deleted successfully: $p');
}).catchError((err) {
print('Failed to Delete post: $err');
});
}
Future<void> deleteComment({@required int id}) async {
await widget.wordPress.deleteComment(id: id).then((c) {
print('Comment Deleted successfully: $c');
}).catchError((err) {
print('Failed to Delete comment: $err');
});
}
Future<void> deleteUser({@required int id, @required int reassign}) async {
await widget.wordPress.deleteUser(id: id, reassign: reassign).then((u) {
print('User Deleted successfully: $u');
}).catchError((err) {
print('Failed to Delete user: $err');
});
}
// =====================
// DELETE END
// =====================
// end yahya
void createComment({@required int userId, @required int postId}) {
final comment = widget.wordPress.createComment(
comment: new wp.Comment(
author: userId,
post: postId,
content: "First!",
parent: 0,
),
);
comment.then((c) {
print('Comment successfully posted with ID: ${c.id}');
}).catchError((err) {
print('Failed to comment: $err');
});
}
Future<void> fetchPosts() {
setState(() {
posts = widget.wordPress.fetchPosts(
postParams: wp.ParamsPostList(perPage: 1),
fetchAuthor: true,
fetchFeaturedMedia: true,
);
});
return posts;
}
@override
Widget build(BuildContext context) {
return FutureBuilder<List<wp.Post>>(
future: posts,
builder: (context, snapshot) {
if (snapshot.hasData) {
return RefreshIndicator(
child: ListView.builder(
itemBuilder: (context, i) {
int id = snapshot.data[i].id;
String title = snapshot.data[i].title.rendered;
String author = snapshot.data[i].author.name;
String content = snapshot.data[i].content.rendered;
wp.Media featuredMedia = snapshot.data[i].featuredMedia;
return Padding(
padding: paddingCardsList,
child: GestureDetector(
onTap: () {
openPostPage(snapshot.data[i]);
},
child: _buildPostCard(
author: author,
title: title,
content: content,
featuredMedia: featuredMedia,
id: id,
),
),
);
},
itemCount: snapshot.data.length,
),
onRefresh: fetchPosts,
);
} else if (snapshot.hasError) {
return Text(
snapshot.error.toString(),
style: TextStyle(color: Colors.red),
);
}
return CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation(Colors.blue),
);
},
);
}
Widget _buildPostCard({
String author,
String title,
String content,
wp.Media featuredMedia,
int id,
}) {
return Card(
color: Colors.white,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: EdgeInsets.symmetric(horizontal: 8.0, vertical: 4.0),
child: Text(
title,
style: Theme.of(context).textTheme.headline1,
),
),
_buildFeaturedMedia(featuredMedia),
featuredMedia == null
? Divider()
: SizedBox(
width: 0,
height: 0,
),
Padding(
padding: EdgeInsets.symmetric(vertical: 0.0, horizontal: 8.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(
author,
style: TextStyle(
fontWeight: FontWeight.w200,
),
),
ElevatedButton.icon(
onPressed: () {
createComment(postId: 1, userId: 1);
},
icon: Icon(Icons.settings),
label: Text(
"Create New Comment",
),
),
ElevatedButton.icon(
onPressed: () {
updateComment(user: widget.user, id: 1, postId: 1);
},
icon: Icon(Icons.settings),
label: Text(
"Update Comment with ID #1",
),
),
ElevatedButton.icon(
onPressed: () {
deleteComment(id: 1);
},
icon: Icon(Icons.settings),
label: Text(
"Delete Comment with ID #1",
),
),
ElevatedButton.icon(
onPressed: () {
updatePost(userId: widget.user.id, id: 1);
},
icon: Icon(Icons.settings, color: Colors.white),
label: Text(
"Update Post with ID #1",
style: TextStyle(color: Colors.white),
),
),
ElevatedButton.icon(
onPressed: () {
deletePost(id: 1);
},
icon: Icon(Icons.delete, color: Colors.white),
label: Text(
"Delete Post with ID #1",
style: TextStyle(color: Colors.white),
),
),
ElevatedButton.icon(
onPressed: () {
createPost(user: widget.user);
},
icon: Icon(
Icons.add_circle,
color: Colors.white,
),
label: Text(
"Create New Post",
style: TextStyle(color: Colors.white),
),
),
ElevatedButton.icon(
onPressed: () {
createUser(
roles: ["subscriber"],
username: "myUserName",
password: "123",
email: "myEmail@domain.com");
},
icon: Icon(
Icons.add_circle,
color: Colors.white,
),
label: Text(
"Create New User",
style: TextStyle(color: Colors.white),
),
),
ElevatedButton.icon(
onPressed: () {
updateUser(
id: 1,
email: "newuser@gmaill.com",
username: "newuser");
},
icon: Icon(
Icons.settings,
color: Colors.white,
),
label: Text(
"Update User with ID #1",
style: TextStyle(color: Colors.white),
),
),
ElevatedButton.icon(
onPressed: () {
deleteUser(id: 1, reassign: 1);
},
icon: Icon(
Icons.delete,
color: Colors.white,
),
label: Text(
"Delete User with ID #1",
style: TextStyle(color: Colors.white),
),
)
],
),
),
],
),
);
}
Widget _buildFeaturedMedia(wp.Media featuredMedia) {
if (featuredMedia == null) {
return SizedBox(
width: 0.0,
height: 0.0,
);
}
String imgSource = featuredMedia.mediaDetails.sizes.mediumLarge.sourceUrl;
imgSource = imgSource.replaceAll('localhost', '192.168.6.165');
return Center(
child: Image.network(
imgSource,
fit: BoxFit.cover,
),
);
}
void openPostPage(wp.Post post) {
print('OnTapped');
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return SinglePostPage(
wordPress: widget.wordPress,
post: post,
);
}),
);
}
}