Browse Source

20191002-2

todother 5 years ago
parent
commit
22dd6399d8

+ 17 - 0
android/.project

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>android</name>
+	<comment>Project android created by Buildship.</comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+	</natures>
+</projectDescription>

+ 2 - 0
android/.settings/org.eclipse.buildship.core.prefs

@@ -0,0 +1,2 @@
+connection.project.dir=
+eclipse.preferences.version=1

+ 6 - 0
android/app/.classpath

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
+	<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
+	<classpathentry kind="output" path="bin/default"/>
+</classpath>

+ 23 - 0
android/app/.project

@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>app</name>
+	<comment>Project app created by Buildship.</comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+	</natures>
+</projectDescription>

+ 2 - 0
android/app/.settings/org.eclipse.buildship.core.prefs

@@ -0,0 +1,2 @@
+connection.project.dir=..
+eclipse.preferences.version=1

BIN
lib/images/zhifei.jpg


+ 33 - 2
lib/main.dart

@@ -1,3 +1,5 @@
+import 'dart:io';
+
 import 'package:douyin_demo/pages/RecommendPage/BottomSheet.dart';
 import 'package:douyin_demo/providers/RecommendProvider.dart';
 import 'package:douyin_demo/widgets/BottomBar.dart';
@@ -6,12 +8,41 @@ import 'package:flutter/material.dart';
 // import 'package:marquee/marquee.dart';
 import 'package:marquee_flutter/marquee_flutter.dart';
 import 'package:provider/provider.dart';
+import 'package:shared_preferences/shared_preferences.dart';
 import 'package:video_player/video_player.dart';
 
 import 'widgets/FavAnimation.dart';
 
