user_accounts_drawer_header.dart 12.2 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'dart:math' as math;

7
import 'package:flutter/widgets.dart';
8
import 'package:flutter/foundation.dart';
9

10
import 'colors.dart';
11
import 'debug.dart';
12 13 14
import 'drawer_header.dart';
import 'icons.dart';
import 'ink_well.dart';
15
import 'material_localizations.dart';
16
import 'theme.dart';
17

18
class _AccountPictures extends StatelessWidget {
19
  const _AccountPictures({
20
    Key? key,
21 22 23 24
    this.currentAccountPicture,
    this.otherAccountsPictures,
  }) : super(key: key);

25 26
  final Widget? currentAccountPicture;
  final List<Widget>? otherAccountsPictures;
27 28 29

  @override
  Widget build(BuildContext context) {
30
    return Stack(
31
      children: <Widget>[
32
        PositionedDirectional(
33
          top: 0.0,
34
          end: 0.0,
35
          child: Row(
36
            children: (otherAccountsPictures ?? <Widget>[]).take(3).map<Widget>((Widget picture) {
37
              return Padding(
38
                padding: const EdgeInsetsDirectional.only(start: 8.0),
39
                child: Semantics(
40
                  container: true,
41
                  child: Container(
42 43 44
                  padding: const EdgeInsets.only(left: 8.0, bottom: 8.0),
                    width: 48.0,
                    height: 48.0,
45
                    child: picture,
46
                 ),
47
                ),
48 49 50 51
              );
            }).toList(),
          ),
        ),
52
        Positioned(
53
          top: 0.0,
54
          child: Semantics(
55
            explicitChildNodes: true,
56
            child: SizedBox(
57 58
              width: 72.0,
              height: 72.0,
59
              child: currentAccountPicture,
60
            ),
61 62 63 64 65 66 67
          ),
        ),
      ],
    );
  }
}

68
class _AccountDetails extends StatefulWidget {
69
  const _AccountDetails({
70 71 72
    Key? key,
    required this.accountName,
    required this.accountEmail,
73
    this.onTap,
74
    required this.isOpen,
75
    this.arrowColor,
76 77
  }) : super(key: key);

78 79 80
  final Widget? accountName;
  final Widget? accountEmail;
  final VoidCallback? onTap;
81
  final bool isOpen;
82
  final Color? arrowColor;
83

84 85 86 87 88
  @override
  _AccountDetailsState createState() => _AccountDetailsState();
}

class _AccountDetailsState extends State<_AccountDetails> with SingleTickerProviderStateMixin {
89 90
  late Animation<double> _animation;
  late AnimationController _controller;
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
  @override
  void initState () {
    super.initState();
    _controller = AnimationController(
      value: widget.isOpen ? 1.0 : 0.0,
      duration: const Duration(milliseconds: 200),
      vsync: this,
    );
    _animation = CurvedAnimation(
      parent: _controller,
      curve: Curves.fastOutSlowIn,
      reverseCurve: Curves.fastOutSlowIn.flipped,
    )
      ..addListener(() => setState(() {
        // [animation]'s value has changed here.
      }));
  }

  @override
  void dispose() {
    _controller.dispose();
    super.dispose();
  }

  @override
  void didUpdateWidget (_AccountDetails oldWidget) {
    super.didUpdateWidget(oldWidget);
118 119 120 121 122 123
    // If the state of the arrow did not change, there is no need to trigger the animation
    if (oldWidget.isOpen == widget.isOpen) {
      return;
    }

    if (widget.isOpen) {
124 125 126 127 128 129
      _controller.forward();
    } else {
      _controller.reverse();
    }
  }

130 131
  @override
  Widget build(BuildContext context) {
132
    assert(debugCheckHasDirectionality(context));
133
    assert(debugCheckHasMaterialLocalizations(context));
134
    assert(debugCheckHasMaterialLocalizations(context));
135

136
    final ThemeData theme = Theme.of(context);
137
    final MaterialLocalizations localizations = MaterialLocalizations.of(context);
138

139 140
    Widget accountDetails = CustomMultiChildLayout(
      delegate: _AccountDetailsLayout(
141
        textDirection: Directionality.of(context),
142 143 144 145 146 147 148 149
      ),
      children: <Widget>[
        if (widget.accountName != null)
          LayoutId(
            id: _AccountDetailsLayout.accountName,
            child: Padding(
              padding: const EdgeInsets.symmetric(vertical: 2.0),
              child: DefaultTextStyle(
150
                style: theme.primaryTextTheme.bodyText1!,
151
                overflow: TextOverflow.ellipsis,
152
                child: widget.accountName!,
153 154
              ),
            ),
155
          ),
156 157 158 159 160 161
        if (widget.accountEmail != null)
          LayoutId(
            id: _AccountDetailsLayout.accountEmail,
            child: Padding(
              padding: const EdgeInsets.symmetric(vertical: 2.0),
              child: DefaultTextStyle(
162
                style: theme.primaryTextTheme.bodyText2!,
163
                overflow: TextOverflow.ellipsis,
164
                child: widget.accountEmail!,
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
              ),
            ),
          ),
        if (widget.onTap != null)
          LayoutId(
            id: _AccountDetailsLayout.dropdownIcon,
            child: Semantics(
              container: true,
              button: true,
              onTap: widget.onTap,
              child: SizedBox(
                height: _kAccountDetailsHeight,
                width: _kAccountDetailsHeight,
                child: Center(
                  child: Transform.rotate(
                    angle: _animation.value * math.pi,
                    child: Icon(
                      Icons.arrow_drop_down,
                      color: widget.arrowColor,
                      semanticLabel: widget.isOpen
                        ? localizations.hideAccountsLabel
                        : localizations.showAccountsLabel,
                    ),
                  ),
189
                ),
190 191 192
              ),
            ),
          ),
193
      ],
194 195
    );

196
    if (widget.onTap != null) {
197
      accountDetails = InkWell(
198
        onTap: widget.onTap,
199 200 201 202
        child: accountDetails,
        excludeFromSemantics: true,
      );
    }
203

204
    return SizedBox(
205
      height: _kAccountDetailsHeight,
206
      child: accountDetails,
207 208 209 210
    );
  }
}

211 212 213 214
const double _kAccountDetailsHeight = 56.0;

class _AccountDetailsLayout extends MultiChildLayoutDelegate {

215
  _AccountDetailsLayout({ required this.textDirection });
216

217 218 219
  static const String accountName = 'accountName';
  static const String accountEmail = 'accountEmail';
  static const String dropdownIcon = 'dropdownIcon';
220 221 222 223 224

  final TextDirection textDirection;

  @override
  void performLayout(Size size) {
225
    Size? iconSize;
226 227
    if (hasChild(dropdownIcon)) {
      // place the dropdown icon in bottom right (LTR) or bottom left (RTL)
228
      iconSize = layoutChild(dropdownIcon, BoxConstraints.loose(size));
229 230 231
      positionChild(dropdownIcon, _offsetForIcon(size, iconSize));
    }

232
    final String? bottomLine = hasChild(accountEmail) ? accountEmail : (hasChild(accountName) ? accountName : null);
233 234

    if (bottomLine != null) {
235
      final Size constraintSize = iconSize == null ? size : Size(size.width - iconSize.width, size.height);
236 237 238
      iconSize ??= const Size(_kAccountDetailsHeight, _kAccountDetailsHeight);

      // place bottom line center at same height as icon center
239
      final Size bottomLineSize = layoutChild(bottomLine, BoxConstraints.loose(constraintSize));
240 241 242 243 244
      final Offset bottomLineOffset = _offsetForBottomLine(size, iconSize, bottomLineSize);
      positionChild(bottomLine, bottomLineOffset);

      // place account name above account email
      if (bottomLine == accountEmail && hasChild(accountName)) {
245
        final Size nameSize = layoutChild(accountName, BoxConstraints.loose(constraintSize));
246 247 248 249 250 251 252 253 254 255 256
        positionChild(accountName, _offsetForName(size, nameSize, bottomLineOffset));
      }
    }
  }

  @override
  bool shouldRelayout(MultiChildLayoutDelegate oldDelegate) => true;

  Offset _offsetForIcon(Size size, Size iconSize) {
    switch (textDirection) {
      case TextDirection.ltr:
257
        return Offset(size.width - iconSize.width, size.height - iconSize.height);
258
      case TextDirection.rtl:
259
        return Offset(0.0, size.height - iconSize.height);
260 261 262 263 264 265 266
    }
  }

  Offset _offsetForBottomLine(Size size, Size iconSize, Size bottomLineSize) {
    final double y = size.height - 0.5 * iconSize.height - 0.5 * bottomLineSize.height;
    switch (textDirection) {
      case TextDirection.ltr:
267
        return Offset(0.0, y);
268
      case TextDirection.rtl:
269
        return Offset(size.width - bottomLineSize.width, y);
270 271 272 273 274 275 276
    }
  }

