Commit 6e37fe57 authored by jinzhu's avatar jinzhu

update

parent 99bbfa80
{
"java.configuration.updateBuildConfiguration": "automatic"
}
\ No newline at end of file
import 'package:gmalpha_flutter/model/message/replied_content.dart';
class Message {
final String userId;
final String name;
final String icon;
final String time;
final String content;
final String id;
// final String repliedContent;
final RepliedContent repliedContent;
Message(
{this.userId,
this.name,
this.icon,
this.time,
this.content,
this.id,
this.repliedContent,
});
factory Message.fromJson(Map<String, dynamic> json) {
return Message(
userId: json['user_id'],
name: json['name'],
icon: json['icon'],
id: json['id'],
time: json['time'],
content: json['content'],
repliedContent: json['replied_content'] != null ? new RepliedContent.fromJson(json['replied_content']):null,
);
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['user_id'] = this.userId;
data['name'] = this.name;
data['icon'] = this.icon;
data['id'] = this.id;
data['time'] = this.time;
data['content'] = this.content;
if (this.repliedContent != null) {
data['replied_content'] = this.repliedContent.toJson();
}
return data;
}
}
import 'replied_content.dart';
class RepliedContent {
final String id;
final String type;
final String topicId;
final String content;
final String contentType;
RepliedContent({this.id, this.type, this.topicId, this.content, this.contentType});
factory RepliedContent.fromJson(Map<String, dynamic> json) {
return RepliedContent(
id: json['id'],
type: json['type'],
topicId: json['topic_id'],
content: json['content'],
contentType: json['content_type'],
);
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['type'] = this.type;
data['topic_id'] = this.topicId;
data['content_type'] = this.contentType;
data['content'] = this.content;
return data;
}
}
\ No newline at end of file
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'message_item.dart';
import 'package:dio/dio.dart';
import 'package:flutter/semantics.dart';
import 'package:gmalpha_flutter/model/message/message.dart';
import 'package:gmalpha_flutter/netWork/DioUtil.dart';
import 'package:gmalpha_flutter/toast/toast.dart';
class MessageHomePage extends StatefulWidget {
@override
_MessageHomePageState createState() => _MessageHomePageState();
}
class _MessageHomePageState extends State<MessageHomePage> with AutomaticKeepAliveClientMixin {
List<Message> messageList = List<Message>();
// List<Map> commentsList=[{'name': 'Burial', 'icon': 'http://alpha-s.gmeiapp.com/2018/12/23/921d3a004e-w', 'time': '1.560856220460315E9', 'content':'卖萌打滚求翻牌', 'replied_content': {'content': 'http://alpha.iyanzhi.com/2019/06/18/1833/5f4c9dd92dc7-thumb'}},
// {'name': '거짓말 ', 'icon': 'http://alpha-s.gmeiapp.com/2018/12/23/8179d48c63-w', 'time': '1.560856220460315E9', 'content':'小姐姐,作图app是啥', 'replied_content': {'content': 'http://alpha.iyanzhi.com/2019/06/18/1833/5f4c9dd92dc7-thumb'}},
// {'name': 'blugder ', 'icon': 'http://alpha-s.gmeiapp.com/2018/12/23/8179d48c63-w', 'time': '1.560856220460315E9', 'content':'拍照表情很自然', 'replied_content': {'content': 'http://alpha.iyanzhi.com/2019/06/18/1833/5f4c9dd92dc7-thumb'}},
// ];
// GlobalKey<EasyRefreshState> _easyRefreshKey =new GlobalKey<EasyRefreshState>();
// GlobalKey<RefreshFooterState> _footerKey = new GlobalKey<RefreshFooterState>();
@override
bool get wantKeepAlive => true;
Future<List<Message>> _fetchMesssageList() async {
BaseOptions options = DioUtil.getDefOptions();
options.baseUrl = "http://earth.gmapp.env/";
final cookie = new Map<String, dynamic>.from({'_gm_token': 'dfb1d61562677661', '_gtid': 'e49a16069e4411e98014525400e82fab836', 'sessionid': '4w1pyiayin5odywgbosemgul8m28t6x4'});
HttpConfig config = new HttpConfig(options: options, nativeCookie: cookie);
DioUtil().setConfig(config);
print(cookie);
List<Message> messageList = List<Message>();
print('aaaaa');
DioUtil().requestR(Method.get, "api/v1/reply/my",data: {'page': 1, 'count': 10}).then((res){
print('333333333');
print(res);
return messageList;
}
).then((error) {
print('ddddd');
print(error);
// return messageList;
});
// print(res);
return messageList;
// .then((res){
// if (res.code == 0) {
// Map<String, dynamic> data = json.decode(res.data);
// for (dynamic data in data['data']) {
// Message messageData = Message.fromJson(data);
// messageList.add(messageData);
// }
// }
// return messageList;
// }).then((error){
// return messageList;
// });
}
_getdata() async{
return _fetchMesssageList();
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('消息'),
),
floatingActionButton: new FloatingActionButton(
onPressed: () {
List<Message> res = _getdata();
},
child: new Icon(Icons.add_box),
elevation: 3.0,
highlightElevation: 2.0,
backgroundColor: Colors.red, // 红色
),
// body: ListView(children: _getListData()),
body: new Center(
// child: FutureBuilder(
// future: _fetchMesssageList(),
// builder: (context, snapshot) {
// switch (snapshot.connectionState) {
// case ConnectionState.none:
// case ConnectionState.waiting:
// break;
// default:
// if (snapshot.hasData) {
// return _createListView(context, snapshot);
// }
// }
// },
),
// )
);
}
Widget _createListView(BuildContext context, AsyncSnapshot snapshot) {
List<Message> messageList = snapshot.data;
return ListView.builder(
key: new PageStorageKey('message-list'),
itemCount: messageList.length,
itemBuilder: (BuildContext context, int index) {
return new MessageItem(onPressed: (){}, message:messageList[index]);
},
);
}
}
\ No newline at end of file
import 'package:flutter/material.dart';
import 'package:gmalpha_flutter/model/message/message.dart';
class MessageItem extends StatelessWidget {
final Message message;
VoidCallback onPressed;
MessageItem({Key key, this.message, this.onPressed}) : super(key: key);
@override
Widget build(BuildContext context) {
var thumbImg = new Container(
width: 42,
height: 42,
decoration: BoxDecoration(
shape: BoxShape.circle,
image: new DecorationImage(
image: new NetworkImage(message.icon),
)
),
);
var contentImg = new Container(
width: 48,
height: 48,
decoration: BoxDecoration(
image: new DecorationImage(
image: new NetworkImage(message.repliedContent.content),
)
),
);
var titleRow = new Row(
children: <Widget>[
new Row (
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(message.name, style: TextStyle(color: Color(0xff323232), fontWeight: FontWeight.bold, fontSize: 13)),
new Padding (
padding: EdgeInsets.only(left: 8),
child: Text('评论了你', style: TextStyle(color: Color(0xff323232), fontSize: 13)),
)
],
),
],
);
var contenRow = new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
new Row (
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(message.content, style: TextStyle(color: Color(0xff323232), fontSize: 13)),
],
),
],
);
var timeRow = new Row(
children: <Widget>[
new Expanded(
child: new Text(message.name),
)
],
);
return new GestureDetector(
onTap: onPressed,
child: new Container(
child: new Column(
children: <Widget>[
new Row(
children: <Widget>[
new Padding(
padding: const EdgeInsets.only(left: 16, top: 20, bottom: 15),
child: new Container(
child: new Center(
child: thumbImg,
),
),
),
new Expanded(
flex: 1,
child: new Padding(
padding: const EdgeInsets.all(10.0),
child: new Column(
children: <Widget>[
titleRow,
contenRow,
timeRow,
],
),
),
),
new Padding(
padding: const EdgeInsets.only(right: 16),
child: new Container(
child: new Center(
child: contentImg,
),
),
)
],
)
],
),
),
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment