aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/index.tsx
blob: 3f06b33282dfeb6615bc08cc86e8047f0ea5b1c4 (plain) (blame)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import Box from '@mui/material/Box';
import CssBaseline from '@mui/material/CssBaseline';
import { SnackbarProvider } from 'notistack';
import React, { Suspense, lazy } from 'react';
import { createRoot } from 'react-dom/client';

import Loading from './Loading';
import RegisterServiceWorker from './RegisterServiceWorker';
import RootStore, { RootStoreProvider } from './RootStore';
import WindowControlsOverlayColor from './WindowControlsOverlayColor';
import ThemeProvider from './theme/ThemeProvider';
import getLogger from './utils/getLogger';

const log = getLogger('index');

const initialValue = `class Family {
    contains Person[] members
}

class Person {
    Person[] children opposite parent
    Person[0..1] parent opposite children
    int age
    TaxStatus taxStatus
}

enum TaxStatus {
    child, student, adult, retired
}

% A child cannot have any dependents.
pred invalidTaxStatus(Person p) <->
    taxStatus(p, child),
    children(p, _q)
  ; taxStatus(p, retired),
    parent(p, q),
    !taxStatus(q, retired).

rule createChild(may Person p, must Person newPerson):
    may children(p, newPerson),
    may !equals(newPerson, newPerson)
==> new q <: newPerson,
    children(p, q),
    taxStatus(q, child).

indiv family.
Family(family).
members(family, anne).
members(family, bob).
members(family, ciri).
children(anne, ciri).
?children(bob, ciri).
default children(ciri, *): false.
taxStatus(anne, adult).
age(anne, 35).
bobAge: 27.
age(bob, bobAge).
!age(ciri, bobAge).

scope Family = 1, Person += 5..10.
`;

const rootStore = new RootStore(initialValue);

const App = lazy(() => import('./App.js'));

const app = (
  <React.StrictMode>
    <RootStoreProvider rootStore={rootStore}>
      <ThemeProvider>
        <CssBaseline enableColorScheme />
        <WindowControlsOverlayColor />
        <SnackbarProvider>
          <RegisterServiceWorker />
          <Box height="100vh" overflow="auto">
            <Suspense fallback={<Loading />}>
              <App />
            </Suspense>
          </Box>
        </SnackbarProvider>
      </ThemeProvider>
    </RootStoreProvider>
  </React.StrictMode>
);

const rootElement = document.getElementById('app');
if (rootElement === null) {
  log.error('Root element not found');
} else {
  const root = createRoot(rootElement);
  root.render(app);
}