123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- import 'dart:async';
- import 'package:chewie/chewie.dart';
- import 'package:chewie/src/material/material_progress_bar.dart';
- import 'package:flutter/material.dart';
- import 'package:photos/ente_theme_data.dart';
- import 'package:photos/utils/date_time_util.dart';
- import 'package:video_player/video_player.dart';
- class VideoControls extends StatefulWidget {
- const VideoControls({Key key}) : super(key: key);
- @override
- State<StatefulWidget> createState() {
- return _VideoControlsState();
- }
- }
- class _VideoControlsState extends State<VideoControls> {
- VideoPlayerValue _latestValue;
- bool _hideStuff = true;
- Timer _hideTimer;
- Timer _initTimer;
- Timer _showAfterExpandCollapseTimer;
- bool _dragging = false;
- bool _displayTapped = false;
- final barHeight = 120.0;
- final marginSize = 5.0;
- VideoPlayerController controller;
- ChewieController chewieController;
- @override
- Widget build(BuildContext context) {
- if (_latestValue.hasError) {
- return chewieController.errorBuilder != null
- ? chewieController.errorBuilder(
- context,
- chewieController.videoPlayerController.value.errorDescription,
- )
- : Center(
- child: Icon(
- Icons.error,
- color: Theme.of(context).colorScheme.onSurface,
- size: 42,
- ),
- );
- }
- return MouseRegion(
- onHover: (_) {
- _cancelAndRestartTimer();
- },
- child: GestureDetector(
- onTap: () => _cancelAndRestartTimer(),
- child: AbsorbPointer(
- absorbing: _hideStuff,
- child: Stack(
- children: <Widget>[
- Column(
- children: [
- _latestValue != null &&
- !_latestValue.isPlaying &&
- _latestValue.duration == null ||
- _latestValue.isBuffering
- ? const Center(
- child: CircularProgressIndicator(),
- )
- : _buildHitArea(),
- ],
- ),
- Align(
- alignment: Alignment.bottomCenter,
- child: _buildBottomBar(context),
- ),
- ],
- ),
- ),
- ),
- );
- }
- @override
- void dispose() {
- _dispose();
- super.dispose();
- }
- void _dispose() {
- controller.removeListener(_updateState);
- _hideTimer?.cancel();
- _initTimer?.cancel();
- _showAfterExpandCollapseTimer?.cancel();
- }
- @override
- void didChangeDependencies() {
- final oldController = chewieController;
- chewieController = ChewieController.of(context);
- controller = chewieController.videoPlayerController;
- if (oldController != chewieController) {
- _dispose();
- _initialize();
- }
- super.didChangeDependencies();
- }
- Widget _buildBottomBar(
- BuildContext context,
- ) {
- final iconColor = Theme.of(context).textTheme.button.color;
- return Container(
- padding: const EdgeInsets.only(bottom: 60),
- child: AnimatedOpacity(
- opacity: _hideStuff ? 0.0 : 1.0,
- duration: const Duration(milliseconds: 300),
- child: Container(
- height: barHeight,
- color: Colors.transparent,
- child: Row(
- children: <Widget>[
- _buildCurrentPosition(iconColor),
- chewieController.isLive ? const SizedBox() : _buildProgressBar(),
- _buildTotalDuration(iconColor),
- ],
- ),
- ),
- ),
- );
- }
- Expanded _buildHitArea() {
- return Expanded(
- child: GestureDetector(
- onTap: () {
- if (_latestValue != null) {
- if (_displayTapped) {
- setState(() {
- _hideStuff = true;
- });
- } else {
- _cancelAndRestartTimer();
- }
- } else {
- _playPause();
- setState(() {
- _hideStuff = true;
- });
- }
- },
- child: Container(
- color: Colors.transparent,
- child: Center(
- child: AnimatedOpacity(
- opacity:
- _latestValue != null && !_hideStuff && !_dragging ? 1.0 : 0.0,
- duration: const Duration(milliseconds: 300),
- child: GestureDetector(
- onTap: _playPause,
- child: Padding(
- padding: const EdgeInsets.all(12.0),
- child: Icon(
- _latestValue.isPlaying ? Icons.pause : Icons.play_arrow,
- color: Colors.white, // same for both themes
- size: 64.0,
- ),
- ),
- ),
- ),
- ),
- ),
- ),
- );
- }
- Widget _buildCurrentPosition(Color iconColor) {
- final position = _latestValue != null && _latestValue.position != null
- ? _latestValue.position
- : Duration.zero;
- return Container(
- margin: const EdgeInsets.only(left: 20.0, right: 16.0),
- child: Text(
- formatDuration(position),
- style: const TextStyle(
- fontSize: 12.0,
- color: Colors.white,
- ),
- ),
- );
- }
- Widget _buildTotalDuration(Color iconColor) {
- final duration = _latestValue != null && _latestValue.duration != null
- ? _latestValue.duration
- : Duration.zero;
- return Padding(
- padding: const EdgeInsets.only(right: 20.0),
- child: Text(
- formatDuration(duration),
- style: const TextStyle(
- fontSize: 12.0,
- color: Colors.white,
- ),
- ),
- );
- }
- void _cancelAndRestartTimer() {
- _hideTimer?.cancel();
- _startHideTimer();
- setState(() {
- _hideStuff = false;
- _displayTapped = true;
- });
- }
- Future<void> _initialize() async {
- controller.addListener(_updateState);
- _updateState();
- if ((controller.value != null && controller.value.isPlaying) ||
- chewieController.autoPlay) {
- _startHideTimer();
- }
- if (chewieController.showControlsOnInitialize) {
- _initTimer = Timer(const Duration(milliseconds: 200), () {
- setState(() {
- _hideStuff = false;
- });
- });
- }
- }
- void _playPause() {
- bool isFinished = _latestValue.position >= _latestValue.duration;
- setState(() {
- if (controller.value.isPlaying) {
- _hideStuff = false;
- _hideTimer?.cancel();
- controller.pause();
- } else {
- _cancelAndRestartTimer();
- if (!controller.value.isInitialized) {
- controller.initialize().then((_) {
- controller.play();
- });
- } else {
- if (isFinished) {
- controller.seekTo(const Duration(seconds: 0));
- }
- controller.play();
- }
- }
- });
- }
- void _startHideTimer() {
- _hideTimer = Timer(const Duration(seconds: 2), () {
- setState(() {
- _hideStuff = true;
- });
- });
- }
- void _updateState() {
- setState(() {
- _latestValue = controller.value;
- });
- }
- Widget _buildProgressBar() {
- return Expanded(
- child: Padding(
- padding: const EdgeInsets.only(right: 16.0),
- child: MaterialVideoProgressBar(
- controller,
- onDragStart: () {
- setState(() {
- _dragging = true;
- });
- _hideTimer?.cancel();
- },
- onDragEnd: () {
- setState(() {
- _dragging = false;
- });
- _startHideTimer();
- },
- colors: chewieController.materialProgressColors ??
- ChewieProgressColors(
- playedColor: Theme.of(context).colorScheme.greenAlternative,
- handleColor: Colors.white,
- bufferedColor: Colors.white,
- backgroundColor: Theme.of(context).disabledColor,
- ),
- ),
- ),
- );
- }
- }
|