flutter:探究 `element` 内部如何实现状态管理,关联刷新

链接扩展

  1. 初学InheritedWidget的同学可以先看这篇文章 Flutter使用InheritedWidget
  2. 进阶篇,InheritedWidget+Notifier实现状态管理模式 自定义InheritedProvider
  3. 进阶篇,状态管理刷新构思RxBinder

基于setState进行状态管理刷新

之前写过两篇状态管理的文章(如上链接扩展2,3)。总体思想:使用 StatefulWidget作为父节点,监听Notifier数据源变动,触发更新后,使用setState()重走build。中间部件使用Inherited实现数据共享及局部刷新能力。

image.png

绕开Stateful,直接通过 element 刷新

在进入正题之前,我们首先要明确两个提高页面性能的优化点:

  • 能使用StatelessWidget的地方就不使用StatefulWidget
  • flutter整体为树状结构进行绘制,能采用局部刷新的地方,不采用全量刷新

闲话不多说,我们直接上代码:

///自定义的状态管理工具
class RxInheritedProvider<T extends ChangeNotifier> extends StatelessWidget {
  final T create;
  final Widget Function(BuildContext context) builder;

  const RxInheritedProvider({
    Key? key,
    required this.create,
    required this.builder,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return RxInheritedWidget(
      child: Builder(builder: (context) => builder(context)),
      value: create,
    );
  }
}

class RxInheritedWidget<T extends ChangeNotifier> extends InheritedNotifier<T> {
  RxInheritedWidget({
    required T value,
    required Widget child,
  }) : super(notifier: value, child: child);

  get value => this.notifier;
}

核心:使用了官方SDK提供的封装类InheritedNotifier<T>,下面截取部分InheritedNotifier关键代码探讨思想

///代码来自SDK
abstract class InheritedNotifier<T extends Listenable> extends InheritedWidget {
  
  const InheritedNotifier({
    Key key,
    this.notifier,
    @required Widget child,
  }) : assert(child != null),
       super(key: key, child: child);

 
  final T notifier;

  @override
  bool updateShouldNotify(InheritedNotifier<T> oldWidget) {
    return oldWidget.notifier != notifier;
  }

  @override
  _InheritedNotifierElement<T> createElement() => _InheritedNotifierElement<T>(this);
}

Widget层平白无奇,属于简单的封装,重点我们来看看 _InheritedNotifierElement<T>

//代码来自SDK
class _InheritedNotifierElement<T extends Listenable> extends InheritedElement {
  _InheritedNotifierElement(InheritedNotifier<T> widget) : super(widget) {
    widget.notifier?.addListener(_handleUpdate);
  }

  @override
  InheritedNotifier<T> get widget => super.widget as InheritedNotifier<T>;

  bool _dirty = false;

  @override
  void update(InheritedNotifier<T> newWidget) {
    final T oldNotifier = widget.notifier;
    final T newNotifier = newWidget.notifier;
    if (oldNotifier != newNotifier) {
      oldNotifier?.removeListener(_handleUpdate);
      newNotifier?.addListener(_handleUpdate);
    }
    super.update(newWidget);
  }

  @override
  Widget build() {
    if (_dirty)
      notifyClients(widget);
    return super.build();
  }

  void _handleUpdate() {
    _dirty = true;
    markNeedsBuild();
  }

  @override
  void notifyClients(InheritedNotifier<T> oldWidget) {
    super.notifyClients(oldWidget);
    _dirty = false;
  }

  @override
  void unmount() {
    widget.notifier?.removeListener(_handleUpdate);
    super.unmount();
  }
}

_InheritedNotifierElement 都做了些什么?

  • _InheritedNotifierElement对数据源Notifier进行了监听,当触发变动时,调用markNeedsBuild重走build方法
  • 我们知道InheritedElementbuild方法并不会重新刷新自己以及子节点。_InheritedNotifierElement重写了build方法,在方法里进行条件判断,调用了notifyClients对依赖项进行刷新操作

这样,白嫖系统提供的InheritedNotifier<T>,监听数据源进行局部刷新的能力实现了。我们还需要一个工具类用来注册绑定关系。

///提供注册依赖方法
abstract class RxTool {
  static T of<T extends ChangeNotifier>(BuildContext context) {
    return (_getInheritedElement<T>(context).widget as RxInheritedWidget<T>).value;
  }

  static void register<T extends ChangeNotifier>(BuildContext context) {
    var element = _getInheritedElement<T>(context);
    // context.dependOnInheritedElement(element);

    context.dependOnInheritedWidgetOfExactType<RxInheritedWidget<T>>(aspect: element.widget);

    //这种方式不产生关联关系
    // context.getElementForInheritedWidgetOfExactType<RxInheritedWidget<T>>();
  }

  static InheritedElement _getInheritedElement<T extends ChangeNotifier>(
      BuildContext context) {
    var element = context.getElementForInheritedWidgetOfExactType<RxInheritedWidget<T>>();
    if (element == null) {
      throw (Exception("RxInheritedWidget<${T.runtimeType}> is find null"));
    }
    return element;
  }
}

提供 register 方法,将 contextInheritedElement 发生绑定依赖关系。在执行 notifyClient() 方法时进行依赖刷新。绑定依赖的方法有两种,根据需要选其一即可:

  • context.dependOnInheritedElement(element)
  • context.dependOnInheritedWidgetOfExactType<RxInheritedWidget<T>>(aspect: element.widget),注意泛型一定要与provider完全匹配,否则无法关联成功

新建 ConsumerBuilder 封装注册依赖,以及获取共享数据

class ConsumerBuilder<T extends ChangeNotifier> extends StatelessWidget {
  final Widget Function(BuildContext context, T value) builder;

  const ConsumerBuilder({Key? key, required this.builder}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    RxTool.register<T>(context);
    return builder(
      context,
      RxTool.of<T>(context),
    );
  }
}

运行 Demo

/// demo 示例
class Counter extends ChangeNotifier {
  int count = 0;
  void increase() {
    ++count;
    notifyListeners();
  }
}

class TestWidget extends StatelessWidget {
  TestWidget({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: RxInheritedProvider(
          create: Counter(),
          builder: (context) {
            return Center(
              child: Column(
                mainAxisSize: MainAxisSize.min,
                children: [
                  _child(),
                  Builder(builder: (context) {
                    return TextButton(
                        child: Text("自增"),
                        onPressed: () {
                          RxTool.of<Counter>(context).increase();
                        });
                  }),
                ],
              ),
            );
          }),
    );
  }

  Widget _child() {
    return ConsumerBuilder<Counter>(builder: (context, counter) {
      return Text(
        '点击了 ${counter.count} 次',
        style: TextStyle(fontSize: 30.0),
      );
    });
  }
}

亲测有效,运行界面就不截图了,欢迎评论区交流讨论。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容