Skip to content

Commit

Permalink
Add build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Qolzam committed Mar 21, 2020
1 parent 66d8d11 commit 4d93372
Show file tree
Hide file tree
Showing 18 changed files with 216 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# Dev files and directories
ui/node_modules/
ui/build/
vendor/

# Final results
Expand Down
Binary file modified telar-cli
Binary file not shown.
22 changes: 22 additions & 0 deletions ui/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"files": {
"main.css": "/static/css/main.ab2c6aa1.chunk.css",
"main.js": "/static/js/main.3b06cd47.chunk.js",
"main.js.map": "/static/js/main.3b06cd47.chunk.js.map",
"runtime-main.js": "/static/js/runtime-main.c8bea52d.js",
"runtime-main.js.map": "/static/js/runtime-main.c8bea52d.js.map",
"static/js/2.192763cd.chunk.js": "/static/js/2.192763cd.chunk.js",
"static/js/2.192763cd.chunk.js.map": "/static/js/2.192763cd.chunk.js.map",
"index.html": "/index.html",
"precache-manifest.ab696fa72b8f1534b3c7213cc0fa5418.js": "/precache-manifest.ab696fa72b8f1534b3c7213cc0fa5418.js",
"service-worker.js": "/service-worker.js",
"static/css/main.ab2c6aa1.chunk.css.map": "/static/css/main.ab2c6aa1.chunk.css.map",
"static/js/2.192763cd.chunk.js.LICENSE.txt": "/static/js/2.192763cd.chunk.js.LICENSE.txt"
},
"entrypoints": [
"static/js/runtime-main.c8bea52d.js",
"static/js/2.192763cd.chunk.js",
"static/css/main.ab2c6aa1.chunk.css",
"static/js/main.3b06cd47.chunk.js"
]
}
Binary file added ui/build/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions ui/build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><meta charset="utf-8"/><link rel="shortcut icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="/manifest.json"/><title>Telar</title><link href="/static/css/main.ab2c6aa1.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,p,l=t[0],a=t[1],f=t[2],c=0,s=[];c<l.length;c++)p=l[c],Object.prototype.hasOwnProperty.call(o,p)&&o[p]&&s.push(o[p][0]),o[p]=0;for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n]);for(i&&i(t);s.length;)s.shift()();return u.push.apply(u,f||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,l=1;l<r.length;l++){var a=r[l];0!==o[a]&&(n=!1)}n&&(u.splice(t--,1),e=p(p.s=r[0]))}return e}var n={},o={1:0},u=[];function p(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,p),r.l=!0,r.exports}p.m=e,p.c=n,p.d=function(e,t,r){p.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},p.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},p.t=function(e,t){if(1&t&&(e=p(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(p.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)p.d(r,n,function(t){return e[t]}.bind(null,n));return r},p.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return p.d(t,"a",t),t},p.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},p.p="/";var l=this["webpackJsonptsup-app"]=this["webpackJsonptsup-app"]||[],a=l.push.bind(l);l.push=t,l=l.slice();for(var f=0;f<l.length;f++)t(l[f]);var i=a;r()}([])</script><script src="/static/js/2.192763cd.chunk.js"></script><script src="/static/js/main.3b06cd47.chunk.js"></script></body></html>
51 changes: 51 additions & 0 deletions ui/build/index3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<html>
<head>
<title>WebSocket demo</title>
</head>
<body>

<div>
<form>
<label for="numberfield">Number</label>
<input type="text" id="numberfield" placeholder="12"/><br />
<button type="button" id="sendBtn">Send</button>
</form>
</div>
<div id="container"></div>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
var ws;

if (window.WebSocket === undefined) {
alert("Your browser does not support WebSockets");
return;
} else {
ws = initWS();
}

function initWS() {
var socket = new WebSocket("ws://localhost:8000/ws"),
container = $("#container")
socket.onopen = function() {
container.append("<p>Socket is open</p>");
};
socket.onmessage = function (e) {
container.append("<p> Got some shit:" + e.data + "</p>");
}
socket.onclose = function () {
container.append("<p>Socket closed</p>");
}

return socket;
}

$("#sendBtn").click(function (e) {
e.preventDefault();
ws.send(JSON.stringify({ Num: parseInt($("#numberfield").val()) }));
});
});
</script>
</body>
</html>
15 changes: 15 additions & 0 deletions ui/build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
26 changes: 26 additions & 0 deletions ui/build/precache-manifest.ab696fa72b8f1534b3c7213cc0fa5418.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
self.__precacheManifest = (self.__precacheManifest || []).concat([
{
"revision": "6a7b0991b6516d0629df26210d29c777",
"url": "/index.html"
},
{
"revision": "02db322fbf95ba6f226a",
"url": "/static/css/main.ab2c6aa1.chunk.css"
},
{
"revision": "2b55e221abd5785b3726",
"url": "/static/js/2.192763cd.chunk.js"
},
{
"revision": "ac9fac6c8e755a8efecd01981adb88e6",
"url": "/static/js/2.192763cd.chunk.js.LICENSE.txt"
},
{
"revision": "02db322fbf95ba6f226a",
"url": "/static/js/main.3b06cd47.chunk.js"
},
{
"revision": "47bf3395871493a86dac",
"url": "/static/js/runtime-main.c8bea52d.js"
}
]);
39 changes: 39 additions & 0 deletions ui/build/service-worker.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/**
* Welcome to your Workbox-powered service worker!
*
* You'll need to register this file in your web app and you should
* disable HTTP caching for this file too.
* See https://goo.gl/nhQhGp
*
* The rest of the code is auto-generated. Please don't update this file
* directly; instead, make changes to your Workbox build configuration
* and re-run your build process.
* See https://goo.gl/2aRDsh
*/

importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

importScripts(
"/precache-manifest.ab696fa72b8f1534b3c7213cc0fa5418.js"
);

self.addEventListener('message', (event) => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
});

workbox.core.clientsClaim();

/**
* The workboxSW.precacheAndRoute() method efficiently caches and responds to
* requests for URLs in the manifest.
* See https://goo.gl/S9QRab
*/
self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});

workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("/index.html"), {

blacklist: [/^\/_/,/\/[^/?]+\.[^/]+$/],
});
2 changes: 2 additions & 0 deletions ui/build/static/css/main.ab2c6aa1.chunk.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ui/build/static/css/main.ab2c6aa1.chunk.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ui/build/static/js/2.192763cd.chunk.js

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions ui/build/static/js/2.192763cd.chunk.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/

/**
* A better abstraction over CSS.
*
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
* @website https://github.com/cssinjs/jss
* @license MIT
*/

/** @license React v0.19.0
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.13.0
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.13.0
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.13.0
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
1 change: 1 addition & 0 deletions ui/build/static/js/2.192763cd.chunk.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions ui/build/static/js/main.3b06cd47.chunk.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ui/build/static/js/main.3b06cd47.chunk.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions ui/build/static/js/runtime-main.c8bea52d.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4d93372

Please sign in to comment.