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

import 'framework.dart';

7 8 9
// Examples can assume:
// TooltipThemeData data = const TooltipThemeData();

10 11 12
/// An [InheritedWidget] that defines visual properties like colors
/// and text styles, which the [child]'s subtree depends on.
///
13 14 15
/// The [wrap] method is used by [captureAll] and [CapturedThemes.wrap] to
/// construct a widget that will wrap a child in all of the inherited themes
/// which are present in a specified part of the widget tree.
16
///
17 18 19
/// A widget that's shown in a different context from the one it's built in,
/// like the contents of a new route or an overlay, will be able to see the
/// ancestor inherited themes of the context it was built in.
20
///
21
/// {@tool dartpad}
22
/// This example demonstrates how `InheritedTheme.capture()` can be used
23
/// to wrap the contents of a new route with the inherited themes that
24
/// are present when the route was built - but are not present when route
25 26
/// is actually shown.
///
27
/// If the same code is run without `InheritedTheme.capture(), the
28 29 30
/// new route's Text widget will inherit the "something must be wrong"
/// fallback text style, rather than the default text style defined in MyApp.
///
31
/// ** See code in examples/api/lib/widgets/inherited_theme/inherited_theme.0.dart **
32 33 34 35 36 37
/// {@end-tool}
abstract class InheritedTheme extends InheritedWidget {
  /// Abstract const constructor. This constructor enables subclasses to provide
  /// const constructors so that they can be used in const expressions.

  const InheritedTheme({
38 39 40
    super.key,
    required super.child,
  });
41 42 43 44

  /// Return a copy of this inherited theme with the specified [child].
  ///
  /// This implementation for [TooltipTheme] is typical:
45
  ///
46 47
  /// ```dart
  /// Widget wrap(BuildContext context, Widget child) {
48
  ///   return TooltipTheme(data: data, child: child);
49 50 51 52
  /// }
  /// ```
  Widget wrap(BuildContext context, Widget child);

53 54 55 56 57 58 59 60 61 62 63 64 65 66
  /// Returns a widget that will [wrap] `child` in all of the inherited themes
  /// which are present between `context` and the specified `to`
  /// [BuildContext].
  ///
  /// The `to` context must be an ancestor of `context`. If `to` is not
  /// specified, all inherited themes up to the root of the widget tree are
  /// captured.
  ///
  /// After calling this method, the themes present between `context` and `to`
  /// are frozen for the provided `child`. If the themes (or their theme data)
  /// change in the original subtree, those changes will not be visible to
  /// the wrapped `child` - unless this method is called again to re-wrap the
  /// child.
  static Widget captureAll(BuildContext context, Widget child, {BuildContext? to}) {
67 68 69
    assert(child != null);
    assert(context != null);

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    return capture(from: context, to: to).wrap(child);
  }

  /// Returns a [CapturedThemes] object that includes all the [InheritedTheme]s
  /// between the given `from` and `to` [BuildContext]s.
  ///
  /// The `to` context must be an ancestor of the `from` context. If `to` is
  /// null, all ancestor inherited themes of `from` up to the root of the
  /// widget tree are captured.
  ///
  /// After calling this method, the themes present between `from` and `to` are
  /// frozen in the returned [CapturedThemes] object. If the themes (or their
  /// theme data) change in the original subtree, those changes will not be
  /// applied to the themes captured in the [CapturedThemes] object - unless
  /// this method is called again to re-capture the updated themes.
  ///
  /// To wrap a [Widget] in the captured themes, call [CapturedThemes.wrap].
87 88 89
  ///
  /// This method can be expensive if there are many widgets between `from` and
  /// `to` (it walks the element tree between those nodes).
90 91 92 93 94 95 96 97
  static CapturedThemes capture({ required BuildContext from, required BuildContext? to }) {
    assert(from != null);

    if (from == to) {
      // Nothing to capture.
      return CapturedThemes._(const <InheritedTheme>[]);
    }

98
    final List<InheritedTheme> themes = <InheritedTheme>[];
99
    final Set<Type> themeTypes = <Type>{};
100 101 102 103 104 105 106 107 108 109 110 111 112
    late bool debugDidFindAncestor;
    assert(() {
      debugDidFindAncestor = to == null;
      return true;
    }());
    from.visitAncestorElements((Element ancestor) {
      if (ancestor == to) {
        assert(() {
          debugDidFindAncestor = true;
          return true;
        }());
        return false;
      }
113
      if (ancestor is InheritedElement && ancestor.widget is InheritedTheme) {
114
        final InheritedTheme theme = ancestor.widget as InheritedTheme;
115 116 117
        final Type themeType = theme.runtimeType;
        // Only remember the first theme of any type. This assumes
        // that inherited themes completely shadow ancestors of the
Pierre-Louis's avatar
Pierre-Louis committed
118
        // same type.
119 120 121 122
        if (!themeTypes.contains(themeType)) {
          themeTypes.add(themeType);
          themes.add(theme);
        }
123 124 125 126
      }
      return true;
    });

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
    assert(debugDidFindAncestor, 'The provided `to` context must be an ancestor of the `from` context.');
    return CapturedThemes._(themes);
  }
}

/// Stores a list of captured [InheritedTheme]s that can be wrapped around a
/// child [Widget].
///
/// Used as return type by [InheritedTheme.capture].
class CapturedThemes {
  CapturedThemes._(this._themes);

  final List<InheritedTheme> _themes;

  /// Wraps a `child` [Widget] in the [InheritedTheme]s captured in this object.
  Widget wrap(Widget child) {
    return _CaptureAll(themes: _themes, child: child);
144 145 146 147 148
  }
}

class _CaptureAll extends StatelessWidget {
  const _CaptureAll({
149 150
    required this.themes,
    required this.child,
151
  }) : assert(themes != null), assert(child != null);
152 153 154 155 156 157 158

  final List<InheritedTheme> themes;
  final Widget child;

  @override
  Widget build(BuildContext context) {
    Widget wrappedChild = child;
159
    for (final InheritedTheme theme in themes) {
160
      wrappedChild = theme.wrap(context, wrappedChild);
161
    }
162 163 164
    return wrappedChild;
  }
}