戴余标 2 years ago
commit 71e40bb694

@ -0,0 +1,19 @@
import 'package:json_annotation/json_annotation.dart';
import 'package:equatable/equatable.dart';
part 'exclude_pn_model.g.dart';
@JsonSerializable()
class ExcludePnModel extends Equatable{
final String? phone;
final String? remark;
factory ExcludePnModel.fromJson(Map<String, dynamic> json) =>_$ExcludePnModelFromJson(json);
const ExcludePnModel({
required this.phone,
required this.remark,
});
@override
List<Object?> get props => [phone,remark];
}

@ -0,0 +1,13 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'exclude_pn_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ExcludePnModel _$ExcludePnModelFromJson(Map<String, dynamic> json) =>
ExcludePnModel(
phone: json['phone'] as String,
remark: json['remark'] as String,
);

@ -32,6 +32,7 @@ class _ExcludeSinglePageState extends State<ExcludeSinglePage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ScaffoldThemeWidget( return ScaffoldThemeWidget(
wid: 110,
title: '添加单个或批量号码', title: '添加单个或批量号码',
bottom: "添加", bottom: "添加",
onTap: () {}, onTap: () {},
@ -57,6 +58,7 @@ class _ExcludeSinglePageState extends State<ExcludeSinglePage> {
color: Colors.black38, color: Colors.black38,
), ),
), ),
TextSpan( TextSpan(
text: "如输入000*可屏蔽所有000开头的号码", text: "如输入000*可屏蔽所有000开头的号码",
style: TextStyle( style: TextStyle(
@ -78,10 +80,10 @@ class _ExcludeSinglePageState extends State<ExcludeSinglePage> {
children: [ children: [
Text( Text(
title, title,
style: const TextStyle( style: TextStyle(
fontSize: 16, fontSize: 28.sp,
color: Color(0xFF999999), color: const Color(0xFF999999),
fontWeight: FontWeight.w600, fontWeight: FontWeight.w500,
), ),
), ),
15.heightBox, 15.heightBox,
@ -93,10 +95,10 @@ class _ExcludeSinglePageState extends State<ExcludeSinglePage> {
decoration: InputDecoration( decoration: InputDecoration(
contentPadding: EdgeInsets.all(30.w), contentPadding: EdgeInsets.all(30.w),
hintText: content, hintText: content,
hintStyle: const TextStyle( hintStyle: TextStyle(
fontSize: 16, fontSize: 28.sp,
fontWeight: FontWeight.w600, // fontWeight: FontWeight.w600,
color: Color(0xFF999999), color: const Color(0xFF999999),
), ),
fillColor: const Color(0xFFF9F9F9), fillColor: const Color(0xFFF9F9F9),
filled: true, filled: true,

@ -0,0 +1,33 @@
import 'package:project_telephony/constants/api.dart';
import 'package:project_telephony/model/network/api_client.dart';
import 'package:project_telephony/model/network/base_model.dart';
import 'package:project_telephony/utils/inner_model/base_list_model.dart';
import '../../../../model/exclude_phone_model.dart';
import '../../../../model/exclude_pn_model.dart';
import '../../../../utils/toast/cloud_toast.dart';
class ExcludeFunc {
//
static Future<List<ExcludePhoneModel>> getContacts() async {
BaseListModel res=await apiClient.requestList(API.exclude.find,);
if(res.code==0){
return res.nullSafetyList.map((e) => ExcludePhoneModel.fromJson(e)).toList();
}else{
CloudToast.show(res.msg);
return [];
}
}
//
static Future<bool> getContactsList(List numList) async{
BaseModel res=await apiClient.request(API.exclude.add,data: {"exclude":numList});
if(res.code==0){
return true;
}else{
CloudToast.show(res.msg);
return false;
}
}
}

@ -3,13 +3,16 @@ import 'package:flustars/flustars.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart'; import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:project_telephony/base/base_style.dart'; import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/constants/api.dart';
import 'package:project_telephony/model/network/api_client.dart';
import 'package:project_telephony/ui/home/set/func/exclude_contacts_func.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
import 'package:shared_preferences/shared_preferences.dart'; import 'package:shared_preferences/shared_preferences.dart';
import '../../../../model/exclude_pn_model.dart';
import '../../../../model/phone_num_model.dart'; import '../../../../model/phone_num_model.dart';
import '../../../../utils/toast/cloud_toast.dart';
import '../../../widget/scaffold_theme_widget.dart'; import '../../../widget/scaffold_theme_widget.dart';
class CallRecordsList extends StatefulWidget { class CallRecordsList extends StatefulWidget {
const CallRecordsList({Key? key}) : super(key: key); const CallRecordsList({Key? key}) : super(key: key);
@ -20,6 +23,10 @@ class CallRecordsList extends StatefulWidget {
class _CallRecordsListState extends State<CallRecordsList> { class _CallRecordsListState extends State<CallRecordsList> {
List<PhoneNumModel> phoneNum = []; List<PhoneNumModel> phoneNum = [];
List<PhoneNumModel> phoneNum2 = []; List<PhoneNumModel> phoneNum2 = [];
// List<ExcludePnModel> phoneNum3 = [];
List phoneNum3=[];
// Map<String, String> get phoneNum3 => {};
final EasyRefreshController _easyRefreshController = EasyRefreshController(); final EasyRefreshController _easyRefreshController = EasyRefreshController();
late bool notifications; late bool notifications;
late bool trackHistory; late bool trackHistory;
@ -27,20 +34,20 @@ class _CallRecordsListState extends State<CallRecordsList> {
late SharedPreferences prefs; late SharedPreferences prefs;
List<String> numList = []; List<String> numList = [];
// List<String> =[]
@override @override
void initState() { void initState() {
// getList(); // getList();
getList(); getList();
super.initState(); super.initState();
} }
@override @override
void dispose() { void dispose() {
_easyRefreshController.dispose(); _easyRefreshController.dispose();
super.dispose(); super.dispose();
} }
getList() async { getList() async {
phoneNum.clear(); phoneNum.clear();
final Iterable<CallLogEntry> entries = await CallLog.query(); final Iterable<CallLogEntry> entries = await CallLog.query();
@ -55,33 +62,86 @@ class _CallRecordsListState extends State<CallRecordsList> {
)); ));
} }
} }
for (int i = 0; i < phoneNum.length; i++) {
phoneNum2.add(PhoneNumModel(
num: phoneNum[i].num,
time: phoneNum[i].time,
name: phoneNum[i].name,
state: phoneNum[i].state,
));
} }
// for (CallLogEntry entrie in entries) {
// if (!numList.contains(entrie.number)) {
// numList.add(entrie.number!);
// phoneNum.add(PhoneNumModel(
// num: entrie.number,
// time: entrie.timestamp,
// name: entrie.name,
// state: false,
// ));
// }
// }
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
var profileBuilder = FutureBuilder(
future: getList() , // a Future<String> or null
builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
if(snapshot.connectionState==ConnectionState.done){
return ListView.builder(
itemBuilder: (context, index) {
return _getBox(phoneNum[index]);
},
itemCount: phoneNum.length,
);
}else{
return const SizedBox();
}
});
return ScaffoldThemeWidget( return ScaffoldThemeWidget(
bottom: '添加', bottom: '添加',
title: '从通话记录添加', title: '从通话记录添加',
isBorder: true, isBorder: true,
isOpacity: false, isOpacity: phoneNum3.isNotEmpty,
onTap: () { onTap: () async {
if (phoneNum3.isEmpty) {
CloudToast.show('请选择手机号');
} else {
print(phoneNum3);
var res = await ExcludeFunc.getContactsList(phoneNum3);
print(res);
}
// _easyRefreshController.callRefresh();
// phoneNum3.clear();
}, },
child: profileBuilder child: EasyRefresh(
); firstRefresh: true,
header: MaterialHeader(),
controller: _easyRefreshController,
onRefresh: () async {
getList();
setState(() {});
},
child: ListView.builder(
itemBuilder: (context, index) {
return _getBox(phoneNum2[index], phoneNum2[index].num!,phoneNum2[index].name?? "");
},
itemCount: phoneNum2.length,
),
));
// var profileBuilder = FutureBuilder(
// // future: _incrementCounter(),
// future: getList() , // a Future<String> or null
// builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
// if(snapshot.connectionState==ConnectionState.done){
// return ListView.builder(
// itemBuilder: (context, index) {
// return _getBox(phoneNum[index]);
// },
// itemCount: phoneNum.length,
// );
// }else{
// return const SizedBox();
// }
// });
// return ScaffoldThemeWidget(
// bottom: '添加',
// title: '从通话记录添加',
// isBorder: true,
// isOpacity: false,
// onTap: () {
//
// },
// child: profileBuilder
// );
// Column( // Column(
// children: [ // children: [
// Container(width: 750.w, height: 1000.w, child: Text("") // Container(width: 750.w, height: 1000.w, child: Text("")
@ -103,12 +163,19 @@ return ScaffoldThemeWidget(
// ); // );
} }
_getBox(PhoneNumModel item) { _getBox(PhoneNumModel item, String num,String name) {
return CheckboxListTile( return CheckboxListTile(
onChanged: (bool? value) { onChanged: (bool? value) {
setState(() { setState(() {
item.state = value!; item.state = value!;
if (item.state) {
phoneNum3.add({"phone":num,"remark":name});
// phoneNum3.add((phone: num, remark: name));
} else {
phoneNum3.remove({"phone":num,"remark":name});
// phoneNum3.remove(ExcludePnModel(phone: num, remark: name)) ;
}
}); });
}, },
value: item.state, value: item.state,

@ -11,6 +11,7 @@ import '../../widget/plone_back_button.dart';
// } // }
class PhoneSetPage extends StatefulWidget { class PhoneSetPage extends StatefulWidget {
const PhoneSetPage({Key? key}) : super(key: key); const PhoneSetPage({Key? key}) : super(key: key);
@override @override

@ -1,21 +1,23 @@
import 'package:call_log/call_log.dart';
import 'package:flustars/flustars.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart'; import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:project_telephony/constants/api.dart';
import 'package:project_telephony/model/network/api_client.dart';
import 'package:permission_handler/permission_handler.dart'; import 'package:permission_handler/permission_handler.dart';
import 'package:project_telephony/ui/exclude/exclude_contacts_page.dart'; import 'package:project_telephony/ui/exclude/exclude_contacts_page.dart';
import 'package:project_telephony/ui/exclude/exclude_single_page.dart'; import 'package:project_telephony/ui/exclude/exclude_single_page.dart';
import 'package:project_telephony/ui/home/home_page.dart';
import 'package:project_telephony/ui/home/set/phone_num_list/call_records_list.dart'; import 'package:project_telephony/ui/home/set/phone_num_list/call_records_list.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
import 'package:project_telephony/ui/widget/plone_bottom.dart'; import 'package:project_telephony/ui/widget/plone_bottom.dart';
import 'package:project_telephony/utils/toast/cloud_toast.dart';
import '../../../base/base_style.dart'; import '../../../base/base_style.dart';
import '../../../model/phone_num_model.dart'; import '../../../model/exclude_phone_model.dart';
import '../../widget/centertipsalterwidget.dart';
import '../../widget/scaffold_theme_widget.dart'; import '../../widget/scaffold_theme_widget.dart';
import 'func/exclude_contacts_func.dart';
class SpecifyPhonePage extends StatefulWidget { class SpecifyPhonePage extends StatefulWidget {
const SpecifyPhonePage({Key? key}) : super(key: key); const SpecifyPhonePage({Key? key}) : super(key: key);
@ -26,6 +28,9 @@ class SpecifyPhonePage extends StatefulWidget {
class _SpecifyPhonePageState extends State<SpecifyPhonePage> { class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
final EasyRefreshController _refreshController = EasyRefreshController(); final EasyRefreshController _refreshController = EasyRefreshController();
List<ExcludePhoneModel> findList = [
];
@override @override
void dispose() { void dispose() {
@ -36,7 +41,8 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ScaffoldThemeWidget( return ScaffoldThemeWidget(
title: "发送号码设置", wid: 196,
title: "指定号码",
bottom: '添加', bottom: '添加',
onTap: () { onTap: () {
showModalBottomSheet( showModalBottomSheet(
@ -57,13 +63,14 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
child: ListView( child: ListView(
children: [ children: [
_getAddPhone("通话记录添加", "通过本机通话记录添加号码", () { _getAddPhone("通话记录添加", "通过本机通话记录添加号码", () {
Get.to(() => ScaffoldThemeWidget( Navigator.of(context)
bottom: '添加', .push(
title: '从通话记录添加', MaterialPageRoute(
isBorder: true, builder: (_) => const CallRecordsList()),
isOpacity: false, )
onTap: () {}, .then((val) => _getNullList());
child: const CallRecordsList()));
// Get.to(() => const CallRecordsList());
}), }),
_getAddPhone("通迅录添加", "通过本机通讯录添加号码", () async { _getAddPhone("通迅录添加", "通过本机通讯录添加号码", () async {
if(await Permission.contacts.isDenied){ if(await Permission.contacts.isDenied){
@ -113,17 +120,140 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
header: MaterialHeader(), header: MaterialHeader(),
// footer: MaterialFooter(), // footer: MaterialFooter(),
onRefresh: () async { onRefresh: () async {
findList = await ExcludeFunc.getContacts();
// await userProvider.updateUserInfo(); // await userProvider.updateUserInfo();
setState(() {}); setState(() {});
}, },
child: ListView( child: findList.isEmpty ? _getNullList() : _getNum()
// ListView(
// children: [findList.isEmpty ? _getNullList() : _getNum()],
// )
),
);
}
_getNum() {
return ListView.builder(
itemBuilder: (context, index) {
return _getNumContant(findList[index]);
},
itemCount: findList.length,
);
}
_getNumContant(ExcludePhoneModel item) {
return Container(
margin: EdgeInsets.symmetric(horizontal: 16.w),
child: ListTile(
onTap: () {
showDialog(
context: context,
builder: (context) {
return CupertinoAlertDialog(
title: Text(
"修改名称",
style: TextStyle(
color: BaseStyle.color333333, fontSize: 34.sp),
),
content: Column(
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
_getNullList(), Text(
"名称",
style: TextStyle(
fontSize: 28.sp,
color: BaseStyle.color999999,
),
),
24.hb,
CupertinoTextField(
padding: EdgeInsets.symmetric(horizontal: 24.w,vertical: 20.w),
decoration: BoxDecoration(
border: Border.all(color: Colors.white),
// borderRadius: BorderRadius.all(
// Radius.circular(4.w)
// ),
color: const Color(0xFFF9F9F9)),
placeholderStyle:
const TextStyle(color: BaseStyle.color333333),
placeholder: item.remark,
onChanged: (value) {},
),
20.hb,
Text(
"号码",
style: TextStyle(
fontSize: 28.sp,
color: BaseStyle.color999999,
),
),
24.hb,
CupertinoTextField(
padding: EdgeInsets.symmetric(horizontal: 24.w,vertical: 20.w),
decoration: BoxDecoration(
border: Border.all(color: Colors.white),
// borderRadius: BorderRadius.all(
// Radius.circular(4.w)
// ),
color: const Color(0xFFF9F9F9)),
placeholder: item.phone,
onChanged: (value) {},
),
82.hb,
// _getUpdate("爸爸", "123123123"),
PloneBottom(
blM:false,
border: true,
color1:const Color(0xFF1890FF),
color2:const Color(0xFF74BCFF),
onTap: () {},
text: "保存",
)
], ],
)), ),
],
),
); );
});
},
title: Text(item.phone,
style: TextStyle(
fontSize: 32.sp,
color: BaseStyle.color333333,
fontWeight: FontWeight.bold)),
subtitle: Text(
item.remark,
style: TextStyle(fontSize: 28.sp, color: BaseStyle.color999999),
),
trailing: TextButton(
style: ButtonStyle(
side: MaterialStateProperty.all(
BorderSide(width: 2.w, color: const Color(0xFFE8E8E8)))),
onPressed: () async {
var res =
await apiClient.request(API.exclude.find, data: {item.id});
if (res.code == 0) {
_refreshController.callRefresh();
CloudToast.show(res.msg);
} else {
CloudToast.show(res.msg);
} }
},
child: Text(
"删除",
style: TextStyle(fontSize: 28.sp, color: BaseStyle.color333333),
),
),
),
);
}
_getAddPhone(String title, String text, VoidCallback widget) { _getAddPhone(String title, String text, VoidCallback widget) {
return GestureDetector( return GestureDetector(

@ -1,4 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/ui/widget/plone_bottom.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
import 'package:project_telephony/utils/user_tool.dart'; import 'package:project_telephony/utils/user_tool.dart';
@ -74,7 +77,6 @@ _getBotton(String bContent, context) {
CloudToast.show(res.msg); CloudToast.show(res.msg);
} }
}, },
child: Container( child: Container(
margin: EdgeInsets.symmetric(horizontal: 64.w), margin: EdgeInsets.symmetric(horizontal: 64.w),
width: 500.w, width: 500.w,
@ -160,3 +162,107 @@ _getVip() {
), ),
); );
} }
// class FindDialog extends StatefulWidget{
// final String title;
//
// // final Widget widget;
// final VoidCallback ontap;
// final String name;
// final String phone;
//
// const FindDialog(
// {Key? key,
// required this.title,
// required this.ontap,
// // required this.widget,
// required this.name,
// required this.phone})
// : super(key: key);
//
// @override
// Widget build(BuildContext context) {
// return Scaffold(
// body:Container(
// margin: EdgeInsets.only(
// left: 100.w,
// right: 100.w,
// ),
// height: 720.w,
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: [
// Text(
// title,
// style: TextStyle(
// fontSize: 36.sp,
// ),
// ),
// _getUpdate(name, phone),
// PloneBottom(
// onTap: ontap,
// text: "保存",
// )
// ],
// ),
// ),
// );
// }
//
// _getUpdate(String name, String phone) {
// return Container(
// height: 400.w,
// padding: EdgeInsets.zero,
// child: Column(
// children: [
// Text(
// "名称",
// style: TextStyle(
// fontSize: 28.sp,
// color: BaseStyle.color999999,
// ),
// ),
// 24.hb,
// SizedBox(
// height: 96.w,
// child: TextField(
// decoration: InputDecoration.collapsed(
// hintText: name,
// hintStyle:
// TextStyle(fontSize: 28.sp, color: BaseStyle.color333333),
// fillColor: Colors.transparent,
// // contentPadding: EdgeInsets.zero,
// ),
// ),
// ),
// 48.hb,
// Text(
// "名称",
// style: TextStyle(
// fontSize: 28.sp,
// color: BaseStyle.color999999,
// ),
// ),
// 24.hb,
// SizedBox(
// height: 96.w,
// child: TextField(
// decoration: InputDecoration.collapsed(
// hintText: phone,
// hintStyle:
// TextStyle(fontSize: 28.sp, color: BaseStyle.color333333),
// fillColor: Colors.transparent,
// // contentPadding: EdgeInsets.zero,
// ),
// ),
// )
// ],
// ),
// );
// }
//
// @override
// State<StatefulWidget> createState() {
// throw UnimplementedError();
// }
// }

@ -23,7 +23,7 @@ class ScaffoldThemeWidget extends StatefulWidget {
final bool isBorder; final bool isBorder;
final bool isOpacity; final bool isOpacity;
final VoidCallback onTap; final VoidCallback onTap;
final int wid;
const ScaffoldThemeWidget({ const ScaffoldThemeWidget({
Key? key, Key? key,
required this.title, required this.title,
@ -32,6 +32,7 @@ class ScaffoldThemeWidget extends StatefulWidget {
this.isBorder = true, this.isBorder = true,
this.isOpacity = true, this.isOpacity = true,
required this.onTap, required this.onTap,
this.wid=162
}) : super(key: key); }) : super(key: key);
@override @override
@ -54,12 +55,13 @@ class _ScaffoldThemeWidgetState extends State<ScaffoldThemeWidget> {
color: BaseStyle.color333333, color: BaseStyle.color333333,
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
titleSpacing: 162.w, titleSpacing: widget.wid.w,
leading: const CloudBackButton(isSpecial: true), leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor), backgroundColor: kForeGroundColor),
backgroundColor: Colors.white, backgroundColor: Colors.white,
body: widget.child, body: widget.child,
bottomNavigationBar: PloneBottom( bottomNavigationBar:
PloneBottom(
onTap: widget.onTap, onTap: widget.onTap,
border: widget.isBorder, border: widget.isBorder,
opacity: widget.isOpacity ? 1 : 0.4, opacity: widget.isOpacity ? 1 : 0.4,

Loading…
Cancel
Save