@fmsim/fmsim 1.0.88 → 2.0.0-beta.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +3 -3
- package/_index.html +8 -43
- package/assets/manifest.json +2 -0
- package/assets/playback-test-board.json +8440 -0
- package/config/config.development.js +2 -3
- package/dist-client/apptools/favorite-tool.js +4 -5
- package/dist-client/apptools/favorite-tool.js.map +1 -1
- package/dist-client/board-list/board-tile-list.js +205 -21
- package/dist-client/board-list/board-tile-list.js.map +1 -1
- package/dist-client/board-list/group-bar.js +6 -6
- package/dist-client/board-list/group-bar.js.map +1 -1
- package/dist-client/bootstrap.js +0 -2
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/entries/headless-scene-components.js +7 -0
- package/dist-client/entries/headless-scene-components.js.map +1 -0
- package/dist-client/entries/scene-player.js +83 -0
- package/dist-client/entries/scene-player.js.map +1 -0
- package/dist-client/entries/scene-viewer.js +80 -0
- package/dist-client/entries/scene-viewer.js.map +1 -0
- package/dist-client/entries/things-scene-components.import +1 -0
- package/dist-client/pages/board-list-page.js +24 -4
- package/dist-client/pages/board-list-page.js.map +1 -1
- package/dist-client/themes/board-app-menu-tools-theme.css +0 -2
- package/dist-client/themes/index.css +8 -2
- package/dist-client/themes/light.css +51 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/board-info.js +16 -26
- package/dist-client/viewparts/board-info.js.map +1 -1
- package/dist-client/viewparts/group-info.js +15 -25
- package/dist-client/viewparts/group-info.js.map +1 -1
- package/dist-client/viewparts/menu-tools.js +10 -12
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/index.js +1 -0
- package/dist-server/index.js.map +1 -1
- package/dist-server/routes.js +41 -0
- package/dist-server/routes.js.map +1 -0
- package/dist-server/service/index.js +5 -2
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/machine-units/machine-units-mock.js +84 -0
- package/dist-server/service/machine-units/machine-units-mock.js.map +1 -0
- package/dist-server/service/playback/index.js +217 -0
- package/dist-server/service/playback/index.js.map +1 -0
- package/dist-server/service/playback/mock-data.js +658 -0
- package/dist-server/service/playback/mock-data.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +34 -33
- package/schema.graphql +3504 -380
- package/views/auth-page.html +2 -2
- package/views/internal-board-full-feature-view.html +1 -2
- package/views/internal-board-service-view.html +1 -2
- package/views/internal-label-command-view.html +0 -1
- package/views/public/home.html +2 -2
- package/dist-client/apptools/favorite-tool.d.ts +0 -26
- package/dist-client/board-list/board-tile-list.d.ts +0 -20
- package/dist-client/board-list/group-bar.d.ts +0 -14
- package/dist-client/bootstrap.d.ts +0 -5
- package/dist-client/index.d.ts +0 -0
- package/dist-client/pages/attachment-list-page.d.ts +0 -21
- package/dist-client/pages/board-list-page.d.ts +0 -70
- package/dist-client/pages/connection-list-page.d.ts +0 -30
- package/dist-client/pages/font-list-page.d.ts +0 -10
- package/dist-client/pages/scenario-list-page.d.ts +0 -30
- package/dist-client/pages/toplevel-theme-list-page.d.ts +0 -25
- package/dist-client/route.d.ts +0 -1
- package/dist-client/viewparts/board-info.d.ts +0 -16
- package/dist-client/viewparts/group-info.d.ts +0 -15
- package/dist-client/viewparts/menu-tools.d.ts +0 -20
package/Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Use an official ubuntu image
|
|
2
|
-
FROM hatiolab/operato-env:
|
|
2
|
+
FROM hatiolab/operato-env:22.22
|
|
3
3
|
|
|
4
4
|
# Set the working directory to /app
|
|
5
5
|
WORKDIR /app
|
|
@@ -8,9 +8,9 @@ WORKDIR /app
|
|
|
8
8
|
COPY . .
|
|
9
9
|
|
|
10
10
|
# run node install command
|
|
11
|
-
RUN yarn install
|
|
11
|
+
RUN yarn install --production && yarn cache clean && rm -rf /root/.cache /usr/local/share/.cache
|
|
12
12
|
|
|
13
13
|
# Make port 3000 available to the world outside this container
|
|
14
14
|
EXPOSE 3000
|
|
15
15
|
|
|
16
|
-
CMD [ "yarn", "run", "serve" ]
|
|
16
|
+
CMD [ "yarn", "run", "serve" ]
|
package/_index.html
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
+
<meta name="google" content="notranslate" />
|
|
5
6
|
<title>Fmsim</title>
|
|
6
7
|
<meta name="generator" content="Things Factory Starter Kit" />
|
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover" />
|
|
8
9
|
<meta name="description" content="Factory Layout View" />
|
|
9
10
|
|
|
10
11
|
<base href="/" />
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
<link rel="apple-touch-icon" sizes="192x192" href="/assets/manifest/icon-192x192.png" />
|
|
38
39
|
|
|
39
40
|
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
|
|
40
|
-
<meta name="msapplication-TileImage" content="
|
|
41
|
+
<meta name="msapplication-TileImage" content="assets/manifest/icon-144x144.png" />
|
|
41
42
|
<meta name="msapplication-TileColor" content="#ea6780" />
|
|
42
43
|
<meta name="msapplication-tap-highlight" content="no" />
|
|
43
44
|
|
|
@@ -46,51 +47,15 @@
|
|
|
46
47
|
<meta name="twitter:site" content="@username" />
|
|
47
48
|
<meta property="og:type" content="website" />
|
|
48
49
|
<meta property="og:site_name" content="Fmsim, Factory Layout View." />
|
|
49
|
-
<meta property="og:image" content="
|
|
50
|
-
|
|
51
|
-
<!-- google webfonts -->
|
|
52
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
53
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
50
|
+
<meta property="og:image" content="assets/manifest/icon-144x144.png" />
|
|
54
51
|
|
|
55
52
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
|
56
|
-
<link
|
|
53
|
+
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
57
54
|
<link href="/fmsim/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
58
55
|
<link href="/fmsim/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
|
59
|
-
<link href="/fmsim/node_modules/pretendard/dist/web/static/pretendard.css" rel="stylesheet" />
|
|
60
|
-
|
|
61
|
-
<!-- Add any global styles for body, document, etc. -->
|
|
62
|
-
<style>
|
|
63
|
-
html {
|
|
64
|
-
--scene-theme-font-family: 'Pretendard', 'Segoe UI', sans-serif;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
html,
|
|
68
|
-
body {
|
|
69
|
-
margin: 0;
|
|
70
|
-
padding: 0;
|
|
71
|
-
overflow: hidden;
|
|
72
|
-
font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
73
|
-
line-height: 1.5;
|
|
74
|
-
-webkit-font-smoothing: antialiased;
|
|
75
|
-
}
|
|
76
|
-
</style>
|
|
77
|
-
|
|
78
|
-
<script>
|
|
79
|
-
if ('serviceWorker' in navigator) {
|
|
80
|
-
navigator.serviceWorker.register('/service-worker.js', {
|
|
81
|
-
scope: '/'
|
|
82
|
-
})
|
|
83
|
-
}
|
|
84
|
-
</script>
|
|
85
56
|
</head>
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
<things-app context-path-prefix="mcs"></things-app>
|
|
57
|
+
<body class="light">
|
|
58
|
+
<things-app></things-app>
|
|
89
59
|
<noscript> Please enable JavaScript to view this website. </noscript>
|
|
90
|
-
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|
|
91
|
-
<script src="/fmsim/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
|
|
92
|
-
<script src="/fmsim/node_modules/web-animations-js/web-animations-next.min.js"></script>
|
|
93
|
-
<script src="/fmsim/node_modules/@hatiolab/things-scene/things-scene-min.js"></script>
|
|
94
|
-
<!-- Built with love using PWA Starter Kit -->
|
|
95
60
|
</body>
|
|
96
61
|
</html>
|