-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathPostBlogPage.dart
220 lines (208 loc) · 7.2 KB
/
PostBlogPage.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
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
import 'dart:async';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_blog_app/HomePage.dart';
import 'package:flutter_blog_app/main.dart';
import 'package:image_picker/image_picker.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:firebase_database/firebase_database.dart';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:firebase_analytics/firebase_analytics.dart';
final googleSignIn = new GoogleSignIn();
final analytics = new FirebaseAnalytics();
final auth = FirebaseAuth.instance;
final reference = FirebaseDatabase.instance.reference().child('Blogs');
Future<Null> _ensureLoggedIn() async {
GoogleSignInAccount user = googleSignIn.currentUser;
if (user == null) user = await googleSignIn.signInSilently();
if (user == null) {
user = await googleSignIn.signIn();
analytics.logLogin();
}
if (await auth.currentUser() == null) {
GoogleSignInAuthentication credentials =
await googleSignIn.currentUser.authentication;
await auth.signInWithGoogle(
idToken: credentials.idToken,
accessToken: credentials.accessToken,
);
}
}
class PostBlogPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
routes: <String, WidgetBuilder>{
"/home": (BuildContext context) => new HomePage(),
},
home: new Scaffold(
appBar: new AppBar(
title: new Text('Post Blog..'),
),
body: new _PostPage()),
);
}
}
class _PostPage extends StatefulWidget {
@override
_PostPageState createState() => new _PostPageState();
}
class _PostPageState extends State<_PostPage> {
File _image;
final TextEditingController _title = new TextEditingController();
final TextEditingController _desc = new TextEditingController();
bool _isTitle = false;
bool _isDesc = false;
bool _isImage = false;
bool _isLoading = false;
Future getImage() async {
var image = await ImagePicker.pickImage(source: ImageSource.gallery);
setState(() {
_image = image;
});
}
@override
Widget build(BuildContext context) {
return new Container(
child: new SingleChildScrollView(
scrollDirection: Axis.vertical,
reverse: true,
child: new Container(
child: new Column(
children: <Widget>[
new Padding(
padding: const EdgeInsets.only(top: 24.0),
child: _isLoading ? new CircularProgressIndicator() : null,
),
new Padding(padding: const EdgeInsets.only(top: 24.0)),
new InkWell(
child: _image == null
? new Image.asset(
'assets/img/img-placeholder.jpg',
height: 200.0,
width: 300.0,
fit: BoxFit.fill,
)
: new Image.file(
_image,
height: 200.0,
width: 300.0,
),
onTap: () {
getImage();
_isImage = true;
},
),
new Padding(
padding: const EdgeInsets.all(20.0),
child: new TextField(
controller: _title,
style: new TextStyle(
color: Colors.black,
fontSize: 18.0,
),
onChanged: (String text) {
setState(() {
_isTitle = text.length > 0;
});
},
decoration: new InputDecoration.collapsed(
hintText: "Title",
border: new UnderlineInputBorder(
borderSide: const BorderSide(
color: Colors.blueAccent,
style: BorderStyle.solid,
width: 5.0),
),
),
),
),
new Padding(
padding: const EdgeInsets.all(20.0),
child: new TextField(
controller: _desc,
style: new TextStyle(color: Colors.black, fontSize: 18.0),
onChanged: (String text) {
setState(() {
_isDesc = text.length > 0;
});
},
decoration: new InputDecoration.collapsed(
hintText: "Description",
border: new UnderlineInputBorder(
borderSide: const BorderSide(
color: Colors.blueAccent,
style: BorderStyle.solid,
width: 5.0),
),
),
),
),
new Padding(
padding: const EdgeInsets.all(8.0),
child: new RaisedButton(
padding: const EdgeInsets.only(
left: 45.0, right: 45.0, top: 15.0, bottom: 15.0),
color: Colors.blueAccent,
elevation: 2.0,
child: new Text(
"Post",
style: new TextStyle(color: Colors.white),
),
onPressed: _isTitle && _isDesc && _isImage && !_isLoading
? () => _handleSubmitted(_title.text, _desc.text, _image)
: null,
),
)
],
),
),
),
);
}
Future<Null> _handleSubmitted(String title, String desc, File img) async {
setState(() {
_isLoading = true;
});
await _ensureLoggedIn();
StorageReference ref = FirebaseStorage.instance.ref().child("Blog_Images/" +
new DateTime.now().millisecondsSinceEpoch.toString()); //new
StorageUploadTask uploadTask = ref.put(img); //new
Uri downloadUrl = (await uploadTask.future).downloadUrl;
_addBlog(title, desc, downloadUrl.toString());
}
void _addBlog(String title, String description, String imageUrl) {
// print(googleSignIn.currentUser.displayName);
// print(googleSignIn.currentUser.id);
// print(title);
// print(imageUrl);
// print(description);
reference.push().set({
'IMAGE': imageUrl,
'Title': title,
'DESCRIPTION': description,
'uid': googleSignIn.currentUser.id,
'username': googleSignIn.currentUser.displayName
});
// Navigator.of(context).pushAndRemoveUntil(new MaterialPageRoute(builder: (Builder)))
// Navigator.of(context).pushAndRemoveUntil(
// new MaterialPageRoute(
// builder: (BuildContext context) => new HomePage()),
// (Route route) => route == null);
// print("success");
analytics.logEvent(name: 'post_blog');
setState(() {
_isLoading = false;
_title.clear();
_desc.clear();
_isTitle = false;
_isDesc = false;
_isImage = false;
_image = null;
});
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text("Posted Successfully!"),
));
}
}