第五篇- 抖音的強大對手來了,用Flutter手擼一個抖音國際版,看看有多炫

風清揚 No.1發表於2022-03-10

前言

由於中間幾個月專案天天加班,導致沒沒時間更新,最近一段時間對前端進行了重構,加了很多頁面,如登入、註冊、關注、個人中心等,目前寫這個純屬業餘個人愛好,所以斷斷續續的繼續在做......

前端地址:https://www.pgyer.com/dtok
後端伺服器地址:http://47.95.209.198:8181/

註釋:由於本人的apple id無法打包ios、所以暫時只打包的android版本,ios版本正在解決賬號問題

效果如下:

架構更新

之前技術採用flutter做的前端,後端api則對接的是抖音官方api,由於抖音的官方api更新頻繁,導致經常播放不了,所以索性自己來寫伺服器後端api,那麼後端api採用了那些技術咧

  • springcloud 主要是後臺控制皮膚 演示地址:http://47.95.209.198:8181/login
  • elasticsearch 主要對視訊資料離線查詢
  • ipfs 用於分散式節點儲存短視訊
  • ethereum 使用者激勵使用者儲存短視訊、畢竟買伺服器存花費夠大的

介面更新

  • 支援國家化,多語言切換
  • ipfs上傳、下載檔案
  • 登入頁面
  • 註冊頁面
  • 上下輪播時優化播放效果
  • 點贊功能

其他功能還在繼續完善,各位喜歡的話歡迎點個star 前端專案地址:https://github.com/telsacoin/telsavideo
後端需要的話請留下郵箱

本期最大的優化就是國際化,flutter國家化按以下步驟

在pubspec.yaml檔案加上

  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter
  intl: ^0.17.0 # Add this line
  ffi: ^1.1.2

在底部的flutter設定裡新增

# The following section is specific to Flutter.
flutter:
  # The following line ensures that the Material Icons font is
  # included with your application, so that you can use the icons in
  # the material Icons class.
  uses-material-design: true
  generate: true # Add this line

新建多語言包

在lib目錄新建子目錄l10n
裡面新增app_zh.arb檔案
內容如下:

{
    "home_top_foryou":"推薦",
    "home_top_following":"關注",
    "home_share":"分享",
    "home_buttom_title":"首頁",
    "home_buttom_discover":"發現",
    "home_buttom_notification":"通知",
    "home_buttom_persion":"我"
}

在main檔案引用

import 'package:flutter_gen/gen_l10n/app_localizations.dart';

在build里加入多語言檢測及支援的程式碼

return MaterialApp(
    debugShowCheckedModeBanner: false,
    onGenerateTitle: (context) =>
        AppLocalizations.of(context)!.home_buttom_title,
    home: SplashScreen(),
    localeResolutionCallback: (
      Locale? locale,
      Iterable<Locale> supportedLocales,
    ) {
      return locale;
    },
    localizationsDelegates: AppLocalizations.localizationsDelegates,
    supportedLocales: AppLocalizations.supportedLocales,
    theme: ThemeData(
      textSelectionTheme: TextSelectionThemeData(
        cursorColor: Colors.white,
      ),
      splashColor: Colors.transparent,
      highlightColor: Colors.transparent,
      primarySwatch: Colors.red,
      primaryColor: Colors.black,
      indicatorColor: Colors.white,
      tabBarTheme: TabBarTheme(),
    ),
    /* initialRoute: '/',
   onGenerateRoute: RouteGenerator.generateRoute, */
    builder: (context, child) {
      return ScrollConfiguration(
        behavior: MyBehavior(),
        child: child!,
      );
    },
  );

然後在需要引用的位置加入

import 'package:flutter_gen/gen_l10n/app_localizations.dart';

呼叫的位置

AppLocalizations.of(context)!.home_top_foryou

至此,國際化就完成了

另外本地針對播放模組進行了優化,將程式碼拆分到videoplayer.dart檔案.一來是方便程式碼閱讀,而來可以作為子元件使用,其他的程式碼寫得太冗餘也在繼續拆開,獨立出來,各位感興趣的可以關注專案的進展。

採用FutureBuilder對介面請求資料非同步處理,當載入完成後才播放,效果更佳

程式碼如下:

