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
3164b113
Commit
3164b113
authored
Oct 08, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refined match editing
parent
3179a789
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
137 additions
and
22 deletions
+137
-22
coffee/forms.coffee
coffee/forms.coffee
+7
-3
coffee/scores.coffee
coffee/scores.coffee
+2
-0
routes/match.php
routes/match.php
+67
-7
sass/main.sass
sass/main.sass
+16
-1
templates/match/create.latte
templates/match/create.latte
+2
-0
templates/match/delete.latte
templates/match/delete.latte
+10
-6
templates/match/edit.latte
templates/match/edit.latte
+14
-0
templates/match/list.latte
templates/match/list.latte
+1
-1
templates/match/scores.latte
templates/match/scores.latte
+6
-2
templates/match/view.latte
templates/match/view.latte
+12
-2
No files found.
coffee/forms.coffee
View file @
3164b113
...
@@ -30,6 +30,10 @@ $ ->
...
@@ -30,6 +30,10 @@ $ ->
.
append
(
$
(
@
).
parent
(
'label'
).
html
())
.
append
(
$
(
@
).
parent
(
'label'
).
html
())
$
(
@
).
closest
(
'.radio'
).
replaceWith
(
group
)
$
(
@
).
closest
(
'.radio'
).
replaceWith
(
group
)
$
(
'tr'
).
on
'click'
,
->
if
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i
.
test
(
navigator
.
userAgent
)
$
(
'abbr'
).
on
'click'
,
->
alert
(
$
(
@
).
attr
(
'title'
))
$
(
'tr'
).
on
'click'
,
->
href
=
$
(
this
).
data
(
'href'
)
href
=
$
(
this
).
data
(
'href'
)
document
.
location
=
href
if
href
?
document
.
location
=
href
if
href
?
coffee/scores.coffee
View file @
3164b113
...
@@ -43,6 +43,8 @@ $ ->
...
@@ -43,6 +43,8 @@ $ ->
match_total
.
text
(
sum
)
match_total
.
text
(
sum
)
match_avg
.
text
(
Math
.
round
(
sum
/ count * 10) /
10
)
match_avg
.
text
(
Math
.
round
(
sum
/ count * 10) /
10
)
inputs
.
filter
(
'[value=""]:first'
).
focus
()
$
(
'textarea'
).
on
'keyup'
,
->
$
(
'textarea'
).
on
'keyup'
,
->
$
(
@
).
height
(
0
).
height
(
$
(
@
).
prop
(
'scrollHeight'
))
$
(
@
).
height
(
0
).
height
(
$
(
@
).
prop
(
'scrollHeight'
))
...
...
routes/match.php
View file @
3164b113
...
@@ -84,7 +84,7 @@ function filter_form($matches) {
...
@@ -84,7 +84,7 @@ function filter_form($matches) {
return
$form
;
return
$form
;
}
}
function
create_
match_
form
()
{
function
create_form
()
{
global
$db
,
$user
;
global
$db
,
$user
;
$disciplines
=
array
(
'barebow'
,
'recurve'
,
'compound'
);
$disciplines
=
array
(
'barebow'
,
'recurve'
,
'compound'
);
...
@@ -141,6 +141,25 @@ function create_match_form() {
...
@@ -141,6 +141,25 @@ function create_match_form() {
return
$form
;
return
$form
;
}
}
function
edit_form
(
$match
)
{
$form
=
create_form
();
$form
->
setAction
(
"match/
{
$match
->
id
}
"
);
$form
->
addHidden
(
'_METHOD'
,
'PUT'
);
$created_at
=
preg_replace
(
'/^(\d{4}-\d{1,2}-\d{1,2})[T ](\d{1,2}:\d{1,2}):00$/'
,
'\1T\2'
,
$match
->
created_at
);
$form
[
'name'
]
->
setDefaultValue
(
$match
->
name
);
$form
[
'created_at'
]
->
setDefaultValue
(
$created_at
);
$form
[
'distance'
]
->
setDefaultValue
(
$match
->
distance
);
$form
[
'discipline'
]
->
setDefaultValue
(
$match
->
discipline
);
$form
[
'arrows'
]
->
setDefaultValue
(
$match
->
arrows
);
$form
[
'turns'
]
->
setDefaultValue
(
$match
->
turns
);
$form
[
'notes'
]
->
setDefaultValue
(
$match
->
notes
);
return
$form
;
}
$app
->
get
(
'/matches'
,
function
(
$filter
=
null
)
use
(
$app
,
$db
,
$user
)
{
$app
->
get
(
'/matches'
,
function
(
$filter
=
null
)
use
(
$app
,
$db
,
$user
)
{
$matches
=
$db
->
table
(
'match'
)
$matches
=
$db
->
table
(
'match'
)
...
@@ -170,15 +189,14 @@ $app->get('/matches', function ($filter=null) use ($app, $db, $user) {
...
@@ -170,15 +189,14 @@ $app->get('/matches', function ($filter=null) use ($app, $db, $user) {
$app
->
render
(
'match/list'
,
compact
(
'matches'
,
'filter_form'
));
$app
->
render
(
'match/list'
,
compact
(
'matches'
,
'filter_form'
));
});
});
$app
->
get
(
'/match/:id'
,
render_match_action
(
'view'
));
$app
->
get
(
'/match/:id'
,
render_match_action
(
'view'
));
$app
->
get
(
'/match/:id/edit'
,
render_match_action
(
'edit'
));
$app
->
get
(
'/match/:id/scores'
,
render_match_action
(
'scores'
));
$app
->
get
(
'/match/:id/scores'
,
render_match_action
(
'scores'
));
$app
->
get
(
'/match/:id/delete'
,
render_match_action
(
'delete'
));
$app
->
get
(
'/match/:id/delete'
,
render_match_action
(
'delete'
));
$app
->
get
(
'/match'
,
function
()
use
(
$app
)
{
$app
->
get
(
'/match'
,
function
()
use
(
$app
)
{
$app
->
render
(
'match/create'
,
array
(
'form'
=>
create_
match_
form
()));
$app
->
render
(
'match/create'
,
array
(
'form'
=>
create_form
()));
});
});
$app
->
post
(
'/match'
,
function
()
use
(
$app
,
$db
,
$user
)
{
$app
->
post
(
'/match'
,
function
()
use
(
$app
,
$db
,
$user
)
{
$form
=
create_
match_
form
();
$form
=
create_form
();
$form
->
validate
();
$form
->
validate
();
if
(
!
$form
->
hasErrors
())
{
if
(
!
$form
->
hasErrors
())
{
...
@@ -202,11 +220,53 @@ $app->post('/match/:id/scores', function ($id) use ($app, $db) {
...
@@ -202,11 +220,53 @@ $app->post('/match/:id/scores', function ($id) use ($app, $db) {
$app
->
redirect
(
ROOT_URL
.
'/match/'
.
$id
);
$app
->
redirect
(
ROOT_URL
.
'/match/'
.
$id
);
});
});
$app
->
delete
(
'/match/:id'
,
function
(
$id
)
{
$app
->
delete
(
'/match/:id'
,
function
(
$id
)
use
(
$app
,
$db
)
{
find_match
(
$id
)
->
delete
();
find_match
(
$id
)
->
delete
();
$app
->
redirect
(
ROOT_URL
.
'/matches'
);
$app
->
redirect
(
ROOT_URL
.
'/matches'
);
});
});
$app
->
put
(
'/match/:id'
,
function
(
$id
)
{
$app
->
get
(
'/match/:id/edit'
,
function
(
$id
)
use
(
$app
)
{
// TODO
$match
=
find_match
(
$id
);
$form
=
edit_form
(
$match
);
$app
->
render
(
'match/edit'
,
compact
(
'form'
,
'match'
));
});
$app
->
put
(
'/match/:id'
,
function
(
$id
)
use
(
$app
)
{
function
zeropad
(
$array
,
$size
)
{
return
array_pad
(
array_slice
(
$array
,
0
,
$size
),
$size
,
0
);
}
$match
=
find_match
(
$id
);
$form
=
edit_form
(
$match
);
$form
->
validate
();
if
(
!
$form
->
hasErrors
())
{
$values
=
$form
->
getValues
();
$update
=
array
(
'name'
=>
$values
->
name
,
'created_at'
=>
str_replace
(
'T'
,
' '
,
$values
->
created_at
)
.
':00'
,
'distance'
=>
$values
->
distance
,
'discipline'
=>
$values
->
discipline
,
'arrows'
=>
$values
->
arrows
,
'turns'
=>
$values
->
turns
,
'notes'
=>
$values
->
notes
);
if
(
$values
->
arrows
!=
$match
->
arrows
||
$values
->
turns
!=
$match
->
turns
)
{
$scores
=
unpack_scores
(
$match
->
scores
);
$turns
=
array_chunk
(
$scores
,
$match
->
arrows
);
foreach
(
$turns
as
$i
=>
$turn
)
$turns
[
$i
]
=
zeropad
(
$turn
,
$values
->
arrows
);
$scores
=
call_user_func_array
(
'array_merge'
,
$turns
);
$scores
=
zeropad
(
$scores
,
$values
->
turns
*
$values
->
arrows
);
$update
[
'scores'
]
=
pack_scores
(
$scores
);
}
$match
->
update
(
$update
);
$app
->
redirect
(
ROOT_URL
.
"/match/
{
$match
->
id
}
"
);
}
$app
->
render
(
'match/edit'
,
compact
(
'form'
,
'match'
));
});
});
sass/main.sass
View file @
3164b113
...
@@ -51,6 +51,7 @@ $xs-width: 768px
...
@@ -51,6 +51,7 @@ $xs-width: 768px
input
input
border
:
none
border
:
none
width
:
100%
width
:
100%
background-color
:
#fff
.panel
textarea
.panel
textarea
border
:
none
border
:
none
...
@@ -62,8 +63,22 @@ $xs-width: 768px
...
@@ -62,8 +63,22 @@ $xs-width: 768px
white-space
:
normal
white-space
:
normal
.actions
.actions
float
:
right
margin-bottom
:
15px
margin-bottom
:
15px
.btn
.glyphicon
display
:
none
.text
display
:
inline-block
@media
(
max-width
:
$xs-width
-
1
)
.actions
float
:
right
.btn
.glyphicon
display
:
inline-block
.text
display
:
none
.tags
span
.tags
span
margin-right
:
4px
margin-right
:
4px
templates/match/create.latte
View file @
3164b113
...
@@ -10,9 +10,11 @@
...
@@ -10,9 +10,11 @@
<div class="btn-group actions">
<div class="btn-group actions">
<a href="matches" class="btn btn-default" title="Cancel">
<a href="matches" class="btn btn-default" title="Cancel">
<span class="glyphicon glyphicon-remove"></span>
<span class="glyphicon glyphicon-remove"></span>
<span class="text">Cancel</span>
</a>
</a>
<button type="submit" name="send" class="btn btn-primary" title="Save">
<button type="submit" name="send" class="btn btn-primary" title="Save">
<span class="glyphicon glyphicon-save"></span>
<span class="glyphicon glyphicon-save"></span>
<span class="text">Save</span>
</button>
</button>
</div>
</div>
</div>
</div>
...
...
templates/match/delete.latte
View file @
3164b113
...
@@ -10,13 +10,17 @@
...
@@ -10,13 +10,17 @@
</p>
</p>
<form action="match/{$match->id}" method="post">
<form action="match/{$match->id}" method="post">
<input type="hidden" name="_METHOD" value="DELETE"/>
<div class="btn-group actions">
<a href="match/{$match->id}" class="btn btn-default" title="cancel">
<span class="glyphicon glyphicon-remove"></span>
<span class="text">Cancel</span>
</a>
<button type="submit" class="btn btn-primary">
<button type="submit" class="btn btn-primary">
Yes, I'm sure
<span class="glyphicon glyphicon-ok"></span>
<span class="text">Yes, I'm sure</span>
</button>
</button>
<a href="match/{$match->id}" class="btn btn-default">
</div>
Cancel
<input type="hidden" name="_METHOD" value="DELETE"/>
</a>
</form>
</form>
{/block}
{/block}
templates/match/edit.latte
View file @
3164b113
...
@@ -2,4 +2,18 @@
...
@@ -2,4 +2,18 @@
{block content}
{block content}
<h2 class="page-header">{$match->name}</h2>
<h2 class="page-header">{$match->name}</h2>
{form $form}
{form errors}
{form controls}
<div class="form-group">
<div class="form-actions col-sm-offset-2 col-sm-10">
<div class="btn-group actions">
<button type="submit" name="send" class="btn btn-primary" title="Save">
<span class="glyphicon glyphicon-ok"></span>
<span class="text">Save</span>
</button>
</div>
</div>
</div>
{/form}
{/block}
{/block}
templates/match/list.latte
View file @
3164b113
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<h2 class="page-header">
<h2 class="page-header">
Matches
Matches
<div class="btn-group">
<div class="btn-group">
<a href="match"
title="Add new match" class="btn btn-sm btn-default
">
<a href="match"
class="btn btn-sm btn-default" title="Add new match
">
<span class="glyphicon glyphicon-plus"></span>
<span class="glyphicon glyphicon-plus"></span>
</a>
</a>
<a data-toggle="collapse" href="#filter" title="Filter"
<a data-toggle="collapse" href="#filter" title="Filter"
...
...
templates/match/scores.latte
View file @
3164b113
...
@@ -31,7 +31,8 @@
...
@@ -31,7 +31,8 @@
<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"
n:class="$j == $match->arrows - 1 ? separator">
n:class="$j == $match->arrows - 1 ? separator">
<input type="number" min="0" max="10" name="scores[]" value="{$arrow ? $arrow}">
<input type="number" min="0" max="10" name="scores[]"
value="{$arrow ? $arrow}">
</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>
...
@@ -42,7 +43,9 @@
...
@@ -42,7 +43,9 @@
<th colspan="{$match->arrows + 2}">Total:<br>Average:</th>
<th colspan="{$match->arrows + 2}">Total:<br>Average:</th>
<td>
<td>
<span class="match-total">{$total}</span><br>
<span class="match-total">{$total}</span><br>
<span class="match-avg">{$total / ($match->turns * $match->arrows)|number:1}</span>
<span class="match-avg" title="{$total / ($match->turns * $match->arrows)|number:4}">
{$total / ($match->turns * $match->arrows)|number:1}
</span>
</td>
</td>
</tr>
</tr>
</tbody>
</tbody>
...
@@ -61,6 +64,7 @@
...
@@ -61,6 +64,7 @@
<div class="actions">
<div class="actions">
<button type="submit" class="btn btn-primary" title="Save">
<button type="submit" class="btn btn-primary" title="Save">
<span class="glyphicon glyphicon-ok"></span>
<span class="glyphicon glyphicon-ok"></span>
<span class="text">Save</span>
</button>
</button>
</div>
</div>
...
...
templates/match/view.latte
View file @
3164b113
...
@@ -42,7 +42,9 @@
...
@@ -42,7 +42,9 @@
<tr n:foreach="$rows as $i => $row">
<tr n:foreach="$rows as $i => $row">
<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"
n:class="$j == $match->arrows - 1 ? separator">{$arrow}</td>
n:class="$j == $match->arrows - 1 ? separator">
<input type="text" disabled value="{$arrow}">
</td>
<td>{$sum = array_sum($row)}</td>
<td>{$sum = array_sum($row)}</td>
<td>{$total = $total + $sum}</td>
<td>{$total = $total + $sum}</td>
</tr>
</tr>
...
@@ -50,7 +52,12 @@
...
@@ -50,7 +52,12 @@
<tbody>
<tbody>
<tr>
<tr>
<th colspan="{$match->arrows + 2}">Total:<br>Average:</th>
<th colspan="{$match->arrows + 2}">Total:<br>Average:</th>
<td>{$total}<br>{$total / ($match->turns * $match->arrows)|number:1}</td>
<td>
{$total}<br>
<abbr title="{$total / ($match->turns * $match->arrows)|number:4}">
{$total / ($match->turns * $match->arrows)|number:1}
</abbr>
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
...
@@ -67,12 +74,15 @@
...
@@ -67,12 +74,15 @@
<div class="btn-group actions">
<div class="btn-group actions">
<a href="match/{$match->id}/edit" class="btn btn-default" title="Edit metadata">
<a href="match/{$match->id}/edit" class="btn btn-default" title="Edit metadata">
<span class="glyphicon glyphicon-cog"></span>
<span class="glyphicon glyphicon-cog"></span>
<span class="text">Edit metadata</span>
</a>
</a>
<a href="match/{$match->id}/scores" class="btn btn-default" title="Edit scores">
<a href="match/{$match->id}/scores" class="btn btn-default" title="Edit scores">
<span class="glyphicon glyphicon-pencil"></span>
<span class="glyphicon glyphicon-pencil"></span>
<span class="text">Edit scores</span>
</a>
</a>
<a href="match/{$match->id}/delete" class="btn btn-danger" title="Delete">
<a href="match/{$match->id}/delete" class="btn btn-danger" title="Delete">
<span class="glyphicon glyphicon-trash"></span>
<span class="glyphicon glyphicon-trash"></span>
<span class="text">Delete</span>
</a>
</a>
</div>
</div>
...
...
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