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

[Shropshire] Amendments from workshop #5265

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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 docs/directory_structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ you're doing is [customising your installation](/customising).
<p><em>images</em></p>
<p>
Images, including navigation icons and sprites, used by the default site (and hence
available to other cobrands too) &mdash; for example <code>pin-green.png</code>
available to other cobrands too) &mdash; for example <code>pins/green/pin.png</code>
is the green pin used on most cobrand's maps.
</p>
</dd>
Expand Down
12 changes: 5 additions & 7 deletions perllib/FixMyStreet/Cobrand/Borsetshire.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@

sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->is_closed;
return 'green' if $p->is_fixed;
return 'yellow' if $p->state eq 'confirmed';
return 'orange'; # all the other `open_states` like "in progress"
return 'grey-cross' if $p->is_closed;
return 'green-tick' if $p->is_fixed;
return 'yellow-cone' if $p->state eq 'confirmed';
return 'orange-work'; # all the other `open_states` like "in progress"

Check warning on line 22 in perllib/FixMyStreet/Cobrand/Borsetshire.pm

View check run for this annotation

Codecov / codecov/patch

perllib/FixMyStreet/Cobrand/Borsetshire.pm#L22

Added line #L22 was not covered by tests
}

sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

sub send_questionnaires { 0 }

Expand Down
12 changes: 5 additions & 7 deletions perllib/FixMyStreet/Cobrand/Brent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ my $BRENT_CONTAINERS = {

=cut

sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

=item * Users with a brent.gov.uk email can always be found in the admin.

Expand Down Expand Up @@ -320,10 +318,10 @@ sub munge_cobrand_asset_categories {

sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->is_closed;
return 'green' if $p->is_fixed;
return 'yellow' if $p->state eq 'confirmed';
return 'orange'; # all the other `open_states` like "in progress"
return 'grey-cross' if $p->is_closed;
return 'green-tick' if $p->is_fixed;
return 'yellow-cone' if $p->state eq 'confirmed';
return 'orange-work'; # all the other `open_states` like "in progress"
}

=head2 categories_restriction
Expand Down
12 changes: 5 additions & 7 deletions perllib/FixMyStreet/Cobrand/Buckinghamshire.pm
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,13 @@ sub around_nearby_filter {

sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->is_closed || ($context ne 'reports' && !$self->owns_problem($p));
return 'green' if $p->is_fixed;
return 'yellow' if $p->state eq 'confirmed';
return 'orange'; # all the other `open_states` like "in progress"
return 'grey-cross' if $p->is_closed || ($context ne 'reports' && !$self->owns_problem($p));
return 'green-tick' if $p->is_fixed;
return 'yellow-cone' if $p->state eq 'confirmed';
return 'orange-work'; # all the other `open_states` like "in progress"
}

sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

sub admin_user_domain { ( 'buckscc.gov.uk', 'buckinghamshire.gov.uk' ) }

Expand Down
5 changes: 1 addition & 4 deletions perllib/FixMyStreet/Cobrand/Default.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1090,10 +1090,7 @@ for your cobrand.

=cut

sub path_to_pin_icons {
return '/i/';
}

sub path_to_pin_icons { '/i/pins/' }

=item tweak_all_reports_map

Expand Down
10 changes: 4 additions & 6 deletions perllib/FixMyStreet/Cobrand/Gloucestershire.pm
Original file line number Diff line number Diff line change
Expand Up @@ -257,14 +257,12 @@ apart from defects which are blue.
sub pin_colour {
my ( $self, $p ) = @_;

return 'defects' if $self->is_defect($p);
return 'green' if $p->is_fixed || $p->is_closed;
return 'yellow';
return 'blue-work' if $self->is_defect($p);
return 'green-tick' if $p->is_fixed || $p->is_closed;
return 'yellow-cone';
}

sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

=head2 open311_config

Expand Down
4 changes: 0 additions & 4 deletions perllib/FixMyStreet/Cobrand/Northumberland.pm
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ sub pin_colour {
return 'orange'; # all the other `open_states` like "in progress"
}

sub path_to_pin_icons {
return '/cobrands/northumberland/images/';
}

=item * Hovering over a pin includes the state as well as the title

=cut
Expand Down
18 changes: 8 additions & 10 deletions perllib/FixMyStreet/Cobrand/Oxfordshire.pm
Original file line number Diff line number Diff line change
Expand Up @@ -85,20 +85,18 @@ sub reports_ordering {

sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if ($context||'') ne 'reports' && !$self->owns_problem($p);
return 'grey' if $p->is_closed;
return 'green' if $p->is_fixed;
return 'yellow' if $p->state eq 'confirmed';
return 'orange'; # all the other `open_states` like "in progress"
return 'grey-cross' if ($context||'') ne 'reports' && !$self->owns_problem($p);
return 'grey-cross' if $p->is_closed;
return 'green-tick' if $p->is_fixed;
return 'yellow-cone' if $p->state eq 'confirmed';
return 'orange-work'; # all the other `open_states` like "in progress"
}

sub pin_new_report_colour {
return 'yellow';
return 'yellow-cone';
}

sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

sub pin_hover_title {
my ($self, $problem, $title) = @_;
Expand Down Expand Up @@ -494,7 +492,7 @@ sub pins_from_wfs {
id => $fake_id--,
latitude => @$coords[1],
longitude => @$coords[0],
colour => 'defects',
colour => 'blue-work',
title => $title,
};
} @{ $wfs->{features} };
Expand Down
17 changes: 17 additions & 0 deletions perllib/FixMyStreet/Cobrand/Shropshire.pm
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,21 @@
});
}

