dart-sdk/samples-dev/swarm/UIState.dart
Leaf Petersen 745f112ef6 Opt out some files from null safety.
Opt an initial batch of files under samples, samples-dev,
utils, and runtime/tools/dartfuzz out of null safety in preparation
for switching the flag on by default.

Change-Id: Icdfd52a5a969e678a7205903332f73fe3841c223
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/166960
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Leaf Petersen <leafp@google.com>
2020-10-12 22:15:42 +00:00

79 lines
2.3 KiB
Dart

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
part of swarmlib;
/**
* The base class for UI state that intends to support browser history.
*/
abstract class UIState {
/**
* The event listener we hook to the window's "popstate" event.
* This event is triggered by the back button or by the first page load.
*/
StreamSubscription _historyTracking;
UIState();
void startHistoryTracking() {
stopHistoryTracking();
bool firstEvent = true;
var handler = EventBatch.wrap((event) {
String state = window.location.hash;
if (state.startsWith('#')) {
// TODO(jimhug): Support default argument on substring.
state = state.substring(1, state.length);
}
if (firstEvent && state != '') {
// TODO(jmesserly): When loading a bookmark or refreshing, we replace
// the app state with a clean app state so the back button works. It
// would be better to support jumping to the previous story.
// We'd need to do some history manipulation here and some fixes to
// the views for this.
window.history.replaceState(null, document.title, '#');
} else if (state != '') {
loadFromHistory(jsonDecode(state));
}
firstEvent = false;
});
_historyTracking = window.onPopState.listen(handler);
}
void stopHistoryTracking() {
if (_historyTracking != null) {
_historyTracking.cancel();
}
}
/** Pushes a state onto the browser history stack */
void pushToHistory() {
if (_historyTracking == null) {
throw 'history tracking not started';
}
String state = jsonEncode(toHistory());
// TODO(jmesserly): [state] should be an Object, and we should pass it to
// the state parameter instead of as a #hash URL. Right now we're working
// around b/4582542.
window.history
.pushState(null, '${document.title}', '${document.title}#$state');
}
/**
* Serialize the state to a form suitable for storing in browser history.
*/
Map<String, String> toHistory();
/**
* Load the UI state from the given [values].
*/
void loadFromHistory(Map<String, String> values);
}