簡體   English   中英

如何按 Dart 中的另一個列表正確排序列表

[英]How to properly sort list by another list in Dart

我有兩個列表,一個是 Map 項的列表,另一個是順序列表。
我想根據項目的描述屬性對項目進行排序,並將它們與訂單列表進行比較,並將它們插入頂部。

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'},
// ];

理想情況下,我想使用sortBysortByCompare ,但不幸的是,我找不到合適的示例或無法掌握如何使用它。

我解決這個問題的方法是在order列表中找到描述的索引,如果找不到,我會使用order列表中索引之外的數字來指示該項目應該在底部名單。

這將是我的解決方案:

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}]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM