Merge pull request 'NOTIFICATION_EKA' (#42) from NOTIFICATION_EKA into master
continuous-integration/drone/push Build is passing Details

Reviewed-on: #42
FAVORITE_MUSICS_EKA
Emre KARTAL 2 years ago
commit fd9b015fa3

@ -24,6 +24,7 @@ if (flutterVersionName == null) {
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'com.google.gms.google-services'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android { android {

@ -8,6 +8,7 @@ import '../values/constants.dart';
class CommentComponent extends StatelessWidget { class CommentComponent extends StatelessWidget {
final Comment comment; final Comment comment;
const CommentComponent({Key? key, required this.comment}) : super(key: key); const CommentComponent({Key? key, required this.comment}) : super(key: key);
@override @override
@ -17,7 +18,9 @@ class CommentComponent extends StatelessWidget {
return Container( return Container(
width: double.infinity, width: double.infinity,
decoration: BoxDecoration(color: bgComment.withOpacity(0.6), borderRadius: BorderRadius.circular(15)), decoration: BoxDecoration(
color: bgComment.withOpacity(0.6),
borderRadius: BorderRadius.circular(15)),
padding: EdgeInsets.fromLTRB(20, 10, 20, 10), padding: EdgeInsets.fromLTRB(20, 10, 20, 10),
margin: EdgeInsets.only(bottom: 13), margin: EdgeInsets.only(bottom: 13),
child: Row( child: Row(
@ -46,14 +49,17 @@ class CommentComponent extends StatelessWidget {
), ),
Text( Text(
comment.user.pseudo, comment.user.pseudo,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600), style: GoogleFonts.plusJakartaSans(
color: Colors.white, fontWeight: FontWeight.w600),
), ),
Padding( Padding(
padding: EdgeInsets.only(top: 6, left: 10), padding: EdgeInsets.only(top: 6, left: 10),
child: Text( child: Text(
"il y a ${difference.inHours > 0 ? difference.inHours : difference.inMinutes}${difference.inHours > 0 ? "h" : "m"}", "il y a ${difference.inHours > 0 ? difference.inHours : difference.inMinutes}${difference.inHours > 0 ? "h" : "m"}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.6), fontWeight: FontWeight.w400, fontSize: 10), color: Colors.white.withOpacity(0.6),
fontWeight: FontWeight.w400,
fontSize: 10),
), ),
), ),
], ],
@ -65,7 +71,10 @@ class CommentComponent extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 10), padding: const EdgeInsets.symmetric(horizontal: 10),
child: Text( child: Text(
comment.text, comment.text,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w400, fontSize: 15), style: GoogleFonts.plusJakartaSans(
color: Colors.white,
fontWeight: FontWeight.w400,
fontSize: 15),
), ),
), ),
], ],