-void main() {
-  runApp(MyApp());
+Future main() async {
+  final prefs = await SharedPreferences.getInstance();
+  // prefs.clear();
+  // String hosts = prefs.get('urlPath');
+  // String scheme = prefs.get('scheme');
+  // int ports = prefs.get('ports');
+  prefs.setBool("ifIOS", Platform.isIOS);
+  prefs.setBool("ifPrd", false);
+  prefs.setBool("ifReal_d", true);
+
+  prefs.setString("urlPath_real_d", "192.168.0.8");
+  prefs.setString("scheme_real_d", "http");
+  prefs.setInt("ports_real_d", 5000);
+
+  prefs.setString("urlPath_ios_d", "127.0.0.1");
+  prefs.setString("scheme_ios_d", "http");
+  prefs.setInt("ports_ios_d", 5000);
+
+  prefs.setString("urlPath_and_d", "10.0.2.2");
+  prefs.setString("scheme_and_d", "http");
+  prefs.setInt("ports_and_d", 5000);
+
+  prefs.setString("urlPath_p", "118.26.177.76");
+  prefs.setString("scheme_p", "http");
+  prefs.setInt("ports_p", 80);
+
+  prefs.setString("picServer", "http://www.guojio.com");
+
+  runApp(MyApp()); 
+  // runApp(MyApp());
 }
 
 class MyApp extends StatelessWidget {

+ 37 - 0
lib/models/PostsModel.dart

@@ -0,0 +1,37 @@
+import 'package:json_annotation/json_annotation.dart';
+part 'PostsModel.g.dart';
+
+@JsonSerializable()
+class PostsModel extends Object {
+  String postsID;
+  String postsContent;
+  String postsMaker;
+  DateTime postsMakeDate;
+  int postsPicCount;
+  int postsReaded;
+  int postsLoved;
+  String postsPics;
+  String makerName;
+  String makerID;
+  String picsSimpPath;
+  String picsPath;
+  String whenPosts;
+  String makerPhoto;
+  double latitude;
+  double longitude;
+  String postsLocation;
+  String postsType;
+  int postsStatus;
+  int ifOfficial;
+  int ifLY;
+  double picsRate;
+  bool ifUserLoved;
+
+  PostsModel(this.postsID,this.postsContent,this.postsMaker,this.postsMakeDate,this.postsPicCount,this.postsReaded,this.postsLoved,this.postsPics,this.ifLY
+  ,this.ifOfficial,this.ifUserLoved,this.latitude,this.longitude,this.makerID,this.makerName,this.makerPhoto,this.picsPath,this.picsRate,this.picsSimpPath,this.postsLocation,this.postsStatus
+  ,this.postsType,this.whenPosts);
+
+
+  factory PostsModel.fromJson(Map<String, dynamic> json) => _$PostsModelFromJson(json);
+  Map<String, dynamic> toJson() => _$PostsModelToJson(this);
+}

+ 64 - 0
lib/models/PostsModel.g.dart

@@ -0,0 +1,64 @@
+// GENERATED CODE - DO NOT MODIFY BY HAND
+
+part of 'PostsModel.dart';
+
+// **************************************************************************
+// JsonSerializableGenerator
+// **************************************************************************
+
+PostsModel _$PostsModelFromJson(Map<String, dynamic> json) {
+  return PostsModel(
+    json['postsID'] as String,
+    json['postsContent'] as String,
+    json['postsMaker'] as String,
+    json['postsMakeDate'] == null
+        ? null
+        : DateTime.parse(json['postsMakeDate'] as String),
+    json['postsPicCount'] as int,
+    json['postsReaded'] as int,
+    json['postsLoved'] as int,
+    json['postsPics'] as String,
+    json['ifLY'] as int,
+    json['ifOfficial'] as int,
+    json['ifUserLoved'] as bool,
+    (json['latitude'] as num)?.toDouble(),
+    (json['longitude'] as num)?.toDouble(),
+    json['makerID'] as String,
+    json['makerName'] as String,
+    json['makerPhoto'] as String,
+    json['picsPath'] as String,
+    (json['picsRate'] as num)?.toDouble(),
+    json['picsSimpPath'] as String,
+    json['postsLocation'] as String,
+    json['postsStatus'] as int,
+    json['postsType'] as String,
+    json['whenPosts'] as String,
+  );
+}
+
+Map<String, dynamic> _$PostsModelToJson(PostsModel instance) =>
+    <String, dynamic>{
+      'postsID': instance.postsID,
+      'postsContent': instance.postsContent,
+      'postsMaker': instance.postsMaker,
+      'postsMakeDate': instance.postsMakeDate?.toIso8601String(),
+      'postsPicCount': instance.postsPicCount,
+      'postsReaded': instance.postsReaded,
+      'postsLoved': instance.postsLoved,
+      'postsPics': instance.postsPics,
+      'makerName': instance.makerName,
+      'makerID': instance.makerID,
+      'picsSimpPath': instance.picsSimpPath,
+      'picsPath': instance.picsPath,
+      'whenPosts': instance.whenPosts,
+      'makerPhoto': instance.makerPhoto,
+      'latitude': instance.latitude,
+      'longitude': instance.longitude,
+      'postsLocation': instance.postsLocation,
+      'postsType': instance.postsType,
+      'postsStatus': instance.postsStatus,
+      'ifOfficial': instance.ifOfficial,
+      'ifLY': instance.ifLY,
+      'picsRate': instance.picsRate,
+      'ifUserLoved': instance.ifUserLoved,
+    };

+ 69 - 0
lib/providers/PostsGalleryProvider.dart

@@ -0,0 +1,69 @@
+import 'dart:async';
+import 'dart:convert';
+
+import 'package:douyin_demo/models/PostsModel.dart';
+import 'package:douyin_demo/widgets/WebRequest.dart';
+import 'package:flutter/material.dart';
+// import 'package:my_app/models/PostsModel.dart';
+// import 'package:my_app/tools/WebRequest.dart';
+import 'package:http/http.dart' as http;
+// import 'package:provider/provider.dart';
+
+
+class PostsGalleryProvider with ChangeNotifier {
+  List<PostsModel> model1 = List<PostsModel>();
+  List<PostsModel> model2 = List<PostsModel>();
+  double _len1 = 0;
+  double _len2 = 0;
+  // get  models1 => _model1;
+  // get models2 => _model2;
+  List<PostsModel> posts = List<PostsModel>();
+
+  PostsGalleryProvider() {
+    getPosts(0, 0);
+    notifyListeners();
+  }
+
+  Future getPosts(orderType, ifRefresh) async {
+    Uri url = await WebRequest().generate('posts/getPosts', {
+      "openId": "ol_BV4zcyVJaOBtOTD5AfpkFERww",
+      "dataFrom": "0",
+      "count": "30",
+      "refreshTime": DateTime.now().toString(),
+      "currentSel": "1",
+      "ulo": "0",
+      "ula": "0"
+    });
+
+    var response = await http.get(url);
+    //.then((response) {
+    // var post = json.decode(response.body)["result"];
+    setGalleryModel(response.body);
+    notifyListeners();
+  }
+
+  setGalleryModel(String items) {
+    var result = List<PostsModel>();
+
+    var posts = json.decode(items)["result"];
+    // result.add(posts);
+
+    for (var item in posts) {
+      result.add(PostsModel.fromJson(item));
+    }
+    for (var item in result) {
+      if (_len1 <= _len2) {
+        item.makerName="";
+        item.picsPath="";
+        item.postsLocation="";
+        item.postsReaded=0;
+        model1.add(item);
+        _len1 += item.picsRate;
+      } else {
+        model2.add(item);
+        _len2 += item.picsRate;
+      }
+    }
+    // notifyListeners();
+  }
+}

+ 8 - 3
lib/widgets/BottomBar.dart

@@ -1,7 +1,9 @@
 import 'package:douyin_demo/main.dart';
 import 'package:douyin_demo/pages/sameCity/SameCityPage.dart';
+import 'package:douyin_demo/providers/PostsGalleryProvider.dart';
 import 'package:douyin_demo/providers/RecommendProvider.dart';
 import 'package:flutter/material.dart';
+import 'package:provider/provider.dart';
 
 // class BtmBar extends StatelessWidget {
 //   const BtmBar({Key key}) : super(key: key);
@@ -73,9 +75,12 @@ class _BtmBarState extends State<BtmBar> {
         Navigator.pushAndRemoveUntil(
             context,
             MaterialPageRoute(
-                builder: (context) => SameCityMain(
-                      selIndex: index,
-                    )),
+                builder: (context) => MultiProvider(
+                  providers: [ChangeNotifierProvider(builder: (context)=>PostsGalleryProvider(),)],
+                  child: SameCityMain(
+                        selIndex: index,
+                      )
+                )),
             ModalRoute.withName("/sameCity"));
         break;
       default:

+ 46 - 0
lib/widgets/WebRequest.dart

@@ -0,0 +1,46 @@
+import 'dart:async';
+
+import 'package:shared_preferences/shared_preferences.dart';
+
+class WebRequest extends Object {
+  //
+  bool ifPrd;
+  bool ifIos;
+
+  Future<Uri> generate(String path, Map<String, dynamic> params) async {
+    final prefs = await SharedPreferences.getInstance();
+
+    String hosts;
+    String scheme;
+    int ports;
+
+    if (prefs.getBool("ifPrd")) {
+      hosts = prefs.getString('urlPath_p');
+      scheme = prefs.getString('scheme_p');
+      ports = prefs.getInt('ports_p');
+    } else {
+      if (prefs.getBool("ifIOS")) {
+        hosts = prefs.getString('urlPath_ios_d');
+        scheme = prefs.getString('scheme_ios_d');
+        ports = prefs.getInt('ports_ios_d');
+      } else {
+        hosts = prefs.getString('urlPath_and_d');
+        scheme = prefs.getString('scheme_and_d');
+        ports = prefs.getInt('ports_and_d');
+      }
+    }
+
+    if(prefs.getBool("ifReal_d")){
+      hosts = prefs.getString('urlPath_real_d');
+        scheme = prefs.getString('scheme_real_d');
+        ports = prefs.getInt('ports_real_d');
+    }
+    Uri url = Uri(
+        scheme: scheme,
+        host: hosts,
+        port: ports,
+        path: path,
+        queryParameters: params);
+    return url;
+  }
+}

+ 316 - 1
pubspec.lock

@@ -1,6 +1,20 @@
 # Generated by pub
 # See https://dart.dev/tools/pub/glossary#lockfile
 packages:
+  analyzer:
+    dependency: transitive
+    description:
+      name: analyzer
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.38.4"
+  args:
+    dependency: transitive
+    description:
+      name: args
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.5.2"
   async:
     dependency: transitive
     description:
@@ -15,6 +29,62 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "1.0.5"
+  build:
+    dependency: transitive
+    description:
+      name: build
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.2.0"
+  build_config:
+    dependency: transitive
+    description:
+      name: build_config
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.4.1+1"
+  build_daemon:
+    dependency: transitive
+    description:
+      name: build_daemon
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.1.0"
+  build_resolvers:
+    dependency: transitive
+    description:
+      name: build_resolvers
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.1.1"
+  build_runner:
+    dependency: "direct dev"
+    description:
+      name: build_runner
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.7.1"
+  build_runner_core:
+    dependency: transitive
+    description:
+      name: build_runner_core
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "4.1.0"
+  built_collection:
+    dependency: transitive
+    description:
+      name: built_collection
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "4.2.2"
+  built_value:
+    dependency: transitive
+    description:
+      name: built_value
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "6.7.1"
   charcode:
     dependency: transitive
     description:
@@ -22,6 +92,20 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "1.1.2"
+  checked_yaml:
+    dependency: transitive
+    description:
+      name: checked_yaml
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.0.2"
+  code_builder:
+    dependency: transitive
+    description:
+      name: code_builder
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "3.2.0"
   collection:
     dependency: transitive
     description:
@@ -29,6 +113,27 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "1.14.11"
+  convert:
+    dependency: transitive
+    description:
+      name: convert
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.1.1"
+  crypto:
+    dependency: transitive
+    description:
+      name: crypto
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.1.3"
+  csslib:
+    dependency: transitive
+    description:
+      name: csslib
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.16.1"
   cupertino_icons:
     dependency: "direct main"
     description:
@@ -36,6 +141,20 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "0.1.2"
+  dart_style:
+    dependency: transitive
+    description:
+      name: dart_style
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.3.1"
+  fixnum:
+    dependency: transitive
+    description:
+      name: fixnum
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.10.9"
   flutter:
     dependency: "direct main"
     description: flutter
@@ -46,6 +165,97 @@ packages:
     description: flutter
     source: sdk
     version: "0.0.0"
+  front_end:
+    dependency: transitive
+    description:
+      name: front_end
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.1.26"
+  glob:
+    dependency: transitive
+    description:
+      name: glob
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.1.7"
+  graphs:
+    dependency: transitive
+    description:
+      name: graphs
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.2.0"
+  html:
+    dependency: transitive
+    description:
+      name: html
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.14.0+3"
+  http:
+    dependency: transitive
+    description:
+      name: http
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.12.0+2"
+  http_multi_server:
+    dependency: transitive
+    description:
+      name: http_multi_server
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.1.0"
+  http_parser:
+    dependency: transitive
+    description:
+      name: http_parser
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "3.1.3"
+  io:
+    dependency: transitive
+    description:
+      name: io
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.3.3"
+  js:
+    dependency: transitive
+    description:
+      name: js
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.6.1+1"
+  json_annotation:
+    dependency: "direct main"
+    description:
+      name: json_annotation
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "3.0.0"
+  json_serializable:
+    dependency: "direct dev"
+    description:
+      name: json_serializable
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "3.2.2"
+  kernel:
+    dependency: transitive
+    description:
+      name: kernel
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.3.26"
+  logging:
+    dependency: transitive
+    description:
+      name: logging
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.11.3+2"
   lpinyin:
     dependency: "direct main"
     description:
@@ -81,6 +291,27 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "1.1.7"
+  mime:
+    dependency: transitive
+    description:
+      name: mime
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.6+3"
+  package_config:
+    dependency: transitive
+    description:
+      name: package_config
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.1.0"
+  package_resolver:
+    dependency: transitive
+    description:
+      name: package_resolver
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.0.10"
   path:
     dependency: transitive
     description:
@@ -95,6 +326,13 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "1.8.0+1"
+  pool:
+    dependency: transitive
+    description:
+      name: pool
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.4.0"
   provider:
     dependency: "direct main"
     description:
@@ -102,6 +340,20 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "3.1.0"
+  pub_semver:
+    dependency: transitive
+    description:
+      name: pub_semver
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.4.2"
+  pubspec_parse:
+    dependency: transitive
+    description:
+      name: pubspec_parse
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.1.5"
   quiver:
     dependency: transitive
     description:
@@ -109,11 +361,39 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "2.0.5"
+  shared_preferences:
+    dependency: "direct main"
+    description:
+      name: shared_preferences
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.5.3+4"
+  shelf:
+    dependency: transitive
+    description:
+      name: shelf
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.7.5"
+  shelf_web_socket:
+    dependency: transitive
+    description:
+      name: shelf_web_socket
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.2.3"
   sky_engine:
     dependency: transitive
     description: flutter
     source: sdk
     version: "0.0.99"
+  source_gen:
+    dependency: transitive
+    description:
+      name: source_gen
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.4+5"
   source_span:
     dependency: transitive
     description:
@@ -142,6 +422,13 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "2.0.0"
+  stream_transform:
+    dependency: transitive
+    description:
+      name: stream_transform
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.0.19"
   string_scanner:
     dependency: transitive
     description:
@@ -163,6 +450,13 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "0.2.5"
+  timing:
+    dependency: transitive
+    description:
+      name: timing
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.1.1+2"
   typed_data:
     dependency: transitive
     description:
@@ -184,6 +478,27 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "0.10.2+1"
+  watcher:
+    dependency: transitive
+    description:
+      name: watcher
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.7+12"
+  web_socket_channel:
+    dependency: transitive
+    description:
+      name: web_socket_channel
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.0.15"
+  yaml:
+    dependency: transitive
+    description:
+      name: yaml
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.2.0"
 sdks:
-  dart: ">=2.2.2 <3.0.0"
+  dart: ">=2.3.0 <3.0.0"
   flutter: ">=1.5.0 <2.0.0"

+ 5 - 1
pubspec.yaml

@@ -29,10 +29,14 @@ dependencies:
   provider: 
   lpinyin:
   sticky_headers:
-
+  shared_preferences:
+  json_annotation:
+    
 dev_dependencies:
   flutter_test:
     sdk: flutter
+  build_runner: 
+  json_serializable: 
 
 
 # For information on the generic Dart part of this file, see the