This repository was archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.dart
75 lines (62 loc) · 2.33 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright 2016 The Fuchsia 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 '../../config.dart';
import '../../elements.dart';
import '../../datastore.dart';
import '../../firestore.dart';
import '../../flutterviews.dart';
import '../../sync.dart';
import '../../views.dart';
import '../sync/firebasetransport.dart';
import 'createdata.dart';
import 'createinit.dart';
import 'createapp.dart';
import 'hackernews.dart';
const CREATE_COLLECTION = 'create';
final String syncUri = 'http://SCRUBBED.appspot.com/data?id=$CREATE_VERSION';
const bool RESET_DATASTORE = false;
void createMain() {
InMemoryDatastore<CompositeData> datastore = InMemoryDatastore<CompositeData>(allCreateTypes);
Ref<bool> dataReady = Boxed<bool>(false);
CreateDataset dataset = CreateDataset(DEMOAPP_NAMESPACE);
switch (APPLICATION) {
case ApplicationConfig.CREATE_LEGACY:
DataTransport transport = HttpTransport(syncUri);
if (!RESET_DATASTORE) {
DataSyncer(datastore, transport).initialize(dataReady, INITIAL_STATE);
} else {
datastore.addAll(dataset.makeInitialData(), datastore.version);
dataReady.value = true;
DataSyncer(datastore, transport).push();
}
break;
case ApplicationConfig.CREATE_RESET:
dataset.setDatastore(initItemRecordSet());
datastore.addAll(dataset.makeInitialData(), datastore.version);
dataReady.value = true;
//DataSyncer(datastore, HttpTransport(syncUri)).push();
break;
case ApplicationConfig.CREATE_FIRESTORE:
print('TODO: update INITIAL_STATE');
DataSyncer(datastore, null).initialize(dataReady, INITIAL_STATE);
DatastoreSync(datastore, CREATE_COLLECTION).setup();
break;
case ApplicationConfig.CREATE_DEMO:
datastore = initItemRecordSet();
datastore.dataTypes.addAll(allCreateTypes);
dataset.setDatastore(datastore);
datastore.addAll(dataset.makeInitialData(), datastore.version);
//datastore.dump();
DataSyncer(datastore, FirebaseTransport()).push();
dataReady.value = true;
break;
default:
throw StateError('Unknown app $APPLICATION');
}
ApplicationView appView = CreateApp(datastore, dataReady, dataset).view;
FlutterApp(appView).run();
}
void main() {
createMain();
}