如何按 Dart 中的另一个列表正确排序列表

How to properly sort list by another list in Dart

我有两个列表,一个是地图项列表,另一个是顺序列表。
我想根据描述属性对项目进行排序,并将它们与订单列表进行比较,并将它们插入顶部。

import 'package:collection/collection.dart';

void main() {
  List<String> order = [
    'top european',
    'top usa',
    'top rest of the world'
  ];

  List<Map> items = [
    {'id': 0, 'id2': 5, 'description': 'Top USA'},
    {'id': 2, 'id2': 2, 'description': 'Top A'},
    {'id': 3, 'id2': 0, 'description': 'Top Z'},
    {'id': 6, 'id2': 6, 'description': 'Top Rest of the world'},
    {'id': 4, 'id2': 4, 'description': 'Top C'},
    {'id': 5, 'id2': 1, 'description': 'Top D'},
    {'id': 1, 'id2': 3, 'description': 'Top European'},
  ];
  
  //this works but adds the items at the end
  items.sort((a,b)  {
    return order.indexOf(a['description'].toLowerCase()) - 
      order.indexOf(b['description'].toLowerCase());
  });

  ///Results: print(items);
  // List<Map> items = [
  //   {'id': 2, 'id2': 2, 'description': 'Top A'},
  //   {'id': 3, 'id2': 0, 'description': 'Top Z'},
  //   {'id': 4, 'id2': 4, 'description': 'Top C'},
  //   {'id': 5, 'id2': 1, 'description': 'Top D'},
  //   {'id': 1, 'id2': 3, 'description': 'Top European'},
  //   {'id': 0, 'id2': 5, 'description': 'Top USA'},
  //   {'id': 6, 'id2': 6, 'description': 'Top Rest of the world'},
  // ];
}

解决方案:我也试过这种方法,虽然不理想,但很管用。

List <Map> itemsOrder = items
  .where(
    (ele) => order.contains(ele['description'].toString().toLowerCase()))
  .toList();

itemsOrder.sort((a, b) {
  return order.indexOf(a['description'].toLowerCase()) -
    order.indexOf(b['description'].toLowerCase());
});

items.removeWhere(
  (ele) => order.contains(ele['description'].toString().toLowerCase()));

itemsOrder = itemsOrder.reversed.toList();

for (int i = 0; i < itemsOrder.length; i++) {
  items.insert(0, itemsOrder[i]);
}

///Results: print(items);
// List<Map> items = [
//   {'id': 1, 'id2': 3, 'description': 'Top European'},
//   {'id': 0, 'id2': 5, 'description': 'Top USA'},
//   {'id': 6, 'id2': 6, 'description': 'Top Rest of the world'},
//   {'id': 2, 'id2': 2, 'description': 'Top A'},
//   {'id': 3, 'id2': 0, 'description': 'Top Z'},
//   {'id': 4, 'id2': 4, 'description': 'Top C'},
//   {'id': 5, 'id2': 1, 'description': 'Top D'},
// ];

理想情况下,我想使用 sortBy or sortByCompare,但不幸的是,我找不到合适的示例或无法掌握如何使用它。

我要解决这个问题的方法是在 order 列表中找到描述的索引,如果找不到,我会使用 [=12= 中索引之外的数字] 列表以指示此项应位于列表底部。

这将是我的解决方案:

void testIt() {
  final outOfBounds = order.length + 1;
  const description = 'description';
  items.sort(
    (lhs, rhs) {
      final lhsDesc = (lhs[description] as String).toLowerCase();
      final rhsDesc = (rhs[description] as String).toLowerCase();
      final lhsIndex =
          order.contains(lhsDesc) ? order.indexOf(lhsDesc) : outOfBounds;
      final rhsIndex =
          order.contains(rhsDesc) ? order.indexOf(rhsDesc) : outOfBounds;
      return lhsIndex.compareTo(rhsIndex);
    },
  );
}

结果是:

[{id: 1, id2: 3, description: Top European}, {id: 0, id2: 5, description: Top USA}, {id: 6, id2: 6, description: Top Rest of the world}, {id: 2, id2: 2, description: Top A}, {id: 3, id2: 0, description: Top Z}, {id: 4, id2: 4, description: Top C}, {id: 5, id2: 1, description: Top D}]