return FutureBuilder<DTok>(
    future: videos,
    builder: (context, snapshot) {
      print(snapshot.connectionState);
      if (snapshot.connectionState == ConnectionState.waiting) {
        return loading;
        // return Column(
        //   crossAxisAlignment: CrossAxisAlignment.center,
        //   mainAxisAlignment: MainAxisAlignment.center,
        //   children: [
        //     loading,
        //     Visibility(
        //       visible: snapshot.hasData,
        //       child: PageView.builder(
        //           controller: foryouController,
        //           onPageChanged: (index) {
        //             //when the video is changing, release the previous video instance.
        //             //disposeVideo();
        //             setState(() {});
        //           },
        //           scrollDirection: Axis.vertical,
        //           itemCount: snapshot.data!.itemList!.length,
        //           itemBuilder: (context, index) {
        //             var item = snapshot.data!.itemList![index];
        //             return Videoplayer(
        //               item: item,
        //               width: MediaQuery.of(context).size.width,
        //               heigth: MediaQuery.of(context).size.height,
        //             );
        //           }),
        //     )
        //   ],
        // );
      } else if (snapshot.connectionState == ConnectionState.done) {
        if (snapshot.hasError) {
          return Column(
            crossAxisAlignment: CrossAxisAlignment.center,
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              const Text('Error, Please restart your app agagin')
            ],
          );
        } else if (snapshot.hasData) {
          try {
            return PageView.builder(
                controller: foryouController,
                onPageChanged: (index) {
                  //when the video is changing, release the previous video instance.
                  //disposeVideo();
                  //setState(() {});
                },
                scrollDirection: Axis.vertical,
                itemCount: snapshot.data!.itemList!.length,
                itemBuilder: (context, index) {
                  var item = snapshot.data!.itemList![index];
                  return Videoplayer(
                    item: item,
                    width: MediaQuery.of(context).size.width,
                    heigth: MediaQuery.of(context).size.height,
                  );
                });
          } catch (e) {
            return Container(
              width: MediaQuery.of(context).size.width,
              height: MediaQuery.of(context).size.height,
              color: Colors.black,
              child: Center(
                  child: Text(
                'Error, Please restart your app again.',
                style: TextStyle(color: Colors.white),
              )),
            );
          }
        } else {
          // empty data
          return loading;
        }
      } else {
        return Text('State: ${snapshot.connectionState}');
      }
    });

這裡可以看到當snapshot.connectionState == ConnectionState.waiting的時候請求的資料正在載入中,則顯示載入的圖示loading

當snapshot.connectionState == ConnectionState.done 時,此時資料已經載入完畢,但是載入完畢有可能也沒有資料,所以需要判斷不同的情況

當載入出現異常情況則顯示異常的widget

if (snapshot.hasError) {
      return Column(
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          const Text('Error, Please restart your app agagin')
        ],
      );
    } 

當if (snapshot.hasData)則說明有返回值,但是這個返回值不一定就是我們需要的資料,所以還需要try catch一下,保證呈現給使用者的介面是正常的

try {
      return PageView.builder(
          controller: foryouController,
          onPageChanged: (index) {
            //when the video is changing, release the previous video instance.
            //disposeVideo();
            //setState(() {});
          },
          scrollDirection: Axis.vertical,
          itemCount: snapshot.data!.itemList!.length,
          itemBuilder: (context, index) {
            var item = snapshot.data!.itemList![index];
            return Videoplayer(
              item: item,
              width: MediaQuery.of(context).size.width,
              heigth: MediaQuery.of(context).size.height,
            );
          });
    } catch (e) {
      return Container(
        width: MediaQuery.of(context).size.width,
        height: MediaQuery.of(context).size.height,
        color: Colors.black,
        child: Center(
            child: Text(
          'Error, Please restart your app again.',
          style: TextStyle(color: Colors.white),
        )),
      );
    }
  } 

其他情況則返回載入狀態,因為沒有資料返回

另外載入videoplay的時候把width、heigth傳入到下一個控制元件,這樣好計算介面呈現的寬度與高度

return Videoplayer(
        item: item,
        width: MediaQuery.of(context).size.width,
        heigth: MediaQuery.of(context).size.height,
      );

結語

請繼續關注本部落格,其他頁面持續更新完成,原始碼地址:telsavideo, 歡迎fork和star,謝謝!!!

再次奉上演示地址:
前端地址:https://www.pgyer.com/dtok
後端伺服器地址:http://47.95.209.198:8181/

相關文章