Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
archery
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
archery
Commits
6ff0b7f4
Commit
6ff0b7f4
authored
Jan 17, 2016
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create interface to tag inner 10 scores
parent
ed89ef5f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
83 additions
and
18 deletions
+83
-18
coffee/scores.coffee
coffee/scores.coffee
+10
-0
locale/nl_NL/LC_MESSAGES/archery.po
locale/nl_NL/LC_MESSAGES/archery.po
+3
-0
routes/match.php
routes/match.php
+5
-1
sass/main.sass
sass/main.sass
+35
-0
templates/match/scores.latte
templates/match/scores.latte
+11
-3
templates/match/view.latte
templates/match/view.latte
+5
-0
util.php
util.php
+14
-14
No files found.
coffee/scores.coffee
View file @
6ff0b7f4
...
@@ -43,6 +43,10 @@ if table = document.querySelector '.match-editable'
...
@@ -43,6 +43,10 @@ if table = document.querySelector '.match-editable'
value
=
num
@
.
value
value
=
num
@
.
value
if
set_score
col
,
row
,
value
if
set_score
col
,
row
,
value
cell
.
className
=
cell
.
className
.
replace
/val-\d+/
,
'val-'
+
value
cell
.
className
=
cell
.
className
.
replace
/val-\d+/
,
'val-'
+
value
if
value
!=
10
@
.
nextElementSibling
.
value
=
0
@
.
parentNode
.
querySelector
(
'.cross-popup'
)
.
classList
.
remove
'enabled'
input
.
addEventListener
'change'
,
cb
input
.
addEventListener
'change'
,
cb
input
.
addEventListener
'keyup'
,
cb
input
.
addEventListener
'keyup'
,
cb
)(
i
%
w
,
Math
.
floor
i
/
w
)
)(
i
%
w
,
Math
.
floor
i
/
w
)
...
@@ -50,6 +54,12 @@ if table = document.querySelector '.match-editable'
...
@@ -50,6 +54,12 @@ if table = document.querySelector '.match-editable'
render
0
render
0
table
.
querySelector
(
'input[value=""]'
)
?
.
focus
()
table
.
querySelector
(
'input[value=""]'
)
?
.
focus
()
table
.
addEventListener
'click'
,
(
e
)
->
if
e
.
target
.
classList
.
contains
'cross-popup'
v
=
if
e
.
target
.
classList
.
toggle
'enabled'
then
1
else
0
e
.
target
.
parentNode
.
previousElementSibling
.
value
=
v
e
.
target
.
parentNode
.
parentNode
.
children
[
0
].
focus
()
# notes area grows automatically with each added line
# notes area grows automatically with each added line
if
notes
=
document
.
getElementById
(
'notes'
)
if
notes
=
document
.
getElementById
(
'notes'
)
cb
=
->
cb
=
->
...
...
locale/nl_NL/LC_MESSAGES/archery.po
View file @
6ff0b7f4
...
@@ -237,3 +237,6 @@ msgstr "1 resultaat"
...
@@ -237,3 +237,6 @@ msgstr "1 resultaat"
msgid "%d results"
msgid "%d results"
msgstr "%d resultaten"
msgstr "%d resultaten"
msgid "Inner 10?"
msgstr "Kruis?"
routes/match.php
View file @
6ff0b7f4
...
@@ -186,9 +186,12 @@ $app->post('/match', function () use ($app, $db, $user) {
...
@@ -186,9 +186,12 @@ $app->post('/match', function () use ($app, $db, $user) {
$values
=
$form
->
getValues
();
$values
=
$form
->
getValues
();
$values
->
created_at
=
str_replace
(
'T'
,
' '
,
$values
->
created_at
)
.
':00'
;
$values
->
created_at
=
str_replace
(
'T'
,
' '
,
$values
->
created_at
)
.
':00'
;
$values
->
scores
=
pack_scores
(
array_fill
(
0
,
$values
->
turns
*
$values
->
arrows
,
0
));
$values
->
user_id
=
$user
->
getId
();
$values
->
user_id
=
$user
->
getId
();
$zeroes
=
array_fill
(
0
,
$values
->
turns
*
$values
->
arrows
,
0
);
$values
->
scores
=
pack_scores
(
$zeroes
);
$values
->
crosses
=
pack_crosses
(
$zeroes
);
$match
=
$db
->
table
(
'match'
)
->
insert
(
$values
);
$match
=
$db
->
table
(
'match'
)
->
insert
(
$values
);
if
(
isset
(
$_POST
[
'tags'
]))
{
if
(
isset
(
$_POST
[
'tags'
]))
{
...
@@ -205,6 +208,7 @@ $app->post('/match', function () use ($app, $db, $user) {
...
@@ -205,6 +208,7 @@ $app->post('/match', function () use ($app, $db, $user) {
$app
->
post
(
'/match/:id/scores'
,
function
(
$id
)
use
(
$app
,
$db
)
{
$app
->
post
(
'/match/:id/scores'
,
function
(
$id
)
use
(
$app
,
$db
)
{
find_match
(
$id
)
->
update
(
array
(
find_match
(
$id
)
->
update
(
array
(
'scores'
=>
pack_scores
(
array_map
(
'intval'
,
$_POST
[
'scores'
])),
'scores'
=>
pack_scores
(
array_map
(
'intval'
,
$_POST
[
'scores'
])),
'crosses'
=>
pack_crosses
(
array_map
(
'intval'
,
$_POST
[
'crosses'
])),
'notes'
=>
$_POST
[
'notes'
]
'notes'
=>
$_POST
[
'notes'
]
));
));
$app
->
redirect
(
ROOT_URL
.
'/match/'
.
$id
);
$app
->
redirect
(
ROOT_URL
.
'/match/'
.
$id
);
...
...
sass/main.sass
View file @
6ff0b7f4
...
@@ -83,6 +83,41 @@ $lg-width: 1200px
...
@@ -83,6 +83,41 @@ $lg-width: 1200px
.val-2
,
.val-1
.val-2
,
.val-1
background-color
:
$white
background-color
:
$white
.popup-container
position
:
relative
width
:
100%
.cross-popup
position
:
absolute
height
:
100%
padding
:
0
5px
font
:
normal
38px
/
34px
Courier
New
color
:
rgb
(
210
,
210
,
210
)
top
:
-28px
right
:
-6px
border
:
1px
solid
rgb
(
197
,
197
,
197
)
height
:
34px
cursor
:
default
display
:
none
&
.enabled
color
:
rgb
(
51
,
51
,
51
)
border-left-color
:
rgb
(
51
,
51
,
51
)
display
:
block
.val-10
:hover
.cross-popup
display
:
block
&
.match-editable
.cross-popup
cursor
:
pointer
input
[
type
=
number
]
::-webkit-inner-spin-button
,
input
[
type
=
number
]
::-webkit-outer-spin-button
-webkit-appearance
:
none
-moz-appearance
:
none
appearance
:
none
margin
:
0
.panel
textarea
.panel
textarea
border
:
none
border
:
none
outline
:
none
outline
:
none
...
...
templates/match/scores.latte
View file @
6ff0b7f4
{extends '../layout.latte'}
{extends '../layout.latte'}
{var $narrows = $match->turns * $match->arrows}
{var $rows = array_chunk(unpack_scores($match->scores), $match->arrows)}
{var $rows = array_chunk(unpack_scores($match->scores), $match->arrows)}
{var $crosses = array_chunk(unpack_crosses($match->crosses, $narrows), $match->arrows)}
{var $total = 0}
{var $total = 0}
{var $arrow_cols = array(3 => 4, 4 => 5, 5 => 5, 6 => 6, 7 => 6)}
{var $arrow_cols = array(3 => 4, 4 => 5, 5 => 5, 6 => 6, 7 => 6)}
{var $cols = isset($arrow_cols[$match->arrows]) ? $arrow_cols[$match->arrows] : 4}
{var $cols = isset($arrow_cols[$match->arrows]) ? $arrow_cols[$match->arrows] : 4}
...
@@ -32,8 +34,14 @@
...
@@ -32,8 +34,14 @@
<th class="separator">{$i + 1}</th>
<th class="separator">{$i + 1}</th>
<td n:foreach="$row as $j => $arrow"
<td n:foreach="$row as $j => $arrow"
class="val-{$arrow} {$j == $match->arrows - 1 ? separator}">
class="val-{$arrow} {$j == $match->arrows - 1 ? separator}">
<input type="number"
min="0" max="10" name="scores[]
"
<input type="number"
name="scores[]" min="0" max="10
"
value="{$arrow ? $arrow}">
value="{$arrow ? $arrow}">
<input type="hidden" name="crosses[]"
value="{$crosses[$i][$j]}">
<div class="popup-container">
<div class="cross-popup {$crosses[$i][$j] ? enabled}"
title="{_'Inner 10?'}">×</div>
</div>
</td>
</td>
<td class="row-total">{$sum = array_sum($row)}</td>
<td class="row-total">{$sum = array_sum($row)}</td>
<td class="total">{$total = $total + $sum}</td>
<td class="total">{$total = $total + $sum}</td>
...
@@ -47,8 +55,8 @@
...
@@ -47,8 +55,8 @@
</th>
</th>
<td>
<td>
<span class="match-total">{$total}</span><br>
<span class="match-total">{$total}</span><br>
<span class="match-avg" title="{$total /
($match->turns * $match->arrows)
|number:4}">
<span class="match-avg" title="{$total /
$narrows
|number:4}">
{$total /
($match->turns * $match->arrows)
|number:1}
{$total /
$narrows
|number:1}
</span>
</span>
</td>
</td>
</tr>
</tr>
...
...
templates/match/view.latte
View file @
6ff0b7f4
{extends '../layout.latte'}
{extends '../layout.latte'}
{var $narrows = $match->turns * $match->arrows}
{var $rows = array_chunk(unpack_scores($match->scores), $match->arrows)}
{var $rows = array_chunk(unpack_scores($match->scores), $match->arrows)}
{var $crosses = array_chunk(unpack_crosses($match->crosses, $narrows), $match->arrows)}
{var $total = 0}
{var $total = 0}
{var $arrow_cols = array(3 => 4, 4 => 5, 5 => 5, 6 => 6, 7 => 6)}
{var $arrow_cols = array(3 => 4, 4 => 5, 5 => 5, 6 => 6, 7 => 6)}
{var $cols = isset($arrow_cols[$match->arrows]) ? $arrow_cols[$match->arrows] : 4}
{var $cols = isset($arrow_cols[$match->arrows]) ? $arrow_cols[$match->arrows] : 4}
...
@@ -44,6 +46,9 @@
...
@@ -44,6 +46,9 @@
<td n:foreach="$row as $j => $arrow"
<td n:foreach="$row as $j => $arrow"
class="val-{$arrow} {$j == $match->arrows - 1 ? separator}">
class="val-{$arrow} {$j == $match->arrows - 1 ? separator}">
<input type="text" disabled value="{$arrow}">
<input type="text" disabled value="{$arrow}">
<div n:if="$crosses[$i][$j]" class="popup-container">
<div class="cross-popup enabled" title="{_'Inner 10?'}">×</div>
</div>
</td>
</td>
<td class="val-{floor(($sum = array_sum($row)) / $match->arrows)}">{$sum}</td>
<td class="val-{floor(($sum = array_sum($row)) / $match->arrows)}">{$sum}</td>
<td class="val-{floor(($total = $total + $sum) / ($match->arrows * ($i + 1)))}">{$total}</td>
<td class="val-{floor(($total = $total + $sum) / ($match->arrows * ($i + 1)))}">{$total}</td>
...
...
util.php
View file @
6ff0b7f4
...
@@ -113,8 +113,11 @@ function pack_crosses($crosses) {
...
@@ -113,8 +113,11 @@ function pack_crosses($crosses) {
}
}
function
unpack_crosses
(
$bitmap
,
$limit
=
0
)
{
function
unpack_crosses
(
$bitmap
,
$limit
=
0
)
{
if
(
$bitmap
===
null
)
return
array_fill
(
0
,
$limit
,
0
);
$crosses
=
array
();
$crosses
=
array
();
foreach
(
$bitmap
as
$c
)
{
foreach
(
str_split
(
$bitmap
)
as
$c
)
{
for
(
$i
=
7
;
$i
>=
0
;
$i
--
)
{
for
(
$i
=
7
;
$i
>=
0
;
$i
--
)
{
$crosses
[]
=
intval
(
!!
(
ord
(
$c
)
&
(
1
<<
$i
)));
$crosses
[]
=
intval
(
!!
(
ord
(
$c
)
&
(
1
<<
$i
)));
if
(
count
(
$crosses
)
==
$limit
)
if
(
count
(
$crosses
)
==
$limit
)
...
@@ -124,19 +127,16 @@ function unpack_crosses($bitmap, $limit=0) {
...
@@ -124,19 +127,16 @@ function unpack_crosses($bitmap, $limit=0) {
return
$crosses
;
return
$crosses
;
}
}
function
show_crosses
(
$bitmap
)
{
// TODO: remove
foreach
(
$bitmap
as
$c
)
{
//function show_crosses($bitmap) {
for
(
$i
=
7
;
$i
>=
0
;
$i
--
)
// foreach(str_split($bitmap) as $c) {
echo
intval
(
!!
(
ord
(
$c
)
&
(
1
<<
$i
)));
// for ($i = 7; $i >= 0; $i--)
// echo intval(!!(ord($c) & (1 << $i)));
echo
' '
;
//
}
// echo ' ';
echo
"
\n
"
;
// }
}
// echo "\n<br>\n";
//}
//show_crosses("\x0b\xff\x00\x08");
show_crosses
(
pack_crosses
(
array
(
1
,
0
,
1
,
0
,
0
,
0
,
0
,
0
)));
exit
;
function
match_arrows
(
$row
)
{
function
match_arrows
(
$row
)
{
return
sprintf
(
'%d × %d'
,
$row
->
turns
,
$row
->
arrows
);
return
sprintf
(
'%d × %d'
,
$row
->
turns
,
$row
->
arrows
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment