Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple UI #295

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
05eac2e
Yup, a simpler ui
mrozbarry May 30, 2023
a51f0de
New drawer (wip)
mrozbarry Jun 5, 2023
c03ff26
Got team section back up and running
mrozbarry Jun 5, 2023
bb6b277
Got eslint working as expected again
mrozbarry Jun 6, 2023
d72286e
Disconnected goals controls
mrozbarry Jun 6, 2023
68b8211
Getting timer summary ready
mrozbarry Jun 6, 2023
66d4e7e
No more double-completes from the backend
mrozbarry Jun 14, 2023
420e14b
Backend changes to support http requests for start/pause/stop timer
mrozbarry Jun 14, 2023
85e260e
Linting i18n
mrozbarry Jun 14, 2023
6bc6cdc
Http api for sending data to the timer
mrozbarry Jun 19, 2023
b41b96a
Updated public lib directory
mrozbarry Jun 19, 2023
76bfe0a
Update tabs with different sections now available (should probably re…
mrozbarry Jun 19, 2023
ebcfd73
Remove all fontawesome usages from re-orderable
mrozbarry Jun 19, 2023
747c832
Cleanup sections for new ui
mrozbarry Jun 19, 2023
581bf3e
Linting
mrozbarry Jun 19, 2023
fedc46f
Use new TimeComplete action to tell server the timer is done
mrozbarry Jun 19, 2023
231f410
No more fontawesome import
mrozbarry Jun 19, 2023
8206450
New grid+details ui
mrozbarry Jun 19, 2023
57ce684
Edit goals with the new forms.goal state
mrozbarry Jun 19, 2023
42eaa59
More initial messages before considering the timer 'loaded'
mrozbarry Jun 20, 2023
ce6675b
Guard andThen effect from bad actions
mrozbarry Jun 20, 2023
195a20c
Wire up revert settings button
mrozbarry Jun 20, 2023
4a301e4
Kill dead websockets
mrozbarry Jun 21, 2023
86448b4
Only show clear completed when there are incomplete goals
mrozbarry Jun 21, 2023
a5af80b
Bandaid firefox layout bug with dummy script
mrozbarry Jun 21, 2023
408933a
Settings are all wired up
mrozbarry Jun 23, 2023
861bfa1
Consolidated details component
mrozbarry Jun 30, 2023
e3a31f5
Clean up actions
mrozbarry Jun 30, 2023
2bdfe63
Double-click should prep the associated form
mrozbarry Jun 30, 2023
66d2985
Group goals
mrozbarry Jul 21, 2023
3e1c4a3
Merge branch 'master' into simple-ui
mrozbarry Sep 29, 2023
3cfc0c8
Add unite.eu to companies who use mobtime
mrozbarry Sep 29, 2023
e752d63
Broken tests
mrozbarry Apr 5, 2024
d8c74ce
Ignore .env
mrozbarry Aug 2, 2024
40efed0
Ding by default, this one's for all the mobbers back home
mrozbarry Aug 9, 2024
1fa1de6
Fidgetted with summary layout, ran linter
mrozbarry Aug 9, 2024
f2a8a2d
Make mob positions and timer actions easier to find on the page
mrozbarry Dec 2, 2024
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
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
index.js
node_modules
16 changes: 6 additions & 10 deletions .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
export default {
root: true,
module.exports = {
env: {
browser: true,
es6: true,
es2021: true,
node: true,
},
extends: ['eslint:recommended', 'prettier'],
plugins: ['import'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
extends: 'standard',
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
Expand All @@ -22,5 +16,7 @@ export default {
'no-restricted-syntax': ['off'],
'no-continue': ['off'],
'quote-props': ['warn', 'consistent-as-needed'],
'semi': ['warn', 'always'],
'comma-dangle': ['warn', 'always-multiline'],
},
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ public/styles/*
.yarn
dump.rdb
docker/redis-volume/*
.env
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'dotenv/config';
// require('dotenv/config');
// j = require = require('esm')(module /*, options*/);

if (process.env.WORKERS > 1 || process.env.WORKERS === -1) {
import('./src/web/index.cluster.js');
} else {
Expand Down
Loading
Loading