Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QRcade
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stephen D
QRcade
Commits
82e287b0
Commit
82e287b0
authored
2 weeks ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
show data as a table
parent
a69f6459
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
.envrc
+1
-0
1 addition, 0 deletions
.envrc
.gitignore
+4
-0
4 additions, 0 deletions
.gitignore
app.js
+23
-8
23 additions, 8 deletions
app.js
flake.lock
+62
-0
62 additions, 0 deletions
flake.lock
flake.nix
+25
-0
25 additions, 0 deletions
flake.nix
index.html
+1
-2
1 addition, 2 deletions
index.html
with
116 additions
and
10 deletions
.envrc
0 → 100644
+
1
−
0
View file @
82e287b0
use flake
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitignore
0 → 100644
+
4
−
0
View file @
82e287b0
.direnv
/dist
node_modules
.parcel-cache
\ No newline at end of file
This diff is collapsed.
Click to expand it.
app.js
+
23
−
8
View file @
82e287b0
...
@@ -5,12 +5,28 @@ var canvasElement = document.getElementById("canvas");
...
@@ -5,12 +5,28 @@ var canvasElement = document.getElementById("canvas");
var
canvas
=
canvasElement
.
getContext
(
"
2d
"
);
var
canvas
=
canvasElement
.
getContext
(
"
2d
"
);
var
loadingMessage
=
document
.
getElementById
(
"
loadingMessage
"
);
var
loadingMessage
=
document
.
getElementById
(
"
loadingMessage
"
);
var
outputContainer
=
document
.
getElementById
(
"
output
"
);
var
outputContainer
=
document
.
getElementById
(
"
output
"
);
var
outputMessage
=
document
.
getElementById
(
"
outputMessage
"
);
var
outputData
=
document
.
getElementById
(
"
outputData
"
);
var
outputData
=
document
.
getElementById
(
"
outputData
"
);
const
latencyDiv
=
document
.
getElementById
(
"
latency
"
);
const
latencyDiv
=
document
.
getElementById
(
"
latency
"
);
const
latencyScan
=
document
.
getElementById
(
"
scan
"
);
const
latencyScan
=
document
.
getElementById
(
"
scan
"
);
let
datas
=
{};
function
renderData
()
{
let
html
=
"
<table><tr><th>Data</th><th>Count</th>
"
;
const
keys
=
Object
.
keys
(
datas
);
for
(
let
i
=
0
;
i
<
keys
.
length
;
i
++
)
{
const
key
=
keys
[
i
];
const
val
=
datas
[
key
];
html
+=
`<tr><td>
${
key
}
</td><td>
${
val
}
</td></tr>`
;
}
html
+=
"
</table>
"
;
outputData
.
innerHTML
=
html
;
}
function
drawLine
(
begin
,
end
,
color
)
{
function
drawLine
(
begin
,
end
,
color
)
{
canvas
.
beginPath
();
canvas
.
beginPath
();
canvas
.
moveTo
(
begin
.
x
,
begin
.
y
);
canvas
.
moveTo
(
begin
.
x
,
begin
.
y
);
...
@@ -56,7 +72,7 @@ function tick() {
...
@@ -56,7 +72,7 @@ function tick() {
latencyDiv
.
innerText
=
`Frame latency:
${
delta
}
ms`
;
latencyDiv
.
innerText
=
`Frame latency:
${
delta
}
ms`
;
if
(
code
)
{
if
(
code
?.
data
.
length
>
0
)
{
latencyScan
.
innerText
=
`Scan latency:
${
delta
}
ms`
;
latencyScan
.
innerText
=
`Scan latency:
${
delta
}
ms`
;
drawLine
(
drawLine
(
...
@@ -79,12 +95,11 @@ function tick() {
...
@@ -79,12 +95,11 @@ function tick() {
code
.
location
.
topLeftCorner
,
code
.
location
.
topLeftCorner
,
"
#FF3B58
"
,
"
#FF3B58
"
,
);
);
outputMessage
.
hidden
=
true
;
outputData
.
parentElement
.
hidden
=
false
;
datas
[
code
.
data
]
||=
0
;
outputData
.
innerText
=
code
.
data
;
datas
[
code
.
data
]
+=
1
;
}
else
{
outputMessage
.
hidden
=
false
;
renderData
();
outputData
.
parentElement
.
hidden
=
true
;
}
}
}
}
requestAnimationFrame
(
tick
);
requestAnimationFrame
(
tick
);
...
...
This diff is collapsed.
Click to expand it.
flake.lock
0 → 100644
+
62
−
0
View file @
82e287b0
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"ref": "main",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1741513245,
"narHash": "sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e3e32b642a31e6714ec1b712de8c91a3352ce7e1",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}
This diff is collapsed.
Click to expand it.
flake.nix
0 → 100644
+
25
−
0
View file @
82e287b0
{
inputs
=
{
nixpkgs
.
url
=
"github:NixOS/nixpkgs/nixos-unstable"
;
flake-utils
.
url
=
"github:numtide/flake-utils?ref=main"
;
};
outputs
=
inputs
:
inputs
.
flake-utils
.
lib
.
eachDefaultSystem
(
system
:
let
pkgs
=
inputs
.
nixpkgs
.
legacyPackages
.
${
system
};
in
{
devShells
.
default
=
pkgs
.
mkShell
{
packages
=
(
with
pkgs
;
[
yarn
]
);
};
}
);
}
This diff is collapsed.
Click to expand it.
index.html
+
1
−
2
View file @
82e287b0
...
@@ -6,10 +6,9 @@
...
@@ -6,10 +6,9 @@
<div
id=
"loadingMessage"
>
🎥 Unable to access video stream (please make sure you have a webcam enabled)
</div>
<div
id=
"loadingMessage"
>
🎥 Unable to access video stream (please make sure you have a webcam enabled)
</div>
<canvas
id=
"canvas"
hidden
></canvas>
<canvas
id=
"canvas"
hidden
></canvas>
<div
id=
"output"
hidden
>
<div
id=
"output"
hidden
>
<div
id=
"outputMessage"
>
No QR code detected.
</div>
<div
hidden
><b>
Data:
</b>
<span
id=
"outputData"
></span></div>
<div
id=
"latency"
></div>
<div
id=
"latency"
></div>
<div
id=
"scan"
></div>
<div
id=
"scan"
></div>
<div><span
id=
"outputData"
></span></div>
</div>
</div>
</body>
</body>
<head>
<head>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment