41 lines
1.4 KiB
Dart
41 lines
1.4 KiB
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
/// Matrix room states are addressed by a tuple of the [type] and an
|
|
/// optional [stateKey].
|
|
class StatesMap {
|
|
Map<String, Map<String, Event>> states = {};
|
|
|
|
/// Returns either the [Event] or a map of state_keys to [Event] objects.
|
|
/// If you just enter a MatrixID, it will try to return the corresponding m.room.member event.
|
|
dynamic operator [](String key) {
|
|
//print("[Warning] This method will be depracated in the future!");
|
|
if (key == null) return null;
|
|
if (key.startsWith("@") && key.contains(":")) {
|
|
if (!states.containsKey("m.room.member")) states["m.room.member"] = {};
|
|
return states["m.room.member"][key];
|
|
}
|
|
if (!states.containsKey(key)) states[key] = {};
|
|
if (states[key][""] is Event) {
|
|
return states[key][""];
|
|
} else if (states[key].isEmpty) {
|
|
return null;
|
|
} else {
|
|
return states[key];
|
|
}
|
|
}
|
|
|
|
void operator []=(String key, Event val) {
|
|
//print("[Warning] This method will be depracated in the future!");
|
|
if (key.startsWith("@") && key.contains(":")) {
|
|
if (!states.containsKey("m.room.member")) states["m.room.member"] = {};
|
|
states["m.room.member"][key] = val;
|
|
}
|
|
if (!states.containsKey(key)) states[key] = {};
|
|
states[key][val.stateKey ?? ""] = val;
|
|
}
|
|
|
|
bool containsKey(String key) => states.containsKey(key);
|
|
|
|
void forEach(f) => states.forEach(f);
|
|
}
|