  Offset _offsetForName(Size size, Size nameSize, Offset bottomLineOffset) {
    final double y = bottomLineOffset.dy - nameSize.height;
    switch (textDirection) {
      case TextDirection.ltr:
277
        return Offset(0.0, y);
278
      case TextDirection.rtl:
279
        return Offset(size.width - nameSize.width, y);
280 281 282 283
    }
  }
}

284 285 286 287 288 289
/// A material design [Drawer] header that identifies the app's user.
///
/// Requires one of its ancestors to be a [Material] widget.
///
/// See also:
///
290
///  * [DrawerHeader], for a drawer header that doesn't show user accounts.
291
///  * <https://material.io/design/components/navigation-drawer.html#anatomy>
292 293 294 295
class UserAccountsDrawerHeader extends StatefulWidget {
  /// Creates a material design drawer header.
  ///
  /// Requires one of its ancestors to be a [Material] widget.
296
  const UserAccountsDrawerHeader({
297
    Key? key,
298
    this.decoration,
299
    this.margin = const EdgeInsets.only(bottom: 8.0),
300 301
    this.currentAccountPicture,
    this.otherAccountsPictures,
302 303
    required this.accountName,
    required this.accountEmail,
304
    this.onDetailsPressed,
305
    this.arrowColor = Colors.white,
306 307
  }) : super(key: key);

308 309
  /// The header's background. If decoration is null then a [BoxDecoration]
  /// with its background color set to the current theme's primaryColor is used.
310
  final Decoration? decoration;
311

312
  /// The margin around the drawer header.
313
  final EdgeInsetsGeometry? margin;
314

315 316
  /// A widget placed in the upper-left corner that represents the current
  /// user's account. Normally a [CircleAvatar].
317
  final Widget? currentAccountPicture;
318

319 320 321
  /// A list of widgets that represent the current user's other accounts.
  /// Up to three of these widgets will be arranged in a row in the header's
  /// upper-right corner. Normally a list of [CircleAvatar] widgets.
322
  final List<Widget>? otherAccountsPictures;
323

324 325
  /// A widget that represents the user's current account name. It is
  /// displayed on the left, below the [currentAccountPicture].
326
  final Widget? accountName;
327

328 329
  /// A widget that represents the email address of the user's current account.
  /// It is displayed on the left, below the [accountName].
330
  final Widget? accountEmail;
331

332 333
  /// A callback that is called when the horizontal area which contains the
  /// [accountName] and [accountEmail] is tapped.
334
  final VoidCallback? onDetailsPressed;
335

336 337 338
  /// The [Color] of the arrow icon.
  final Color arrowColor;

339
  @override
340
  _UserAccountsDrawerHeaderState createState() => _UserAccountsDrawerHeaderState();
341 342 343
}

class _UserAccountsDrawerHeaderState extends State<UserAccountsDrawerHeader> {
344
  bool _isOpen = false;
345

346 347 348 349
  void _handleDetailsPressed() {
    setState(() {
      _isOpen = !_isOpen;
    });
350
    widget.onDetailsPressed!();
351 352
  }

353 354 355
  @override
  Widget build(BuildContext context) {
    assert(debugCheckHasMaterial(context));
356
    assert(debugCheckHasMaterialLocalizations(context));
357
    return Semantics(
358
      container: true,
359
      label: MaterialLocalizations.of(context).signedInLabel,
360 361
      child: DrawerHeader(
        decoration: widget.decoration ?? BoxDecoration(
362
          color: Theme.of(context).primaryColor,
363 364 365
        ),
        margin: widget.margin,
        padding: const EdgeInsetsDirectional.only(top: 16.0, start: 16.0),
366
        child: SafeArea(
367
          bottom: false,
368
          child: Column(
369 370
            crossAxisAlignment: CrossAxisAlignment.stretch,
            children: <Widget>[
371 372
              Expanded(
                child: Padding(
373
                  padding: const EdgeInsetsDirectional.only(end: 16.0),
374
                  child: _AccountPictures(
375 376 377
                    currentAccountPicture: widget.currentAccountPicture,
                    otherAccountsPictures: widget.otherAccountsPictures,
                  ),
378
                ),
379
              ),
380
              _AccountDetails(
381 382 383 384
                accountName: widget.accountName,
                accountEmail: widget.accountEmail,
                isOpen: _isOpen,
                onTap: widget.onDetailsPressed == null ? null : _handleDetailsPressed,
385
                arrowColor: widget.arrowColor,
386 387 388
              ),
            ],
          ),
389
        ),
390
      ),
391 392 393
    );
  }
}