mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
973a1a0219
This includes Fasta, tools and observatory, so the checked-in SDK must have the lower-case constants. Change-Id: I8380ad041ad058f7d02ae19caccfecd434d13d75 Reviewed-on: https://dart-review.googlesource.com/50201 Commit-Queue: Lasse R.H. Nielsen <lrn@google.com> Reviewed-by: Leaf Petersen <leafp@google.com>
76 lines
2.3 KiB
Dart
76 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.
|
|
|
|
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);
|
|
}
|