@ -1,438 +1,438 @@
import 'package:auto_size_text/auto_size_text.dart'; import 'package:auto_size_text/auto_size_text.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart'; import 'package:google_fonts/google_fonts.dart';
import 'package:gradient_borders/box_borders/gradient_box_border.dart'; import 'package:gradient_borders/box_borders/gradient_box_border.dart';
import 'package:text_scroll/text_scroll.dart'; import 'package:text_scroll/text_scroll.dart';
import 'package:zoom_tap_animation/zoom_tap_animation.dart'; import 'package:zoom_tap_animation/zoom_tap_animation.dart';
import '../model/Post.dart'; import '../model/Post.dart';
class PostComponent extends StatefulWidget { class PostComponent extends StatefulWidget {
final Function(int)? callback; final Function(int)? callback;
final Post post; final Post post;
final int index; final int index;
PostComponent({Key? key, required this.callback, required this.post, required this.index}) : super(key: key); PostComponent({Key? key, required this.callback, required this.post, required this.index}) : super(key: key);
@override @override
State<PostComponent> createState() => _PostComponentState(); State<PostComponent> createState() => _PostComponentState();
} }
class _PostComponentState extends State<PostComponent> with TickerProviderStateMixin { class _PostComponentState extends State<PostComponent> with TickerProviderStateMixin {
bool choice = false; bool choice = false;
DateTime today = DateTime.now(); DateTime today = DateTime.now();
void switchChoice() { void switchChoice() {
setState(() { setState(() {
choice = !choice; choice = !choice;
}); });
} }
@override @override
void initState() { void initState() {
print("post: ${widget.post.date.toString()}"); print("post: ${widget.post.date.toString()}");
print("ajrd: ${DateTime.now().toString()}"); print("ajrd: ${DateTime.now().toString()}");
super.initState(); super.initState();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return GestureDetector( return GestureDetector(
onTap: switchChoice, onTap: switchChoice,
child: LayoutBuilder( child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) { builder: (BuildContext context, BoxConstraints constraints) {
if (widget.callback == null) { if (widget.callback == null) {
return SizedBox( return SizedBox(
width: double.infinity, width: double.infinity,
child: Column( child: Column(
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
ClipOval( ClipOval(
child: SizedBox.fromSize( child: SizedBox.fromSize(
// Image radius // Image radius
child: Image( child: Image(
image: NetworkImage(widget.post.user.pp), image: NetworkImage(widget.post.user.pp),
width: 40, width: 40,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: const EdgeInsets.only(left: 10), padding: const EdgeInsets.only(left: 10),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
widget.post.user.pseudo, widget.post.user.pseudo,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600), style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600),
), ),
widget.post.location.item2 != null widget.post.location.item2 != null
? Text( ? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}", "${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
: Text( : Text(
"", "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
], ],
), ),
), ),
), ),
DateTime(today.year, today.month, today.day).isAtSameMomentAs( DateTime(today.year, today.month, today.day).isAtSameMomentAs(
DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day)) DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day))
? Text( ? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}", "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
) )
: Text( : Text(
"${widget.post.date.day}/${widget.post.date.month}/${widget.post.date.year}-${widget.post.date.hour}:${widget.post.date.minute}", "${widget.post.date.day}/${widget.post.date.month}/${widget.post.date.year}-${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
), ),
], ],
), ),
SizedBox(height: 10), SizedBox(height: 10),
ZoomTapAnimation( ZoomTapAnimation(
onTap: () { onTap: () {
if (widget.post.selfie != null) { if (widget.post.selfie != null) {
switchChoice(); switchChoice();
} }
}, },
enableLongTapRepeatEvent: false, enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100), longTapRepeatDuration: const Duration(milliseconds: 100),
begin: 1.0, begin: 1.0,
end: 0.99, end: 0.99,
beginDuration: const Duration(milliseconds: 70), beginDuration: const Duration(milliseconds: 70),
endDuration: const Duration(milliseconds: 100), endDuration: const Duration(milliseconds: 100),
beginCurve: Curves.decelerate, beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine, endCurve: Curves.easeInOutSine,
child: AspectRatio( child: AspectRatio(
aspectRatio: 1 / 1, aspectRatio: 1 / 1,
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
// add border // add border
border: const GradientBoxBorder( border: const GradientBoxBorder(
gradient: LinearGradient(colors: [ gradient: LinearGradient(colors: [
Colors.transparent, Colors.transparent,
Color(0xFF323232), Color(0xFF323232),
], begin: Alignment.topCenter, end: Alignment.bottomCenter), ], begin: Alignment.topCenter, end: Alignment.bottomCenter),
width: 2.5, width: 2.5,
), ),
// set border radius // set border radius
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(18), borderRadius: BorderRadius.circular(18),
// implement image // implement image
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
children: [ children: [
Image( Image(
image: NetworkImage(choice ? widget.post.selfie! : widget.post.music.cover!), image: NetworkImage(choice ? widget.post.selfie! : widget.post.music.cover!),
fit: BoxFit.cover, fit: BoxFit.cover,
width: double.infinity, width: double.infinity,
), ),
widget.post.selfie != null widget.post.selfie != null
? Positioned( ? Positioned(
top: 0, top: 0,
right: 0, right: 0,
child: Padding( child: Padding(
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
child: Container( child: Container(
constraints: BoxConstraints(maxWidth: 140, maxHeight: 140), constraints: BoxConstraints(maxWidth: 140, maxHeight: 140),
width: 90.sp, width: 90.sp,
height: 90.sp, height: 90.sp,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
// add border // add border
border: Border.all(width: 3, color: Colors.white), border: Border.all(width: 3, color: Colors.white),
// set border radius // set border radius
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(13), borderRadius: BorderRadius.circular(13),
// implement image // implement image
child: Image( child: Image(
image: NetworkImage( image: NetworkImage(
choice ? widget.post.music.cover! : widget.post.selfie!), choice ? widget.post.music.cover! : widget.post.selfie!),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
), ),
)) ))
: Container(), : Container(),
], ],
), ),
), ),
), ),
)), )),
SizedBox(height: 15), SizedBox(height: 15),
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Flexible( Flexible(
flex: 8, flex: 8,
child: TextScroll( child: TextScroll(
widget.post.music.artists.first.name!, widget.post.music.artists.first.name!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), velocity: Velocity(pixelsPerSecond: Offset(20, 0)),
)), )),
Padding( Padding(
padding: EdgeInsets.only(bottom: 10.h, right: 5.w, left: 5.w), padding: EdgeInsets.only(bottom: 10.h, right: 5.w, left: 5.w),
child: ClipOval( child: ClipOval(
child: Container( child: Container(
width: 5.h, width: 5.h,
height: 5.h, height: 5.h,
color: Colors.white, color: Colors.white,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: EdgeInsets.only(bottom: 2), padding: EdgeInsets.only(bottom: 2),
child: TextScroll( child: TextScroll(
widget.post.music.title!, widget.post.music.title!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w300, fontSize: 16.h), height: 1, color: Colors.white, fontWeight: FontWeight.w300, fontSize: 16.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
velocity: Velocity(pixelsPerSecond: Offset(50, 20)), velocity: Velocity(pixelsPerSecond: Offset(50, 20)),
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
), ),
)), )),
Container(width: 10), Container(width: 10),
AutoSizeText( AutoSizeText(
widget.post.music.date.toString(), widget.post.music.date.toString(),
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.5), fontWeight: FontWeight.w300, fontSize: 16.h), color: Colors.white.withOpacity(0.5), fontWeight: FontWeight.w300, fontSize: 16.h),
textAlign: TextAlign.end, textAlign: TextAlign.end,
maxFontSize: 20, maxFontSize: 20,
), ),
], ],
), ),
], ],
)); ));
} }
return SizedBox( return SizedBox(
width: double.infinity, width: double.infinity,
child: Column( child: Column(
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
ClipOval( ClipOval(
child: SizedBox.fromSize( child: SizedBox.fromSize(
// Image radius // Image radius
child: Image( child: Image(
image: NetworkImage(widget.post.user.pp), image: NetworkImage(widget.post.user.pp),
width: 40, width: 40,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: const EdgeInsets.only(left: 10), padding: const EdgeInsets.only(left: 10),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
widget.post.user.pseudo, widget.post.user.pseudo,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600), style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600),
), ),
widget.post.location.item2 != null widget.post.location.item2 != null
? Text( ? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}", "${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
: Text( : Text(
"", "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
], ],
), ),
), ),
), ),
DateTime(today.year, today.month, today.day).isAtSameMomentAs( DateTime(today.year, today.month, today.day).isAtSameMomentAs(
DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day)) DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day))
? Text( ? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}", "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
) )
: Text( : Text(
"hier, ${widget.post.date.hour}:${widget.post.date.minute}", "hier, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
), ),
], ],
), ),
SizedBox(height: 10), SizedBox(height: 10),
ZoomTapAnimation( ZoomTapAnimation(
onTap: () { onTap: () {
widget.callback!(widget.index); widget.callback!(widget.index);
}, },
enableLongTapRepeatEvent: false, enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100), longTapRepeatDuration: const Duration(milliseconds: 100),
begin: 1.0, begin: 1.0,
end: 0.99, end: 0.99,
beginDuration: const Duration(milliseconds: 70), beginDuration: const Duration(milliseconds: 70),
endDuration: const Duration(milliseconds: 100), endDuration: const Duration(milliseconds: 100),
beginCurve: Curves.decelerate, beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine, endCurve: Curves.easeInOutSine,
child: AspectRatio( child: AspectRatio(
aspectRatio: 1 / 1, aspectRatio: 1 / 1,
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
// add border // add border
border: const GradientBoxBorder( border: const GradientBoxBorder(
gradient: LinearGradient(colors: [ gradient: LinearGradient(colors: [
Colors.transparent, Colors.transparent,
Color(0xFF323232), Color(0xFF323232),
], begin: Alignment.topCenter, end: Alignment.bottomCenter), ], begin: Alignment.topCenter, end: Alignment.bottomCenter),
width: 2.5, width: 2.5,
), ),
// set border radius // set border radius
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(18), borderRadius: BorderRadius.circular(18),
// implement image // implement image
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
children: [ children: [
Image( Image(
image: NetworkImage(widget.post.music.cover!), image: NetworkImage(widget.post.music.cover!),
fit: BoxFit.cover, fit: BoxFit.cover,
width: double.infinity, width: double.infinity,
), ),
Image( Image(
image: AssetImage("assets/images/shadow_post.png"), image: AssetImage("assets/images/shadow_post.png"),
opacity: AnimationController(vsync: this, value: 0.7), opacity: AnimationController(vsync: this, value: 0.7),
fit: BoxFit.fitHeight, fit: BoxFit.fitHeight,
width: double.infinity, width: double.infinity,
), ),
widget.post.description == null widget.post.description == null
? Container() ? Container()
: Padding( : Padding(
padding: EdgeInsets.all(15), padding: EdgeInsets.all(15),
child: AutoSizeText( child: AutoSizeText(
'${widget.post.description}', '${widget.post.description}',
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, fontWeight: FontWeight.w400, fontSize: 15.sp), color: Colors.white, fontWeight: FontWeight.w400, fontSize: 15.sp),
maxFontSize: 20, maxFontSize: 20,
maxLines: 1, maxLines: 1,
), ),
), ),
widget.post.selfie != null widget.post.selfie != null
? Positioned( ? Positioned(
top: 0, top: 0,
right: 0, right: 0,
child: Padding( child: Padding(
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
child: Container( child: Container(
constraints: BoxConstraints(maxWidth: 140, maxHeight: 140), constraints: BoxConstraints(maxWidth: 140, maxHeight: 140),
width: 90.sp, width: 90.sp,
height: 90.sp, height: 90.sp,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
// add border // add border
border: Border.all(width: 3, color: Colors.white), border: Border.all(width: 3, color: Colors.white),
// set border radius // set border radius
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(13), borderRadius: BorderRadius.circular(13),
// implement image // implement image
child: Image( child: Image(
image: NetworkImage(widget.post.selfie!), image: NetworkImage(widget.post.selfie!),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
), ),
)) ))
: Container(), : Container(),
], ],
), ),
), ),
), ),
)), )),
SizedBox(height: 15), SizedBox(height: 15),
SizedBox( SizedBox(
height: 60, height: 60,
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
children: [ children: [
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: EdgeInsets.only(bottom: 2), padding: EdgeInsets.only(bottom: 2),
child: TextScroll( child: TextScroll(
widget.post.music.title!, widget.post.music.title!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
velocity: Velocity(pixelsPerSecond: Offset(50, 20)), velocity: Velocity(pixelsPerSecond: Offset(50, 20)),
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
), ),
)), )),
Container(width: 10), Container(width: 10),
AutoSizeText( AutoSizeText(
widget.post.music.date.toString(), widget.post.music.date.toString(),
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
textAlign: TextAlign.end, textAlign: TextAlign.end,
maxFontSize: 20, maxFontSize: 20,
), ),
], ],
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: TextScroll( child: TextScroll(
widget.post.music.artists.first.name!, widget.post.music.artists.first.name!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, height: 1,
color: Colors.white.withOpacity(0.5), color: Colors.white.withOpacity(0.5),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 16.h), fontSize: 16.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), velocity: Velocity(pixelsPerSecond: Offset(20, 0)),
)), )),
], ],
), ),
) )
], ],
)); ));
}, },
), ),
); );
} }
} }

