mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
1) Merge input example into widgets example 2) Move single-file, non-fn examples into a "raw" directory 3) Rename stocks-fn and widgets-fn to stocks and widgets R=ojan@chromium.org Review URL: https://codereview.chromium.org/1005393006
74 lines
1.9 KiB
Dart
74 lines
1.9 KiB
Dart
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:convert';
|
|
import 'dart:math';
|
|
import 'package:sky/framework/debug/tracing.dart';
|
|
import 'package:sky/framework/net/fetch.dart';
|
|
|
|
// Snapshot from http://www.nasdaq.com/screening/company-list.aspx
|
|
// Fetched 2/23/2014.
|
|
// "Symbol","Name","LastSale","MarketCap","IPOyear","Sector","industry","Summary Quote",
|
|
// Data in stock_data.json
|
|
|
|
final Random _rng = new Random();
|
|
|
|
class Stock {
|
|
String symbol;
|
|
String name;
|
|
double lastSale;
|
|
String marketCap;
|
|
double percentChange;
|
|
|
|
Stock(this.symbol, this.name, this.lastSale, this.marketCap, this.percentChange);
|
|
|
|
Stock.fromFields(List<String> fields) {
|
|
// FIXME: This class should only have static data, not lastSale, etc.
|
|
// "Symbol","Name","LastSale","MarketCap","IPOyear","Sector","industry","Summary Quote",
|
|
lastSale = 0.0;
|
|
try{
|
|
lastSale = double.parse(fields[2]);
|
|
} catch(_) {}
|
|
symbol = fields[0];
|
|
name = fields[1];
|
|
marketCap = fields[4];
|
|
percentChange = (_rng.nextDouble() * 20) - 10;
|
|
}
|
|
}
|
|
|
|
class StockData {
|
|
List<List<String>> _data;
|
|
|
|
StockData(this._data);
|
|
|
|
void appendTo(List<Stock> stocks) {
|
|
for (List<String> fields in _data)
|
|
stocks.add(new Stock.fromFields(fields));
|
|
}
|
|
}
|
|
|
|
typedef void StockDataCallback(StockData data);
|
|
const _kChunkCount = 30;
|
|
|
|
class StockDataFetcher {
|
|
int _currentChunk = 0;
|
|
final StockDataCallback callback;
|
|
|
|
StockDataFetcher(this.callback) {
|
|
_fetchNextChunk();
|
|
}
|
|
|
|
void _fetchNextChunk() {
|
|
fetch('data/stock_data_${_currentChunk++}.json').then((Response response) {
|
|
String json = response.bodyAsString();
|
|
JsonDecoder decoder = new JsonDecoder();
|
|
|
|
callback(new StockData(decoder.convert(json)));
|
|
|
|
if (_currentChunk < _kChunkCount)
|
|
_fetchNextChunk();
|
|
});
|
|
}
|
|
}
|