=head2 pin_colour

Green for completed or closed, yellow for open,
blue for anything else (in progress, action scheduled, etc)

=cut

sub pin_colour {
my ( $self, $p ) = @_;

return 'green-tick' if $p->is_fixed || $p->is_closed;
return 'yellow-cone' if $p->state eq 'confirmed';
return 'blue-work';

Check warning on line 214 in perllib/FixMyStreet/Cobrand/Shropshire.pm

View check run for this annotation

Codecov / codecov/patch

perllib/FixMyStreet/Cobrand/Shropshire.pm#L214

Added line #L214 was not covered by tests
}

sub path_to_pin_icons { '/i/pins/whole-shadow-cone-spot/' }

1;
2 changes: 1 addition & 1 deletion perllib/FixMyStreet/DB/Result/Problem.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ sub static_map {
my $pin = $map_data->{pins}->[0];
if ($pin) {
my $im = Image::Magick->new;
$im->read(FixMyStreet->path_to('web', 'i', 'pin-yellow.png'));
$im->read(FixMyStreet->path_to('web', 'i', 'pins/yellow/pin.png'));
$im->Scale( geometry => '48x64' );
$image->Composite(image => $im, gravity => 'NorthWest',
x => $pin->{px} - 24, y => $pin->{py} - 64);
Expand Down
2 changes: 1 addition & 1 deletion t/app/controller/admin/report_edit.t
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ foreach my $test (
}

if ($report->state eq 'fixed') {
$mech->content_contains('pin-green');
$mech->content_contains('pins/green');
}

$test->{changes}->{flagged} = 1 if $test->{changes}->{flagged};
Expand Down
8 changes: 4 additions & 4 deletions t/app/controller/around.t
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ subtest 'check nearby lookup, cobrand custom distances' => sub {
. '&filter_category=Pothole'
. ( $test->{mode} ? '&mode=' . $test->{mode} : '' )
);
$mech->contains_or_lacks($test->{contains}, '[51.754926,-1.256179,"yellow",' . $p->id . ',"Open: Around page Test 1 for ' . $body->id . '","small",false]');
$mech->contains_or_lacks($test->{contains}, '[51.754926,-1.256179,"yellow-cone",' . $p->id . ',"Open: Around page Test 1 for ' . $body->id . '","small",false]');
}
};
};
Expand Down Expand Up @@ -639,7 +639,7 @@ subtest 'check nearby lookup, cobrand custom distances per category' => sub {
note ' Check for problem ' . $test_p->{id};
$mech->contains_or_lacks(
$test->{contains} && $test_p->{captured_by_category_filters},
'[51.754926,-1.256179,"yellow",'
'[51.754926,-1.256179,"yellow-cone",'
. $test_p->{id}
. ',"Open: Around page Test 1 for '
. $body->id
Expand Down Expand Up @@ -670,7 +670,7 @@ subtest 'check nearby lookup, cobrand custom distances per category' => sub {
note ' Check for problem ' . $test_p->{id};
$mech->contains_or_lacks(
$test->{contains} && $test_p->{captured_by_category_filters},
'[51.754926,-1.256179,"yellow",'
'[51.754926,-1.256179,"yellow-cone",'
. $test_p->{id}
. ',"Open: Around page Test 1 for '
. $body->id
Expand Down Expand Up @@ -701,7 +701,7 @@ subtest 'check nearby lookup, cobrand custom distances per category' => sub {
note 'Check for problem ' . $test_p->{id};
$mech->contains_or_lacks(
$test->{contains} && $test_p->{captured_by_category_filters},
'[51.754926,-1.256179,"yellow",'
'[51.754926,-1.256179,"yellow-cone",'
. $test_p->{id}
. ',"Open: Around page Test 1 for '
. $body->id
Expand Down
8 changes: 4 additions & 4 deletions t/cobrand/brent.t
Original file line number Diff line number Diff line change
Expand Up @@ -500,16 +500,16 @@ FixMyStreet::override_config {
});

$problem->state('confirmed');
is $cobrand->pin_colour($problem, 'around'), 'yellow', 'confirmed problem has correct pin colour';
is $cobrand->pin_colour($problem, 'around'), 'yellow-cone', 'confirmed problem has correct pin colour';

$problem->state('closed');
is $cobrand->pin_colour($problem, 'around'), 'grey', 'closed problem has correct pin colour';
is $cobrand->pin_colour($problem, 'around'), 'grey-cross', 'closed problem has correct pin colour';

$problem->state('fixed');
is $cobrand->pin_colour($problem, 'around'), 'green', 'fixed problem has correct pin colour';
is $cobrand->pin_colour($problem, 'around'), 'green-tick', 'fixed problem has correct pin colour';

$problem->state('in_progress');
is $cobrand->pin_colour($problem, 'around'), 'orange', 'in_progress problem has correct pin colour';
is $cobrand->pin_colour($problem, 'around'), 'orange-work', 'in_progress problem has correct pin colour';
};
};

Expand Down
2 changes: 1 addition & 1 deletion templates/web/base/maps/pin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[% IF pin.id AND pin.problem %]
<a title="[% pin.title | html %]" href="[% c.cobrand.relative_url_for_report( pin.problem ) %][% pin.problem.url %]">
[%- END -%]
<img border="0" src="[% start %][% c.cobrand.path_to_pin_icons _ 'pin-' _ pin.colour _ '.png' %]"
<img border="0" src="[% start %]/i/pins/[% pin.colour %]/pin.png"
[% IF js -%]
class="pin js-pin" data-lat="[% pin.latitude %]" data-lon="[% pin.longitude %]"
data-colour="[% pin.colour %]" data-id="[% pin.id %]"
Expand Down
2 changes: 1 addition & 1 deletion templates/web/base/report/banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[% BLOCK banner %]
<div class="banner banner--[% id %]">
<p>
<img src="[% c.cobrand.path_to_pin_icons _ 'pin-' _ c.cobrand.pin_colour(problem, 'report') _ '.png' %]" alt="" class="pin">
<img src="/i/pins/[% c.cobrand.pin_colour(problem, 'report') %]/pin.png" alt="" class="pin">
[% text %]
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/web/bromley/report/banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[% BLOCK banner %]
<div class="banner banner--[% id %]">
<p>
<img src="[% c.cobrand.path_to_pin_icons _ 'pin-' _ c.cobrand.pin_colour(problem, 'report') _ '.png' %]" alt="" class="pin">
<img src="/i/pins/[% c.cobrand.pin_colour(problem, 'report') %]/pin.png" alt="" class="pin">
[% text %]
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/web/fixmystreet-uk-councils/report/banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[% BLOCK banner %]
<div class="banner banner--[% id %]">
<p>
<img src="[% c.cobrand.path_to_pin_icons _ 'pin-' _ c.cobrand.pin_colour(problem, 'report') _ '.png' %]" alt="" class="pin">
<img src="/i/pins/[% c.cobrand.pin_colour(problem, 'report') %]/pin.png" alt="" class="pin">
[% text %]
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/web/fixmystreet.com/report/banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[% BLOCK banner %]
<div class="banner banner--[% id %]">
<p>
<img src="[% c.cobrand.path_to_pin_icons _ 'pin-' _ c.cobrand.pin_colour(problem, 'report') _ '.png' %]" alt="" class="pin">
<img src="/i/pins/[% c.cobrand.pin_colour(problem, 'report') %]/pin.png" alt="" class="pin">
[% text %]
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/web/shropshire/footer_extra_js.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[% PROCESS 'footer_extra_js_base.html' highways=1 validation=1 %]
[% PROCESS 'footer_extra_js_base.html' highways=1 validation=1 roadworks=1 %]
2 changes: 0 additions & 2 deletions web/cobrands/brent/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ $nav_hover_background_colour: $primary;

$header-top-border: false;

$pin_prefix: '/cobrands/brent/images/';

$col_click_map: $gray-1;
$col_click_map_dark: darken($gray-1, 10%);

Expand Down
6 changes: 3 additions & 3 deletions web/cobrands/fixmystreet/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ function construct_hover_feature_control(asset_layers, options) {
// fixmystreet.pin_prefix isn't always available here, due
// to file loading order, so get it from the DOM directly.
var map_data = document.getElementById('js-map-data');
var pin_prefix = fixmystreet.pin_prefix || (map_data ? map_data.getAttribute('data-pin_prefix') : '/i/');
var pin_prefix = fixmystreet.pin_prefix || (map_data ? map_data.getAttribute('data-pin_prefix') : '/i/pins/');

fixmystreet.assets = {
layers: [],
Expand Down Expand Up @@ -914,13 +914,13 @@ fixmystreet.assets = {
}),

style_default_select: new OpenLayers.Style({
externalGraphic: pin_prefix + "pin-spot.png",
externalGraphic: pin_prefix + "spot.png",
fillColor: "#55BB00",
graphicWidth: 48,
graphicHeight: 64,
graphicXOffset: -24,
graphicYOffset: -56,
backgroundGraphic: pin_prefix + "pin-shadow.png",
backgroundGraphic: pin_prefix + "shadow/pin.png",
backgroundWidth: 60,
backgroundHeight: 30,
backgroundXOffset: -7,
Expand Down
6 changes: 1 addition & 5 deletions web/cobrands/fixmystreet/fixmystreet.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,11 +382,7 @@ fixmystreet.set_up = fixmystreet.set_up || {};
$.extend(fixmystreet.set_up, {
basics: function() {
// Preload the new report pin
if ( typeof fixmystreet !== 'undefined' && typeof fixmystreet.pin_prefix !== 'undefined' ) {
document.createElement('img').src = fixmystreet.pin_prefix + 'pin-' + fixmystreet.pin_new_report_colour + '.png';
} else {
document.createElement('img').src = '/i/pin-green.png';
}
document.createElement('img').src = '/i/pins/' + (fixmystreet.pin_new_report_colour || 'green') + '/pin.png';

$('a[href*="around"]').each(function() {
this.href = this.href + (this.href.indexOf('?') > -1 ? '&js=1' : '?js=1');
Expand Down
2 changes: 0 additions & 2 deletions web/cobrands/oxfordshire/_colours.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ $header-top-border: false;

$form-control-border-color: #525252;

$pin_prefix: '/cobrands/oxfordshire/images/';

$search-help-alignment: left;
$search-help-background: #fff3f3;
$search-help-margin-desktop: -2em 0 0 0;
Expand Down
2 changes: 1 addition & 1 deletion web/cobrands/oxfordshire/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
hover: true,
clickFeature: function (feature) {
close_defect_popup();
if (feature.attributes.colour !== 'defects') {
if (feature.attributes.colour !== 'blue-work') {

Check warning on line 60 in web/cobrands/oxfordshire/assets.js

View check run for this annotation

Codecov / codecov/patch

web/cobrands/oxfordshire/assets.js#L60

Added line #L60 was not covered by tests
// We're only interested in defects
return;
}
Expand Down
19 changes: 19 additions & 0 deletions web/cobrands/oxfordshire/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -387,5 +387,24 @@ textarea {
}
}

// Like .item-list__item--indented except with a pin icon baked in!
.item-list__item--with-pin {
a {
background-image: url('/i/pins/yellow-cone/small.png');
}
&.yellow-cone a {
background-image: url('/i/pins/yellow-cone/small.png');
}
&.green-tick a {
background-image: url('/i/pins/green-tick/small.png');
}
&.grey-cross a {
background-image: url('/i/pins/grey-cross/small.png');
}
&.orange-work a {
background-image: url('/i/pins/orange-work/small.png');
}
}

@import "oxfordshire-footer";
@import "oxfordshire-cookiepopup";
Binary file removed web/cobrands/oxfordshire/images/pin-grey-big.png
Binary file not shown.
Binary file removed web/cobrands/oxfordshire/images/pin-grey-mini.png
Binary file not shown.
Binary file removed web/cobrands/oxfordshire/images/pin-grey-small.png
Binary file not shown.
Binary file removed web/cobrands/oxfordshire/images/pin-grey.png
Binary file not shown.
Loading