@ -15,18 +15,22 @@ import '../values/constants.dart';
class TopNavBarComponent extends StatefulWidget { class TopNavBarComponent extends StatefulWidget {
final Function(bool) callback; final Function(bool) callback;
const TopNavBarComponent({Key? key, required this.callback}) : super(key: key);
const TopNavBarComponent({Key? key, required this.callback})
: super(key: key);
@override @override
State<TopNavBarComponent> createState() => _TopNavBarComponentState(); State<TopNavBarComponent> createState() => _TopNavBarComponentState();
} }
class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProviderStateMixin { class _TopNavBarComponentState extends State<TopNavBarComponent>
with TickerProviderStateMixin {
bool choice = true; bool choice = true;
bool isDismissed = true; bool isDismissed = true;
final DateTime midnight = DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day + 1); final DateTime midnight = DateTime(
DateTime.now().year, DateTime.now().month, DateTime.now().day + 1);
void actionSurBouton(bool choice) async { void actionSurBouton(bool choice) async {
widget.callback(choice); widget.callback(choice);
@ -45,7 +49,8 @@ class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProv
var now = tz.TZDateTime.now(franceTimeZone); var now = tz.TZDateTime.now(franceTimeZone);
// Calculate the midnight time for the next day in France timezone // Calculate the midnight time for the next day in France timezone
var midnight = tz.TZDateTime(franceTimeZone, now.year, now.month, now.day + 1); var midnight =
tz.TZDateTime(franceTimeZone, now.year, now.month, now.day + 1);
bool res = await MyApp.postViewModel.getAvailable(); bool res = await MyApp.postViewModel.getAvailable();
if (res) { if (res) {
@ -64,7 +69,8 @@ class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProv
alignment: Alignment.centerLeft, alignment: Alignment.centerLeft,
child: Text( child: Text(
"Capsule disponible", "Capsule disponible",
style: GoogleFonts.plusJakartaSans(color: Colors.grey, fontSize: 15), style:
GoogleFonts.plusJakartaSans(color: Colors.grey, fontSize: 15),
), ),
), ),
flushbarStyle: FlushbarStyle.FLOATING, flushbarStyle: FlushbarStyle.FLOATING,
@ -101,7 +107,8 @@ class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProv
alignment: Alignment.centerLeft, alignment: Alignment.centerLeft,
child: CountdownTimer( child: CountdownTimer(
endTime: midnight.millisecondsSinceEpoch, endTime: midnight.millisecondsSinceEpoch,
textStyle: GoogleFonts.plusJakartaSans(color: Colors.grey, fontSize: 15), textStyle:
GoogleFonts.plusJakartaSans(color: Colors.grey, fontSize: 15),
), ),
), ),
flushbarStyle: FlushbarStyle.FLOATING, flushbarStyle: FlushbarStyle.FLOATING,
@ -193,23 +200,30 @@ class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProv
} }
}, },
child: LayoutBuilder( child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) { builder: (BuildContext context,
BoxConstraints constraints) {
if (choice) { if (choice) {
return Padding( return Padding(
padding: const EdgeInsets.only(left: 8, top: 0, right: 8, bottom: 6), padding: const EdgeInsets.only(
left: 8, top: 0, right: 8, bottom: 6),
child: AutoSizeText( child: AutoSizeText(
"Mes amis", "Mes amis",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontWeight: FontWeight.w500, fontSize: 16, color: Colors.white), fontWeight: FontWeight.w500,
fontSize: 16,
color: Colors.white),
), ),
); );
} else { } else {
return Padding( return Padding(
padding: const EdgeInsets.only(left: 8, top: 0, right: 8, bottom: 6), padding: const EdgeInsets.only(
left: 8, top: 0, right: 8, bottom: 6),
child: AutoSizeText( child: AutoSizeText(
"Mes amis", "Mes amis",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontWeight: FontWeight.w300, fontSize: 16, color: unactiveFeed), fontWeight: FontWeight.w300,
fontSize: 16,
color: unactiveFeed),
)); ));
} }
}, },
@ -226,22 +240,29 @@ class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProv
} }
}, },
child: LayoutBuilder( child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) { builder: (BuildContext context,
BoxConstraints constraints) {
if (choice) { if (choice) {
return Padding( return Padding(
padding: const EdgeInsets.only(left: 8, top: 0, right: 8, bottom: 6), padding: const EdgeInsets.only(
left: 8, top: 0, right: 8, bottom: 6),
child: AutoSizeText( child: AutoSizeText(
"Discovery", "Discovery",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontWeight: FontWeight.w300, fontSize: 16, color: unactiveFeed), fontWeight: FontWeight.w300,
fontSize: 16,
color: unactiveFeed),
)); ));
} else { } else {
return Padding( return Padding(
padding: const EdgeInsets.only(left: 8, top: 0, right: 8, bottom: 6), padding: const EdgeInsets.only(
left: 8, top: 0, right: 8, bottom: 6),
child: AutoSizeText( child: AutoSizeText(
"Discovery", "Discovery",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontWeight: FontWeight.w500, fontSize: 16, color: Colors.white), fontWeight: FontWeight.w500,
fontSize: 16,
color: Colors.white),
)); ));
} }
}, },

