Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
71 commits
Select commit Hold shift + click to select a range
695aded
Audit fix
apausa Mar 16, 2026
d911c06
Add error information when server address is undefined
apausa Mar 16, 2026
cf00fb1
Clean code
apausa Mar 16, 2026
e06cda1
Remove position reset after applying filters
apausa Mar 16, 2026
be7c448
Remove position reset after applying filters
apausa Mar 16, 2026
a4ecec5
Remove boilerplate code with prefilter logic [Read more]
apausa Mar 17, 2026
1b12953
Remove inoperative reconnect logic
apausa Mar 17, 2026
3c0b6b2
Update views-dictionary wiwthout the prefilter and reconnect logic
apausa Mar 17, 2026
5c569f4
Integrtae common and lib files in filters
apausa Mar 17, 2026
6dcd384
Unified filter checkbox responsabilities
apausa Mar 17, 2026
aeabcbc
Refactor collections
apausa Mar 17, 2026
4242948
Update templates without the prefilter and reconnect logic
apausa Mar 17, 2026
6094704
Move views to viz folder
apausa Mar 17, 2026
68f6385
Rename views to view-selector, move it to js/state/, start filters re…
apausa Mar 17, 2026
786304c
Remove unused logic from filters folder
apausa Mar 17, 2026
b4e184f
Remove conflicting manual viewport culling logic
apausa Mar 17, 2026
18f6fc2
Fix bugs
apausa Mar 17, 2026
579d816
Add copy object to load event
apausa Mar 17, 2026
c28146f
Continue filters refactor in filter.js [Read more]
apausa Mar 17, 2026
3c208c2
Unify logic for forward and reverse links
apausa Mar 17, 2026
c5c2a70
Finish filters refactor in renderable.js (last step of filtering upda…
apausa Mar 17, 2026
5345c76
Render filtered out boxes and links in greyscale with transparency
apausa Mar 17, 2026
01a6cdb
Move checkbox related code to checkbox
apausa Mar 18, 2026
f8326b4
Create filters definition file
apausa Mar 18, 2026
1a30ab2
Remove individual filter collections
apausa Mar 18, 2026
dd62b6b
Make filter definition declarative
apausa Mar 18, 2026
1a2ac4c
Remove unused session storage
apausa Mar 18, 2026
57a3ce9
Bump up version number
apausa Mar 18, 2026
609ffa6
Lint some template files and bring back copy file
apausa Mar 18, 2026
44c8a76
Remove wheel listener from previous views to avoid overlapping renders
apausa Mar 18, 2026
bb27d95
Adjust color
apausa Mar 19, 2026
5911058
Move copy object
apausa Mar 19, 2026
b31cc4d
Update serve message
apausa Mar 19, 2026
6245370
Handle filter by 0
apausa Mar 19, 2026
41a9669
Handle filter by 0
apausa Mar 19, 2026
736103c
Handle schema 6 as schema 3
apausa Mar 20, 2026
bbad9f2
Fix bug
apausa Mar 20, 2026
7995e2b
Fix bug
apausa Mar 20, 2026
038f1af
Fix inverse filters logic
apausa Mar 20, 2026
0fd70bf
Move globals.js to state/ and update imports
apausa Mar 20, 2026
507a0d5
Move ui elements inside ui folder
apausa Mar 20, 2026
0cfdd5b
Create utils and constants folders in lib folder
apausa Mar 20, 2026
ed7c369
Rename templates to layoutFunctions
apausa Mar 20, 2026
b3cfd9d
Rename pre-filter to selector
apausa Mar 20, 2026
649e1f8
Update imports
apausa Mar 20, 2026
e441867
Update imports
apausa Mar 20, 2026
311fdc7
Rename objects to items
apausa Mar 20, 2026
ce08c5c
Update imports
apausa Mar 20, 2026
8d93a75
Refactor viewsDicitonary
apausa Mar 20, 2026
06b8839
Move pixi-state
apausa Mar 20, 2026
6de9880
Update imports
apausa Mar 20, 2026
eea1ab9
Update imports
apausa Mar 20, 2026
10fe9d1
Refactor views folder
apausa Mar 20, 2026
fa7b97e
Separate concerns in state/
apausa Mar 20, 2026
d50d02b
Centralize box texture caching in pixi-state.js
apausa Mar 20, 2026
867f06c
Update imports
apausa Mar 20, 2026
0dbf9b9
Separate concerns between rendering logic and ui modal
apausa Mar 20, 2026
e90d028
Structure loaders folder
apausa Mar 23, 2026
4e7b044
Separate responsabilities in modals
apausa Mar 23, 2026
1c18842
Separate event switching responsability
apausa Mar 23, 2026
047eb18
Isolate JSON file processing responsabilitiy
apausa Mar 23, 2026
ca7de5e
Isolate view activation logic
apausa Mar 23, 2026
fee8cd6
Isolate event switching logic
apausa Mar 23, 2026
15bc6ba
Isolate view rendering logic
apausa Mar 23, 2026
344db2e
Isolate start visualization logic
apausa Mar 23, 2026
655322f
Fix imports
apausa Mar 23, 2026
2f8ea81
Replace filter event listeners with every new view
apausa Mar 23, 2026
0160e40
Unify renderView
apausa Mar 23, 2026
1448871
Reset filter state when changing views
apausa Mar 23, 2026
228b9e2
Pass test
apausa Mar 23, 2026
04a7b9f
Assign filtered out color to links when moving the box
apausa Mar 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions bin/serve.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
import express from 'express';
import express from "express";

var app = express();

app.get('/', function(req, res) {
res.redirect('index.html')
app.get("/", function (req, res) {
res.redirect("index.html");
});

app.use(express.static('.'));
app.use(express.static("."));

const server = app.listen(8008, "127.0.0.1", function() {
var host = server.address().address;
var port = server.address().port;
console.log('Serving from: http://' + host + ':' + port + '/');
const server = app.listen(8008, "127.0.0.1", function () {
const addr = server.address();
if (!addr) {
throw new Error(
"Port 8008 might be in use already, try running 'kill -9 $(lsof -t -i:8008) if there no other users'",
);
} else {
var host = server.address().address;
var port = server.address().port;
console.log("Serving from: http://" + host + ":" + port + "/");
}
});
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ <h1>Input File Loader</h1>
<span>Invert filters?</span>
</div>
<div id="filters-buttons">
<button id="filter-apply" class="filter-action">Apply</button>
<button id="filter-reset" class="filter-action">Reset</button>
</div>
</div>
Expand Down Expand Up @@ -321,7 +320,7 @@ <h1>Input File Loader</h1>
</button>
</li>
</ul>
<p>Version 1.2</p>
<p>Version 1.3</p>
</div>
<div id="view-information-content">
<h2 id="view-title-info"></h2>
Expand Down Expand Up @@ -405,12 +404,13 @@ <h2 id="view-title-info"></h2>
}
}
</script>
<script type="module" src="js/main.js"></script>
<script type="module" src="js/modals/welcome.js"></script>
<script type="module" src="js/modals/input.js"></script>
<script type="module" src="js/modals/information.js"></script>
<script type="module" src="js/views/views.js"></script>
<script type="module" src="js/state/current-file.js"></script>
<script type="module" src="js/toggle/switch-deploy.js"></script>
<script type="module" src="js/ui/modals/welcome.js"></script>
<script type="module" src="js/ui/modals/input.js"></script>
<script type="module" src="js/ui/modals/information.js"></script>
<script type="module" src="js/ui/toggle/switch-deploy.js"></script>
<script type="module" src="js/ui/load-file.js"></script>
<script type="module" src="js/ui/start-visualization.js"></script>
<script type="module" src="js/ui/event-switcher.js"></script>
<script type="module" src="js/ui/view-selector.js"></script>
</body>
</html>
73 changes: 0 additions & 73 deletions js/filters/collections/cluster.js

This file was deleted.

150 changes: 0 additions & 150 deletions js/filters/collections/mcparticle.js

This file was deleted.

Loading
Loading