123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import '../../../common/models/index.dart';
- import '../../../common/style/index.dart';
- import '../../../common/widgets/index.dart';
- import 'index.dart';
- class ContactPage extends GetView<ContactController> {
- const ContactPage({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return GetBuilder<ContactController>(
- builder: (_) {
- return Scaffold(
- appBar: AppBar(title: Text('home_tab_contact'.tr)),
- body: SafeArea(
- child: Padding(
- padding: const EdgeInsets.only(top: 15, left: 15, right: 15),
- child: Column(
- children: [
- searchBar(context),
- const SizedBox(height: 10),
- Expanded(
- flex: 1,
- child: Obx(() => ListView(children: [
- deptChildren('contact_my_department'.tr,
- controller.state.myDepartments, context),
- ...deptListToWidget(
- controller.state.topUnit, context)
- // const SizedBox(height: 10),
- // Obx(() => deptChildren('contact_structure'.tr,
- // controller.state.topUnit, context))
- ])),
- )
- ],
- )),
- ),
- );
- },
- );
- }
- List<Widget> deptListToWidget(List<O2Unit> topUnit, BuildContext context) {
- List<Widget> list = [];
- for (var element in topUnit) {
- list.add(const SizedBox(height: 10));
- list.add(deptChildren(
- element.name ?? '', element.subUnitList ?? [], context,
- personList: element.personList ?? []));
- }
- return list;
- }
- Widget deptChildren(String title, List<O2Unit> depts, BuildContext context,
- {List<O2Person> personList = const []}) {
- List<Widget> list = [];
- if (depts.isNotEmpty) {
- list.add(ListTile(
- title: Text(title, style: Theme.of(context).textTheme.titleSmall)));
- var dList = depts.map((e) {
- var orgName = e.name ?? '';
- var oneName = orgName;
- if (orgName.length > 1) {
- oneName = oneName.substring(0, 1);
- }
- return ListTile(
- leading: SizedBox(
- width: 32,
- height: 32,
- child: CircleAvatar(
- radius: 32,
- backgroundColor: Theme.of(context).colorScheme.primary,
- child: Text(oneName, style: const TextStyle(color: Colors.white)),
- ),
- ),
- title: Text(orgName),
- trailing: O2UI.rightArrow(),
- onTap: () => controller.openDept(e),
- );
- }).toList();
- list.addAll(dList);
- // 人员列表
- if (personList.isNotEmpty) {
- list.add(const SizedBox(height: 10));
- final pList = personList.map((e) {
- return ListTile(
- onTap: () => controller.clickEnterPerson(e),
- leading: SizedBox(
- width: 50,
- height: 50,
- child: O2UI.personAvatar(e.distinguishedName!, 25),
- ),
- title: Text(e.name ?? ''),
- trailing: O2UI.rightArrow(),
- );
- }).toList();
- list.addAll(pList);
- }
- }
- return Card(
- shape: const RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(10))),
- child: Column(children: list));
- }
- Widget searchBar(BuildContext context) {
- return GestureDetector(
- onTap: controller.openSearchContact,
- child: Container(
- height: 36,
- decoration: BoxDecoration(
- color: Theme.of(context).colorScheme.background,
- borderRadius: BorderRadius.all(Radius.circular(18))),
- alignment: Alignment.centerLeft,
- child: Padding(
- padding: EdgeInsets.only(left: 10),
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- SizedBox(
- width: 22,
- height: 22,
- child: Icon(O2IconFont.search,
- color: Theme.of(context).colorScheme.primary),
- ),
- Padding(
- padding: EdgeInsets.only(left: 10),
- child: Text(
- "contact_person_search_placeholder".tr,
- style: Theme.of(context).textTheme.bodySmall,
- ))
- ],
- ),
- )));
- }
- }
|