@ -3,6 +3,7 @@ import 'package:audioplayers/audioplayers.dart';
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart'; import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
@ -31,6 +32,7 @@ Future<void> main() async {
await Firebase.initializeApp( await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform, options: DefaultFirebaseOptions.currentPlatform,
); );
await FirebaseMessaging.instance.requestPermission(sound: true);
runApp(const MyApp()); runApp(const MyApp());
} }
@ -65,7 +67,8 @@ class _MyAppState extends State<MyApp> {
print('User is currently signed out!'); print('User is currently signed out!');
return null; return null;
} else { } else {
MyApp.userViewModel.userCurrent = (await (MyApp.userViewModel.getUser(user.uid)))!; MyApp.userViewModel.userCurrent =
(await (MyApp.userViewModel.getUser(user.uid)))!;
userCurrent = Stream.value(MyApp.userViewModel.userCurrent); userCurrent = Stream.value(MyApp.userViewModel.userCurrent);
print('User is signed in!'); print('User is signed in!');
} }
@ -112,14 +115,16 @@ class _MyAppState extends State<MyApp> {
return FutureBuilder<userJustMusic.User?>( return FutureBuilder<userJustMusic.User?>(
future: MyApp.userViewModel.getUser(snapshot.data!.uid), future: MyApp.userViewModel.getUser(snapshot.data!.uid),
builder: (context, userSnapshot) { builder: (context, userSnapshot) {
if (userSnapshot.connectionState == ConnectionState.waiting) { if (userSnapshot.connectionState ==
ConnectionState.waiting) {
return LoadingScreen(); return LoadingScreen();
} else if (userSnapshot.hasData) { } else if (userSnapshot.hasData) {
MyApp.userViewModel.userCurrent = userSnapshot.data!; MyApp.userViewModel.userCurrent = userSnapshot.data!;
return AnimatedSwitcher( return AnimatedSwitcher(
duration: Duration(milliseconds: 1000), duration: Duration(milliseconds: 1000),
transitionBuilder: (child, animation) { transitionBuilder: (child, animation) {
return FadeTransition(opacity: animation, child: child); return FadeTransition(
opacity: animation, child: child);
}, },
child: FeedScreen(), child: FeedScreen(),
); );

@ -4,13 +4,14 @@ class User {
String _uniquePseudo; String _uniquePseudo;
String _mail; String _mail;
String _pp; String _pp;
String _token;
List<String> _followers; List<String> _followers;
int _capsules; int _capsules;
List<String> _followed; List<String> _followed;
// Constructor // Constructor
User(this._id, this._pseudo, this._uniquePseudo, this._mail, User(this._id, this._pseudo, this._uniquePseudo, this._mail, this._pp,
this._pp, this._followers, this._capsules, this._followed); this._token, this._followers, this._capsules, this._followed);
//Getters and setters //Getters and setters
String get id => _id; String get id => _id;
@ -39,6 +40,12 @@ class User {
_pp = value; _pp = value;
} }
String get token => _token;
set token(String value) {
_token = value;
}
int get capsules => _capsules; int get capsules => _capsules;
set capsules(int value) { set capsules(int value) {

@ -1,13 +1,14 @@
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore/cloud_firestore.dart';
import '../../main.dart'; import '../../main.dart';
import '../Comment.dart'; import '../Comment.dart';
import '../User.dart'; import '../User.dart';
class CommentMapper { class CommentMapper {
static Future<Comment> toModel(DocumentSnapshot<Map<String, dynamic>> snapshot) async { static Future<Comment> toModel(
final data = snapshot.data(); DocumentSnapshot<Map<String, dynamic>> snapshot) async {
User? user = await MyApp.userViewModel.getUser(data?['user_id']); final data = snapshot.data();
return Comment(snapshot.id, user!, data?["text"] ?? "", data?["date"].toDate()); User? user = await MyApp.userViewModel.getUser(data?['user_id']);
} return Comment(snapshot.id, user!, data?["text"], data?["date"].toDate());
} }
}

@ -10,6 +10,7 @@ class UserMapper {
data?["unique_id"], data?["unique_id"],
data?["mail"], data?["mail"],
data?["picture"], data?["picture"],
data?["token_notify"],
List<String>.from(data?["followers"] as List), List<String>.from(data?["followers"] as List),
data?["nbCapsules"] ?? 0, data?["nbCapsules"] ?? 0,
List<String>.from(data?["followed"] as List)); List<String>.from(data?["followed"] as List));

@ -21,6 +21,7 @@ import '../values/constants.dart';
class DetailPostScreen extends StatefulWidget { class DetailPostScreen extends StatefulWidget {
final Post post; final Post post;
const DetailPostScreen({super.key, required this.post}); const DetailPostScreen({super.key, required this.post});
@override @override
@ -31,6 +32,7 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
TextEditingController _textController = TextEditingController(); TextEditingController _textController = TextEditingController();
late FocusNode myFocusNode; late FocusNode myFocusNode;
late StreamSubscription<bool> keyboardSubscription; late StreamSubscription<bool> keyboardSubscription;
Future<void> resetFullScreen() async { Future<void> resetFullScreen() async {
await SystemChannels.platform.invokeMethod<void>( await SystemChannels.platform.invokeMethod<void>(
'SystemChrome.restoreSystemUIOverlays', 'SystemChrome.restoreSystemUIOverlays',
@ -59,11 +61,13 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
print("ajrd: ${DateTime.now().toString()}"); print("ajrd: ${DateTime.now().toString()}");
myFocusNode = FocusNode(); myFocusNode = FocusNode();
var keyboardVisibilityController = KeyboardVisibilityController(); var keyboardVisibilityController = KeyboardVisibilityController();
print('Keyboard visibility direct query: ${keyboardVisibilityController.isVisible}'); print(
'Keyboard visibility direct query: ${keyboardVisibilityController.isVisible}');
super.initState(); super.initState();
keyboardSubscription = keyboardVisibilityController.onChange.listen((bool visible) { keyboardSubscription =
keyboardVisibilityController.onChange.listen((bool visible) {
if (!visible) { if (!visible) {
myFocusNode.unfocus(); myFocusNode.unfocus();
} }
@ -103,8 +107,11 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
height: 400, height: 400,
width: double.infinity, width: double.infinity,
child: FadeInImage.assetNetwork( child: FadeInImage.assetNetwork(
placeholder: "assets/images/loadingPlaceholder.gif", placeholder:
image: choice ? widget.post.selfie! : widget.post.music.cover!, "assets/images/loadingPlaceholder.gif",
image: choice
? widget.post.selfie!
: widget.post.music.cover!,
width: double.infinity, width: double.infinity,
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
@ -125,89 +132,134 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
), ),
), ),
child: Padding( child: Padding(
padding: const EdgeInsets.fromLTRB(20, 0, 20, 10), padding:
const EdgeInsets.fromLTRB(20, 0, 20, 10),
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.only(right: 10), padding:
const EdgeInsets.only(right: 10),
child: choice child: choice
? Padding( ? Padding(
padding: const EdgeInsets.all(4), padding:
const EdgeInsets.all(4),
child: ClipOval( child: ClipOval(
child: SizedBox.fromSize( child: SizedBox.fromSize(
// Image radius // Image radius
child: Image( child: Image(
image: NetworkImage(widget.post.user.pp), image: NetworkImage(
widget.post.user.pp),
width: 45, width: 45,
), ),
), ),
), ),
) )
: widget.post.music.previewUrl != null : widget.post.music.previewUrl !=
? ButtonPlayComponent(music: widget.post.music) null
? ButtonPlayComponent(
music: widget.post.music)
: Container(), : Container(),
), ),
Flexible( Flexible(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment:
crossAxisAlignment: CrossAxisAlignment.start, MainAxisAlignment.end,
crossAxisAlignment:
CrossAxisAlignment.start,
children: [ children: [
Flexible( Flexible(
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment:
CrossAxisAlignment.end,
children: [ children: [
Expanded( Expanded(
child: ScrollConfiguration( child: ScrollConfiguration(
behavior: ScrollBehavior().copyWith(scrollbars: false), behavior: ScrollBehavior()
.copyWith(
scrollbars:
false),
child: TextScroll( child: TextScroll(
choice ? widget.post.user.pseudo : widget.post.music.title!, choice
style: GoogleFonts.plusJakartaSans( ? widget.post.user
.pseudo
: widget.post.music
.title!,
style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.w800, fontWeight:
FontWeight.w800,
fontSize: 22, fontSize: 22,
), ),
mode: TextScrollMode.endless, mode: TextScrollMode
pauseBetween: Duration(milliseconds: 500), .endless,
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), pauseBetween: Duration(
milliseconds: 500),
velocity: Velocity(
pixelsPerSecond:
Offset(20, 0)),
), ),
), ),
), ),
Padding( Padding(
padding: const EdgeInsets.only(left: 20.0), padding:
const EdgeInsets.only(
left: 20.0),
child: choice child: choice
? DateTime(today.year, today.month, today.day).isAtSameMomentAs( ? DateTime(
today.year,
today.month,
today.day)
.isAtSameMomentAs(
DateTime( DateTime(
widget.post.date.year, widget.post.date
widget.post.date.month, .year,
widget.post.date.day, widget.post.date
.month,
widget.post.date
.day,
), ),
) )
? Text( ? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}", "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color: Colors
fontWeight: FontWeight.w900, .white,
fontWeight:
FontWeight
.w900,
fontSize: 18, fontSize: 18,
), ),
) )
: Text( : Text(
"hier, ${widget.post.date.hour}:${widget.post.date.minute}", "hier, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color: Colors
fontWeight: FontWeight.w900, .white,
fontWeight:
FontWeight
.w900,
fontSize: 18, fontSize: 18,
), ),
) )
: Text( : Text(
widget.post.music.date.toString(), widget
style: GoogleFonts.plusJakartaSans( .post.music.date
.toString(),
style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color:
fontWeight: FontWeight.w900, Colors.white,
fontWeight:
FontWeight
.w900,
fontSize: 18, fontSize: 18,
), ),
), ),
@ -216,36 +268,52 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
), ),
), ),
choice choice
? widget.post.location.item2 != null ? widget.post.location.item2 !=
null
? Text( ? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}", "${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts
color: Colors.white.withOpacity(0.5), .plusJakartaSans(
fontWeight: FontWeight.w400, color: Colors.white
.withOpacity(0.5),
fontWeight:
FontWeight.w400,
fontSize: 15, fontSize: 15,
), ),
) )
: Text( : Text(
"", "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts
color: Colors.white.withOpacity(0.4), .plusJakartaSans(
fontWeight: FontWeight.w300, color: Colors.white
.withOpacity(0.4),
fontWeight:
FontWeight.w300,
fontSize: 13, fontSize: 13,
), ),
) )
: ScrollConfiguration( : ScrollConfiguration(
behavior: ScrollBehavior().copyWith(scrollbars: false), behavior: ScrollBehavior()
.copyWith(
scrollbars: false),
child: TextScroll( child: TextScroll(
widget.post.music.artists.first.name!, widget.post.music.artists
style: GoogleFonts.plusJakartaSans( .first.name!,
style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.w500, fontWeight:
FontWeight.w500,
fontSize: 17, fontSize: 17,
), ),
mode: TextScrollMode.endless, mode: TextScrollMode
pauseBetween: Duration(milliseconds: 500), .endless,
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), pauseBetween: Duration(
milliseconds: 500),
velocity: Velocity(
pixelsPerSecond:
Offset(20, 0)),
), ),
), ),
], ],
@ -259,7 +327,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
? Align( ? Align(
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Padding( child: Padding(
padding: const EdgeInsets.fromLTRB(50, 35, 50, 35), padding: const EdgeInsets.fromLTRB(
50, 35, 50, 35),
child: Text( child: Text(
widget.post.description!, widget.post.description!,
textAlign: TextAlign.left, textAlign: TextAlign.left,
@ -289,50 +358,77 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
child: Column( child: Column(
children: [ children: [
Padding( Padding(
padding: EdgeInsets.symmetric(vertical: 20), padding:
EdgeInsets.symmetric(vertical: 20),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment:
MainAxisAlignment.spaceEvenly,
children: [ children: [
SvgPicture.asset("assets/images/heart.svg", semanticsLabel: 'Like Logo'), SvgPicture.asset(
"assets/images/heart.svg",
semanticsLabel: 'Like Logo'),
GestureDetector( GestureDetector(
onTap: () { onTap: () {
myFocusNode.requestFocus(); myFocusNode.requestFocus();
}, },
child: child: SvgPicture.asset(
SvgPicture.asset("assets/images/chat.svg", semanticsLabel: 'Chat Logo'), "assets/images/chat.svg",
semanticsLabel: 'Chat Logo'),
), ),
SvgPicture.asset("assets/images/add.svg", SvgPicture.asset(
semanticsLabel: 'Add playlist Logo'), "assets/images/add.svg",
SvgPicture.asset("assets/images/save.svg", semanticsLabel: 'Save Logo'), semanticsLabel:
SvgPicture.asset("assets/images/report.svg", semanticsLabel: 'Report Logo'), 'Add playlist Logo'),
SvgPicture.asset(
"assets/images/save.svg",
semanticsLabel: 'Save Logo'),
SvgPicture.asset(
"assets/images/report.svg",
semanticsLabel: 'Report Logo'),
], ],
), ),
), ),
FutureBuilder<List<Comment>>( FutureBuilder<List<Comment>>(
future: MyApp.commentViewModel.getCommentsByPostId(widget.post.id), future: MyApp.commentViewModel
builder: (BuildContext context, AsyncSnapshot<List<Comment>> snapshot) { .getCommentsByPostId(widget.post.id),
builder: (BuildContext context,
AsyncSnapshot<List<Comment>>
snapshot) {
if (snapshot.hasData) { if (snapshot.hasData) {
print("test:"); print("test:");
return Column( return Column(
children: [ children: [
snapshot.data!.length > 0 snapshot.data!.length > 0
? Padding( ? Padding(
padding: const EdgeInsets.all(15.0), padding:
const EdgeInsets.all(
15.0),
child: RichText( child: RichText(
text: TextSpan( text: TextSpan(
text: snapshot.data!.length.toString(), text: snapshot
style: GoogleFonts.plusJakartaSans( .data!.length
.toString(),
style: GoogleFonts
.plusJakartaSans(
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.w800, fontWeight:
FontWeight.w800,
), ),
children: [ children: [
TextSpan( TextSpan(
text: snapshot.data!.length > 1 text: snapshot
.data!
.length >
1
? " commentaires" ? " commentaires"
: " commentaire", : " commentaire",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts
color: Colors.white, .plusJakartaSans(
fontWeight: FontWeight.w400, color: Colors
.white,
fontWeight:
FontWeight
.w400,
), ),
), ),
], ],
@ -342,13 +438,23 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
: Container(), : Container(),
snapshot.data!.length > 0 snapshot.data!.length > 0
? Padding( ? Padding(
padding: const EdgeInsets.fromLTRB(20, 0, 20, 20), padding: const EdgeInsets
.fromLTRB(
20, 0, 20, 20),
child: ListView.builder( child: ListView.builder(
shrinkWrap: true, shrinkWrap: true,
physics: NeverScrollableScrollPhysics(), physics:
itemCount: snapshot.data?.length, NeverScrollableScrollPhysics(),
itemBuilder: (BuildContext context, int index) { itemCount: snapshot
return CommentComponent(comment: snapshot.data![index]); .data?.length,
itemBuilder:
(BuildContext
context,
int index) {
return CommentComponent(
comment: snapshot
.data![
index]);
}, },
), ),
) )
@ -358,7 +464,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
} else { } else {
return Container( return Container(
child: Center( child: Center(
child: CupertinoActivityIndicator(), child:
CupertinoActivityIndicator(),
), ),
); );
} }
@ -379,11 +486,14 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
} }
}, },
enableLongTapRepeatEvent: false, enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100), longTapRepeatDuration:
const Duration(milliseconds: 100),
begin: 1.0, begin: 1.0,
end: 0.96, end: 0.96,
beginDuration: const Duration(milliseconds: 70), beginDuration:
endDuration: const Duration(milliseconds: 100), const Duration(milliseconds: 70),
endDuration:
const Duration(milliseconds: 100),
beginCurve: Curves.decelerate, beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine, endCurve: Curves.easeInOutSine,
child: Container( child: Container(
@ -392,13 +502,16 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
height: 120, height: 120,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
border: Border.all(width: 4, color: Colors.white), border: Border.all(
width: 4, color: Colors.white),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
// implementer l'image // implementer l'image
child: Image( child: Image(
image: NetworkImage(choice ? widget.post.music.cover! : widget.post.selfie!), image: NetworkImage(choice
? widget.post.music.cover!
: widget.post.selfie!),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
@ -434,7 +547,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
), ),
), ),
Padding( Padding(
padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom), padding: EdgeInsets.only(
bottom: MediaQuery.of(context).viewInsets.bottom),
child: Container( child: Container(
height: 70, height: 70,
width: double.infinity, width: double.infinity,
@ -464,7 +578,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
focusNode: myFocusNode, focusNode: myFocusNode,
onSubmitted: (value) async { onSubmitted: (value) async {
if (value.isNotEmpty) { if (value.isNotEmpty) {
await MyApp.commentViewModel.addComment(value, widget.post.id); await MyApp.commentViewModel
.addComment(value, widget.post.id);
} }
setState(() { setState(() {
_textController.clear(); _textController.clear();
@ -472,7 +587,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
}, },
cursorColor: primaryColor, cursorColor: primaryColor,
keyboardType: TextInputType.emailAddress, keyboardType: TextInputType.emailAddress,
style: GoogleFonts.plusJakartaSans(color: Colors.white), style: GoogleFonts.plusJakartaSans(
color: Colors.white),
decoration: InputDecoration( decoration: InputDecoration(
suffixIcon: Icon( suffixIcon: Icon(
Icons.send, Icons.send,
@ -480,19 +596,25 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
size: 20, size: 20,
), ),
focusedBorder: OutlineInputBorder( focusedBorder: OutlineInputBorder(
borderSide: BorderSide(width: 1, color: grayText), borderSide:
borderRadius: BorderRadius.all(Radius.circular(100)), BorderSide(width: 1, color: grayText),
borderRadius:
BorderRadius.all(Radius.circular(100)),
), ),
contentPadding: EdgeInsets.only(top: 0, bottom: 0, left: 20, right: 20), contentPadding: EdgeInsets.only(
top: 0, bottom: 0, left: 20, right: 20),
fillColor: bgModal, fillColor: bgModal,
filled: true, filled: true,
focusColor: Color.fromRGBO(255, 255, 255, 0.30), focusColor: Color.fromRGBO(255, 255, 255, 0.30),
enabledBorder: OutlineInputBorder( enabledBorder: OutlineInputBorder(
borderSide: BorderSide(width: 1, color: grayText), borderSide:
borderRadius: BorderRadius.all(Radius.circular(100)), BorderSide(width: 1, color: grayText),
borderRadius:
BorderRadius.all(Radius.circular(100)),
), ),
hintText: 'Ajoutez une réponse...', hintText: 'Ajoutez une réponse...',
hintStyle: GoogleFonts.plusJakartaSans(color: grayText), hintStyle:
GoogleFonts.plusJakartaSans(color: grayText),
), ),
), ),
), ),
@ -511,7 +633,8 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
class MyBehavior extends ScrollBehavior { class MyBehavior extends ScrollBehavior {
@override @override
Widget buildOverscrollIndicator(BuildContext context, Widget child, ScrollableDetails details) { Widget buildOverscrollIndicator(
BuildContext context, Widget child, ScrollableDetails details) {
return child; return child;
} }
} }

@ -1,242 +1,273 @@
import 'dart:async'; import 'dart:async';
import 'package:circular_reveal_animation/circular_reveal_animation.dart'; import 'package:circular_reveal_animation/circular_reveal_animation.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart'; import 'package:google_fonts/google_fonts.dart';
import 'package:justmusic/main.dart'; import 'package:justmusic/main.dart';
import 'package:justmusic/main.dart'; import 'package:justmusic/main.dart';
import 'package:tuple/tuple.dart'; import 'package:tuple/tuple.dart';
import '../components/post_component.dart'; import '../components/post_component.dart';
import '../components/top_nav_bar_component.dart'; import '../components/top_nav_bar_component.dart';
import '../model/Post.dart'; import '../model/Post.dart';
import '../values/constants.dart'; import '../values/constants.dart';
import 'detail_post_screen.dart'; import 'detail_post_screen.dart';
class FeedScreen extends StatefulWidget { class FeedScreen extends StatefulWidget {
const FeedScreen({Key? key}) : super(key: key); const FeedScreen({Key? key}) : super(key: key);
@override @override
State<FeedScreen> createState() => _FeedScreenState(); State<FeedScreen> createState() => _FeedScreenState();
} }
class _FeedScreenState extends State<FeedScreen> with SingleTickerProviderStateMixin { class _FeedScreenState extends State<FeedScreen>
late AnimationController animationController; with SingleTickerProviderStateMixin {
late Animation<double> animation; late AnimationController animationController;
late List<Post> friendFeed; late Animation<double> animation;
Timer? timer; late List<Post> friendFeed;
Timer? timer;
late List<Post> discoveryFeed;
late List<Post> displayFeed; late List<Post> discoveryFeed;
bool isDismissed = true; late List<Post> displayFeed;
bool choiceFeed = false; bool isDismissed = true;
bool choiceFeed = false;
@override
void initState() { @override
super.initState(); void initState() {
friendFeed = MyApp.postViewModel.postsFriends; super.initState();
discoveryFeed = MyApp.postViewModel.bestPosts; friendFeed = MyApp.postViewModel.postsFriends;
animationController = AnimationController( discoveryFeed = MyApp.postViewModel.bestPosts;
vsync: this, animationController = AnimationController(
duration: Duration(milliseconds: 400), vsync: this,
); duration: Duration(milliseconds: 400),
animation = CurvedAnimation( );
parent: animationController, animation = CurvedAnimation(
curve: Curves.easeInOutSine, parent: animationController,
); curve: Curves.easeInOutSine,
animationController.forward(); );
} animationController.forward();
}
Future _refresh() async {
if (choiceFeed) { Future _refresh() async {
await MyApp.postViewModel.getBestPosts(); if (choiceFeed) {
setState(() {}); await MyApp.postViewModel.getBestPosts();
} else { setState(() {});
await MyApp.postViewModel.getPostsFriends(); } else {
setState(() {}); await MyApp.postViewModel.getPostsFriends();
} setState(() {});
} }
}
void changeFeed(bool choice) {
// Mettez ici le code pour l'action que vous souhaitez effectuer avec le paramètre void changeFeed(bool choice) {
if (choice) { // Mettez ici le code pour l'action que vous souhaitez effectuer avec le paramètre
setState(() { if (choice) {
animationController.reset(); setState(() {
displayFeed = MyApp.postViewModel.postsFriends.reversed.toList(); animationController.reset();
animationController.forward(); displayFeed = MyApp.postViewModel.postsFriends.reversed.toList();
choiceFeed = false; animationController.forward();
}); choiceFeed = false;
} else { });
setState(() { } else {
animationController.reset(); setState(() {
displayFeed = MyApp.postViewModel.bestPosts.reversed.toList(); animationController.reset();
animationController.forward(); displayFeed = MyApp.postViewModel.bestPosts.reversed.toList();
choiceFeed = true; animationController.forward();
}); choiceFeed = true;
} });
} }
}
void openDetailPost(int index) {
showModalBottomSheet( void openDetailPost(int index) {
backgroundColor: bgModal, showModalBottomSheet(
elevation: 1, backgroundColor: bgModal,
constraints: const BoxConstraints( elevation: 1,
maxWidth: 600, constraints: const BoxConstraints(
), maxWidth: 600,
isScrollControlled: true, ),
context: context, isScrollControlled: true,
shape: const RoundedRectangleBorder( context: context,
borderRadius: BorderRadius.only(topLeft: Radius.circular(20), topRight: Radius.circular(20))), shape: const RoundedRectangleBorder(
builder: ((BuildContext context) { borderRadius: BorderRadius.only(
return ClipRRect( topLeft: Radius.circular(20), topRight: Radius.circular(20))),
borderRadius: BorderRadius.only(topLeft: Radius.circular(20), topRight: Radius.circular(20)), builder: ((BuildContext context) {
child: DetailPostScreen(post: displayFeed[index])); return ClipRRect(
}), borderRadius: BorderRadius.only(
); topLeft: Radius.circular(20), topRight: Radius.circular(20)),
} child: DetailPostScreen(post: displayFeed[index]));
}),
_fetchData() async { );
friendFeed = await MyApp.postViewModel.getPostsFriends(); }
discoveryFeed = await MyApp.postViewModel.getBestPosts();
return Tuple2(friendFeed, displayFeed); _fetchData() async {
} friendFeed = await MyApp.postViewModel.getPostsFriends();
discoveryFeed = await MyApp.postViewModel.getBestPosts();
@override return Tuple2(friendFeed, displayFeed);
Widget build(BuildContext context) { }
if (choiceFeed) {
displayFeed = MyApp.postViewModel.postsFriends.reversed.toList(); @override
} else { Widget build(BuildContext context) {
displayFeed = MyApp.postViewModel.bestPosts.reversed.toList(); if (choiceFeed) {
} displayFeed = MyApp.postViewModel.postsFriends.reversed.toList();
_fetchData(); } else {
displayFeed = MyApp.postViewModel.bestPosts.reversed.toList();
return Scaffold( }
resizeToAvoidBottomInset: true, _fetchData();
backgroundColor: bgColor,
extendBodyBehindAppBar: true, return Scaffold(
body: displayFeed.isEmpty resizeToAvoidBottomInset: true,
? Container( backgroundColor: bgColor,
width: double.infinity, extendBodyBehindAppBar: true,
child: Stack( body: displayFeed.isEmpty
fit: StackFit.expand, ? Container(
children: [ width: double.infinity,
Container( child: Stack(
decoration: const BoxDecoration( fit: StackFit.expand,
image: DecorationImage( children: [
image: AssetImage("assets/images/empty_bg.png"), fit: BoxFit.cover, opacity: 0.3), Container(
), decoration: const BoxDecoration(
child: Padding( image: DecorationImage(
padding: EdgeInsets.only(top: 140.h, left: defaultPadding), image: AssetImage("assets/images/empty_bg.png"),
child: Column( fit: BoxFit.cover,
crossAxisAlignment: CrossAxisAlignment.start, opacity: 0.3),
children: [ ),
Text("Suis tes amis pour voir leurs capsules", child: Padding(
style: GoogleFonts.plusJakartaSans( padding:
color: Colors.white, fontSize: 23, fontWeight: FontWeight.w800)) EdgeInsets.only(top: 140.h, left: defaultPadding),
], child: Column(
), crossAxisAlignment: CrossAxisAlignment.start,
), children: [
), Text("Suis tes amis pour voir leurs capsules",
Align( style: GoogleFonts.plusJakartaSans(
alignment: Alignment.topCenter, color: Colors.white,
child: IgnorePointer( fontSize: 23,
child: Container( fontWeight: FontWeight.w800))
height: 240.h, ],
decoration: BoxDecoration( ),
gradient: LinearGradient( ),
begin: Alignment.topRight, ),
stops: [0.3, 1], Align(
colors: [bgColor.withOpacity(0.9), bgColor.withOpacity(0)])), alignment: Alignment.topCenter,
), child: IgnorePointer(
), child: Container(
), height: 240.h,
Align( decoration: BoxDecoration(
alignment: Alignment.topCenter, gradient: LinearGradient(
child: ConstrainedBox( begin: Alignment.topRight,
constraints: BoxConstraints(maxWidth: 800), stops: [
child: TopNavBarComponent(callback: changeFeed), 0.3,
), 1
), ],
], colors: [
), bgColor.withOpacity(0.9),
) bgColor.withOpacity(0)
: Container( ])),
width: double.infinity, ),
height: double.infinity, ),
child: Stack( ),
fit: StackFit.expand, Align(
children: [ alignment: Alignment.topCenter,
Expanded( child: ConstrainedBox(
child: Align( constraints: BoxConstraints(maxWidth: 800),
alignment: Alignment.topCenter, child: TopNavBarComponent(callback: changeFeed),
child: CircularRevealAnimation( ),
animation: animation, ),
centerOffset: Offset(30.w, -100), ],
child: Expanded( ),
child: Container( )
height: double.infinity, : Container(
constraints: BoxConstraints(maxWidth: 600), width: double.infinity,
padding: EdgeInsets.fromLTRB(defaultPadding, 100.h, defaultPadding, 0), height: double.infinity,
child: Expanded( child: Stack(
child: FutureBuilder( fit: StackFit.expand,
future: _fetchData(), children: [
builder: (BuildContext context, AsyncSnapshot<dynamic> snapshot) { Expanded(
if (snapshot.hasData) { child: Align(
return RefreshIndicator( alignment: Alignment.topCenter,
displacement: 20, child: CircularRevealAnimation(
triggerMode: RefreshIndicatorTriggerMode.onEdge, animation: animation,
onRefresh: _refresh, centerOffset: Offset(30.w, -100),
child: Expanded( child: Expanded(
child: ListView.builder( child: Container(
physics: const AlwaysScrollableScrollPhysics(), height: double.infinity,
clipBehavior: Clip.none, constraints: BoxConstraints(maxWidth: 600),
shrinkWrap: true, padding: EdgeInsets.fromLTRB(
itemCount: displayFeed.length, defaultPadding, 100.h, defaultPadding, 0),
itemBuilder: (BuildContext context, int index) { child: Expanded(
return Padding( child: FutureBuilder(
padding: const EdgeInsets.only(bottom: 40), future: _fetchData(),
child: PostComponent( builder: (BuildContext context,
callback: openDetailPost, post: displayFeed[index], index: index), AsyncSnapshot<dynamic> snapshot) {
); if (snapshot.hasData) {
}, return RefreshIndicator(
), displacement: 20,
), triggerMode:
); RefreshIndicatorTriggerMode
} else { .onEdge,
return Center( onRefresh: _refresh,
child: CupertinoActivityIndicator(), child: Expanded(
); child: ListView.builder(
} physics:
}, const AlwaysScrollableScrollPhysics(),
), clipBehavior: Clip.none,
)), shrinkWrap: true,
), itemCount: displayFeed.length,
), itemBuilder:
), (BuildContext context,
), int index) {
Align( return Padding(
alignment: Alignment.topCenter, padding:
child: IgnorePointer( const EdgeInsets.only(
child: Container( bottom: 40),
height: 240.h, child: PostComponent(
decoration: BoxDecoration( callback: openDetailPost,
gradient: LinearGradient( post: displayFeed[index],
begin: Alignment.topRight, index: index),
stops: [0.3, 1], );
colors: [bgColor.withOpacity(0.9), bgColor.withOpacity(0)])), },
), ),
), ),
), );
Align( } else {
alignment: Alignment.topCenter, return Center(
child: ConstrainedBox( child: CupertinoActivityIndicator(),
constraints: BoxConstraints(maxWidth: 800), );
child: TopNavBarComponent(callback: changeFeed), }
), },
), ),
], )),
), ),
)); ),
} ),
} ),
Align(
alignment: Alignment.topCenter,
child: IgnorePointer(
child: Container(
height: 240.h,
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topRight,
stops: [
0.3,
1
],
colors: [
bgColor.withOpacity(0.9),
bgColor.withOpacity(0)
])),
),
),
),
Align(
alignment: Alignment.topCenter,
child: ConstrainedBox(
constraints: BoxConstraints(maxWidth: 800),
child: TopNavBarComponent(callback: changeFeed),
),
),
],
),
));
}
}

@ -1,15 +1,24 @@
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/foundation.dart';
import '../main.dart'; import '../main.dart';
class AuthService { class AuthService {
register(String pseudo, String email, String password) async { register(String pseudo, String email, String password) async {
try { try {
var token;
final data = await FirebaseAuth.instance.createUserWithEmailAndPassword( final data = await FirebaseAuth.instance.createUserWithEmailAndPassword(
email: email, email: email,
password: password, password: password,
); );
if (kIsWeb) {
token = "empty";
} else {
token = await FirebaseMessaging.instance.getToken();
}
String uniqueId = await generateUniqueId(pseudo); String uniqueId = await generateUniqueId(pseudo);
final user = <String, dynamic>{ final user = <String, dynamic>{
@ -19,6 +28,7 @@ class AuthService {
"followed": [], "followed": [],
"nbCapsules": 0, "nbCapsules": 0,
"followers": [], "followers": [],
"token_notify": token,
"picture": "picture":
"https://firebasestorage.googleapis.com/v0/b/justmusic-435d5.appspot.com/o/justMusicDefaultImage.png?alt=media&token=020d0fcb-b7df-4d4d-b380-e99597293fcc" "https://firebasestorage.googleapis.com/v0/b/justmusic-435d5.appspot.com/o/justMusicDefaultImage.png?alt=media&token=020d0fcb-b7df-4d4d-b380-e99597293fcc"
}; };

@ -1,22 +1,28 @@
import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore/cloud_firestore.dart';
import '../main.dart'; import '../main.dart';
class CommentService { class CommentService {
createComment(String text, String idPost) async { createComment(String text, String idPost) async {
var id = MyApp.userViewModel.userCurrent.id; var id = MyApp.userViewModel.userCurrent.id;
final comment = <String, dynamic>{"user_id": id, "text": text, "date": DateTime.now(), "post_id": idPost}; final comment = <String, dynamic>{
"user_id": id,
await MyApp.db.collection("comments").add(comment); "text": text,
} "date": DateTime.now(),
"post_id": idPost
Future<List<QueryDocumentSnapshot<Map<String, dynamic>>>> getCommentsByPostId(String id) async { };
var response = await FirebaseFirestore.instance
.collection("comments") await MyApp.db.collection("comments").add(comment);
.where("post_id", isEqualTo: id) }
.orderBy("date", descending: true)
.get(); Future<List<QueryDocumentSnapshot<Map<String, dynamic>>>> getCommentsByPostId(
String id) async {
return response.docs; var response = await FirebaseFirestore.instance
} .collection("comments")
} .where("post_id", isEqualTo: id)
.orderBy("date", descending: true)
.get();
return response.docs;
}
}

@ -0,0 +1,31 @@
import 'dart:convert';
import 'package:http/http.dart' as http;
class NotificationService {
sendPushMessage(String token, String title, String body) async {
try {
await http.post(Uri.parse('https://fcm.googleapis.com/fcm/send'),
headers: <String, String>{
'Content-Type': 'application/json',
'Authorization':
'key=AAAA56TmIPg:APA91bFeKMr_i6CbUuuUdFI1XkdaNE2A7OVHzxrPIsOSlDfhR6qzZwof7JNGxthWUKj1dRHQMheWNYaLbf3AtXUp9o4DX_gB2073yR4urqUEh9CjvnxVws_9g1cWMgmFS3EpaQEA3icC'
},
body: jsonEncode(<String, dynamic>{
'priority': 'high',
'data': <String, dynamic>{
'click_action': 'FLUTTER_NOTIFICATION_CLICK',
'status': 'done',
'body': body,
'title': title
},
"notification": <String, dynamic>{
"title": title,
"body": body,
},
"to": token,
}));
} catch (e) {
print("error push notification");
}
}
}

@ -56,7 +56,7 @@ class PostService {
.get(); .get();
var filteredPosts = response.docs.where((doc) { var filteredPosts = response.docs.where((doc) {
String user = doc["user_id"]; // Assuming the field name is "date" String user = doc["user_id"];
return user != MyApp.userViewModel.userCurrent.id; return user != MyApp.userViewModel.userCurrent.id;
}).toList(); }).toList();
return filteredPosts; return filteredPosts;

@ -3,11 +3,14 @@ import 'package:cloud_firestore/cloud_firestore.dart';
import '../main.dart'; import '../main.dart';
class UserService { class UserService {
Future<List<QueryDocumentSnapshot<Map<String, dynamic>>>> getUsersByIdUnique(String uniqueId) async { Future<List<QueryDocumentSnapshot<Map<String, dynamic>>>> getUsersByIdUnique(
QuerySnapshot<Map<String, dynamic>> response = await FirebaseFirestore.instance String uniqueId) async {
QuerySnapshot<Map<String, dynamic>> response = await FirebaseFirestore
.instance
.collection("users") .collection("users")
.where("unique_id", isGreaterThanOrEqualTo: uniqueId) .where("unique_id", isGreaterThanOrEqualTo: uniqueId)
.where("unique_id", isLessThanOrEqualTo: uniqueId + "zzzzzzzzzzzzzzzzzzzzzzzzzzzz") .where("unique_id",
isLessThanOrEqualTo: uniqueId + "zzzzzzzzzzzzzzzzzzzzzzzzzzzz")
.limit(20) .limit(20)
.get(); .get();
var users = response.docs.where((doc) { var users = response.docs.where((doc) {
@ -18,8 +21,20 @@ class UserService {
return users; return users;
} }
updateTokenNotify(String idUser, String token) {
FirebaseFirestore.instance
.collection('users')
.doc(idUser)
.update({'token_notify': token}).then((_) {
print("Mise à jour réussie !");
}).catchError((error) {
print("Erreur lors de la mise à jour : $error");
});
}
addOrDeleteFriend(String id) async { addOrDeleteFriend(String id) async {
var userRef = MyApp.db.collection("users").doc(MyApp.userViewModel.userCurrent.id); var userRef =
MyApp.db.collection("users").doc(MyApp.userViewModel.userCurrent.id);
var actionUserRef = MyApp.db.collection("users").doc(id); var actionUserRef = MyApp.db.collection("users").doc(id);
if (MyApp.userViewModel.isFriend(id)) { if (MyApp.userViewModel.isFriend(id)) {
@ -28,7 +43,7 @@ class UserService {
'followed': FieldValue.arrayRemove([id]) 'followed': FieldValue.arrayRemove([id])
}); });
transaction.update(actionUserRef, { transaction.update(actionUserRef, {
'followers': FieldValue.arrayRemove([id]) 'followers': FieldValue.arrayRemove([userRef.id])
}); });
}); });
MyApp.userViewModel.userCurrent.followed.remove(id); MyApp.userViewModel.userCurrent.followed.remove(id);
@ -38,7 +53,7 @@ class UserService {
'followed': FieldValue.arrayUnion([id]) 'followed': FieldValue.arrayUnion([id])
}); });
transaction.update(actionUserRef, { transaction.update(actionUserRef, {
'followers': FieldValue.arrayUnion([id]) 'followers': FieldValue.arrayUnion([userRef.id])
}); });
}); });
MyApp.userViewModel.userCurrent.followed.add(id); MyApp.userViewModel.userCurrent.followed.add(id);

@ -23,13 +23,10 @@ class CommentViewModel {
Future<List<Comment>> getCommentsByPostId(String id) async { Future<List<Comment>> getCommentsByPostId(String id) async {
try { try {
var responseData = await _commentService.getCommentsByPostId(id); var responseData = await _commentService.getCommentsByPostId(id);
print(responseData.length);
var commentsFutures = responseData.map((value) async { var commentsFutures = responseData.map((value) async {
return await CommentMapper.toModel(value); return await CommentMapper.toModel(value);
}).toList(); }).toList();
_comments = await Future.wait(commentsFutures); _comments = await Future.wait(commentsFutures);
print("ccccccc");
_comments.map((e) => print(e.text));
return _comments; return _comments;
} catch (e) { } catch (e) {
print(e); print(e);

@ -1,4 +1,6 @@
import 'package:firebase_auth/firebase_auth.dart' as firebase_auth; import 'package:firebase_auth/firebase_auth.dart' as firebase_auth;
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/foundation.dart';
import 'package:justmusic/services/AuthService.dart'; import 'package:justmusic/services/AuthService.dart';
import 'package:justmusic/services/UserService.dart'; import 'package:justmusic/services/UserService.dart';
@ -27,8 +29,20 @@ class UserViewModel {
login(String pseudo, String password) async { login(String pseudo, String password) async {
try { try {
var token;
await authService.login(pseudo, password); await authService.login(pseudo, password);
final user = await MyApp.db.collection("users").doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid).get(); final user = await MyApp.db
.collection("users")
.doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid)
.get();
if (!kIsWeb) {
token = await FirebaseMessaging.instance.getToken();
if (MyApp.userViewModel.userCurrent.token != token) {
_userService.updateTokenNotify(
MyApp.userViewModel.userCurrent.id, token);
MyApp.userViewModel.userCurrent.token = token;
}
}
User data = UserMapper.toModel(user); User data = UserMapper.toModel(user);
_userCurrent = data; _userCurrent = data;
} catch (e) { } catch (e) {
@ -43,7 +57,10 @@ class UserViewModel {
updateUserCurrent() async { updateUserCurrent() async {
try { try {
final user = await MyApp.db.collection("users").doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid).get(); final user = await MyApp.db
.collection("users")
.doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid)
.get();
User data = UserMapper.toModel(user); User data = UserMapper.toModel(user);
_userCurrent = data; _userCurrent = data;
} catch (e) { } catch (e) {
@ -58,7 +75,10 @@ class UserViewModel {
try { try {
await authService.register(pseudo.toLowerCase(), email, password); await authService.register(pseudo.toLowerCase(), email, password);
final user = await MyApp.db.collection("users").doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid).get(); final user = await MyApp.db
.collection("users")
.doc(firebase_auth.FirebaseAuth.instance.currentUser?.uid)
.get();
User data = UserMapper.toModel(user); User data = UserMapper.toModel(user);
_userCurrent = data; _userCurrent = data;
} catch (e) { } catch (e) {
@ -68,7 +88,8 @@ class UserViewModel {
Future<List<User>> getUsersByUniqueId(String uniqueId) async { Future<List<User>> getUsersByUniqueId(String uniqueId) async {
try { try {
var response = await _userService.getUsersByIdUnique(uniqueId.toLowerCase()); var response =
await _userService.getUsersByIdUnique(uniqueId.toLowerCase());
var users = response.map((value) { var users = response.map((value) {
return UserMapper.toModel(value); return UserMapper.toModel(value);
}).toList(); }).toList();

File diff suppressed because it is too large Load Diff

@ -73,6 +73,7 @@ dependencies:
flutter_svg: ^2.0.7 flutter_svg: ^2.0.7
flutter_keyboard_visibility: ^5.4.1 flutter_keyboard_visibility: ^5.4.1
timezone: ^0.9.2 timezone: ^0.9.2
firebase_messaging: ^14.6.5
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

@ -0,0 +1,6 @@
import 'package:justmusic/services/NotificationService.dart';
Future<void> main() async {
var notif = NotificationService();
await notif.sendPushMessage("cAJAJw_aR7yPQbFTMS-r6H:APA91bEZs34Ab3-xSYeIGykHrxD5pRj-OyODaEcNBPtds1eLzEH0uzFkzCSQY7BvZQHEFPfeHSN7nri4webskXbu1zzgwe9NIdPagsc6IHaouuewWqWd9V7ucTeDeYt1Sbby4-pb6jtA", "Just Music", "Vien voir les nouveautés");
}
Loading…
Cancel
Save