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

(feat): wordpress menu based sidenav instead of hardcoded sidenav. also added all den haag nlds icons #30

Open
wants to merge 28 commits into
base: mijn-zaken/frontend
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eee61a1
(feat): first setup of hw navbar and footer
YvetteNikolov Oct 4, 2023
47948ef
(chore): add dev branch of owc-gravityforms-zaaksysteem for demo
YvetteNikolov Oct 5, 2023
52d0d76
(refractor): centralize mijn zaken templates to parent theme
YvetteNikolov Oct 5, 2023
6a0b01d
(chore): update gravityforms zaak plugin
YvetteNikolov Oct 6, 2023
53f3bca
(chore): merge files from feature/openpdd-sidebar-template
YvetteNikolov Oct 11, 2023
1b1f7ec
(chore): temporarily slightly change sidebar of mijn-zaken
YvetteNikolov Oct 11, 2023
d588568
(chore): add menus to bar child themes
YvetteNikolov Oct 11, 2023
82032c6
(fix): check on mijn-zaken nav menu
YvetteNikolov Oct 11, 2023
2395135
(feat): add blocks
GijsvanArem Oct 23, 2023
ce7554a
(feat): first setup of hw navbar and footer
YvetteNikolov Oct 4, 2023
4d0909b
(refractor): centralize mijn zaken templates to parent theme
YvetteNikolov Oct 5, 2023
3c7a2fa
(chore): merge files from feature/openpdd-sidebar-template
YvetteNikolov Oct 11, 2023
60fef0a
(chore): temporarily slightly change sidebar of mijn-zaken
YvetteNikolov Oct 11, 2023
a42a046
(chore): update composer.lock
YvetteNikolov Oct 23, 2023
4ff294a
(feat): first setup of hw navbar and footer
YvetteNikolov Oct 4, 2023
b3ddef2
(refractor): centralize mijn zaken templates to parent theme
YvetteNikolov Oct 5, 2023
6bbbf20
(chore): merge files from feature/openpdd-sidebar-template
YvetteNikolov Oct 11, 2023
7665d99
(chore): temporarily slightly change sidebar of mijn-zaken
YvetteNikolov Oct 11, 2023
37eb3a4
(style): improve link underline styling
YvetteNikolov Oct 23, 2023
18b4a46
(style): buren mijn-zaken footer columns
YvetteNikolov Oct 23, 2023
183ff70
(chore): several small scss adjustments
YvetteNikolov Oct 24, 2023
dae9cb3
(chore): run prettier and enforce stylelint rules
YvetteNikolov Oct 24, 2023
3dc7d6b
(chore): regenerate lock file after rebase
YvetteNikolov Oct 24, 2023
6cf4ce0
(chore): several small scss adjustments
YvetteNikolov Oct 24, 2023
5682d39
(style): fix mijn-zaken template-columns
YvetteNikolov Oct 24, 2023
e3d115c
(chore): css variables
YvetteNikolov Oct 24, 2023
dfae55c
(feat): wordpress menu based sidenav instead of hardcoded sidenav. al…
GijsvanArem Oct 24, 2023
a0e1be2
(fix): apply pull request feedback
GijsvanArem Oct 26, 2023
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
80 changes: 80 additions & 0 deletions app/Navigation/NavigationMetaFields.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?php

declare( strict_types=1 );

namespace App\Navigation;

class NavigationMetaFields {

/**
* NavigationMetaFields constructor.
*/
public function __construct() {
add_action( 'wp_nav_menu_item_custom_fields', [ $this, 'addCustomFields' ], 10, 2 );
add_action( 'wp_update_nav_menu_item', [ $this, 'updateNavItems' ], 10, 2 );
}

/**
* Mapping of the meta fields to the menu item.
*
* @data-structure: 'FIELD_DESCRIPTION' => [
* 'meta_field' => 'META_FIELD_NAME',
* 'text' => 'TEXT_SHOWN_BESIDE_CHECKBOX'
* ]
*
* @return array[]
*/
public function getFields(): array {
return [
'counter' => [
'meta_field' => '_show-counter',
'text' => __( 'Show counter next to this item', 'owc-formulieren' ),
],
'spacing' => [
'meta_field' => '_spacing-top',
'text' => __( 'Add spacing to the top of this item', 'owc-formulieren' ),
],
];
}

/**
* Add custom fields to the menu item edit screen form.
*
* @param $item_id
* @param $item
*
* @return void
*/
public function addCustomFields( $item_id, $item ): void {
foreach ( $this->getFields() as $field_name => $meta_data ) {
$is_current_active = get_post_meta( $item_id, $meta_data['meta_field'], true );
?>
<p class="owc-<?php echo $field_name; ?> description description-wide">
<label for="owc-<?php echo $field_name; ?>-<?php echo $item_id; ?>">
<input
type="checkbox"
id="<?php echo $field_name; ?>-<?php echo $item_id; ?>"
name="<?php echo $field_name; ?>[<?php echo $item_id; ?>]"
<?php checked( $is_current_active, true ); ?>
/><?php echo $meta_data['text']; ?>
</label>
</p>
<?php
}
}

/**
* Update the nav menu item meta fields based on submitted data.
*
* @param $menu_id
* @param $menu_item_db_id
*
* @return void
*/
public function updateNavItems( $menu_id, $menu_item_db_id ): void {
foreach ( $this->getFields() as $field_name => $meta_data ) {
$value = ( $_POST[ $field_name ][ $menu_item_db_id ] ?? '' ) == 'on';
update_post_meta( $menu_item_db_id, $meta_data['meta_field'], $value );
}
}
}
88 changes: 88 additions & 0 deletions app/Navigation/SideNavWalker.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?php

declare( strict_types=1 );

namespace App\Navigation;

class SideNavWalker extends \Walker_Nav_Menu {

/**
* Manipulate the list item (start element).
*
* @param string $output Used to append additional content (passed by reference).
* @param object $data_object The data object (WP_Post).
* @param int $depth Depth of the item.
* @param array $args An array of additional arguments.
* @param int $current_object_id Optional. ID of the current item. Default 0.
*
* @return string
*/
public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ): string {
$current_class = $item->current ? 'denhaag-sidenav__link--current' : '';
$svg = $this->getSvgByClassName( $item );
$counter = get_post_meta( $item->ID, '_show-counter', true )
? '<div class="denhaag-badge-counter">
<span class="denhaag-dot-indicator denhaag-dot-indicator--overlap-rectangle">
<div
id="badge-counter--' . sanitize_title( $item->title ) . '"
class="denhaag-badge-counter__counter">
0
</div>
<span class="denhaag-dot-indicator__dot"></span>
</span>
</div>'
: '';

$output .= '
<li class="denhaag-sidenav__item">
<a class="denhaag-sidenav__link ' . esc_attr( $current_class ) . '" href="' . esc_url( $item->url ) . '">
' . $svg . '
' . esc_html( $item->title ) . '
' . $counter . '
</a>';

return $output;
}

/**
* Closes the list item.
*
* @param string $output Used to append additional content (passed by reference).
* @param object $data_object The data object.
* @param int $depth Depth of the item.
* @param array $args An array of additional arguments.
*
* @return string
*/
public function end_el( &$output, $item, $depth = 0, $args = array() ): string {
$output .= '</li>';

return $output;
}

/**
* Returns an inline SVG based on a class name. The class name has to be identical to the file name.
*
* @path The path of the SVGs is WP_THEMES_FOLDER/PARENT_THEME/assets/img/icons
*
* @param $item
*
* @return string
*/
public function getSvgByClassName( $item ): string {
$first_class = $item->classes[0] ?? '';

if ( ! $first_class ) {
return '';
}

$path = '/assets/img/icons/' . esc_html( $first_class ) . '.svg';

if ( ! is_file( get_template_directory() . $path ) ) {
return '';
}

return file_get_contents( get_template_directory() . $path ) ?: '';
}
}

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"plugin/owc-gravityforms-bag-address": "1.1.*",
"plugin/owc-gravityforms-digid": "1.1.7",
"plugin/owc-gravityforms-eherkenning": "dev-master",
"plugin/owc-gravityforms-zaaksysteem": "dev-master",
"plugin/owc-gravityforms-zaaksysteem": "dev-feat/remove-enable-u-add-individual-service-urls",
"plugin/owc-gravityforms-zaaksysteem-enable-u": "^1.1.0",
"plugin/prefill-gravity-forms": "^1.0.14",
"plugin/real-time-validation-for-gravity-forms": "^1.7",
Expand Down
19 changes: 9 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
Parent theme
--------------------------------------------------------------*/
@import '../../../owc-formulieren/assets/scss/editor';
@import 'settings/root';
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,8 @@ $input-border-radius: 0;
--------------------------------------------------------------*/
$transition-timing: cubic-bezier( 0.22, 1, 0.36, 1 ); // EaseOutQuint
$transition-base: all 0.5s $transition-timing; // EaseOutQuint

/*--------------------------------------------------------------
Dropdown
--------------------------------------------------------------*/
$dropdown-border-radius: $theme-border-radius;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$theme-colors: (
primary: #244c96,
secondary: #e21d1d,
);
) !default;

$primary-light: #758bc0;
$gray-light: #f9f9f9;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
$navbar-height: 110px;
$navbar-height-desktop: 110px;
$navbar-shadow: $box-shadow;

/* --------------------------------------------------------------
Mijn Zaken: footer
-------------------------------------------------------------- */
$mijn-zaken-footer-color: #fff !default;
$mijn-zaken-footer-bg-color: #244c96 !default;
7 changes: 5 additions & 2 deletions htdocs/wp-content/themes/baralbrandswaard/src/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
// This theme uses wp_nav_menu() in one location.
register_nav_menus([
'primary' => __('Primary Menu', 'baralbrandswaard'),
'primary-mijn-zaken' => __('Mijn Zaken menu', 'openpdd-hoeksche-waard'),
'footer-bottom' => __('Footer bottom', 'openpdd-hoeksche-waard'),
]);
});

Expand All @@ -50,17 +52,18 @@
*/
add_filter('yard/config-expander/config/admin', function ($defaults) {
$defaults['DISABLE_REST_API'] = false;

return $defaults;
});

add_filter('owc/config-expander/rest-api/whitelist', function ($endpoints_whitelist) {
$endpoints_whitelist['/irma/v1/gf/handle'] = [
'endpoint_stub' => '/irma/v1/gf/handle',
'methods' => ['POST']
'methods' => ['POST'],
];
$endpoints_whitelist['/irma/v1/gf/session'] = [
'endpoint_stub' => '/irma/v1/gf/session',
'methods' => ['GET']
'methods' => ['GET'],
];

return $endpoints_whitelist;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php declare(strict_types=1);
/**
* Template name: Mijn Zaken
*/
get_template_part('mijn-zaken/header');

?>
<main class="page-main page-main--mijn-zaken container" id="readspeaker">
<aside class="page-main__aside">
<?php get_template_part('mijn-zaken/sidebar'); ?>
</aside>
<article class="page-main__content">
<?php the_content(); ?>
</article>
</main>
<?php

get_template_part('mijn-zaken/footer');
7 changes: 5 additions & 2 deletions htdocs/wp-content/themes/barbarendrecht/src/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
// This theme uses wp_nav_menu() in one location.
register_nav_menus([
'primary' => __('Primary Menu', 'barbarendrecht'),
'primary-mijn-zaken' => __('Mijn Zaken menu', 'openpdd-hoeksche-waard'),
'footer-bottom' => __('Footer bottom', 'openpdd-hoeksche-waard'),
]);
});

Expand All @@ -50,17 +52,18 @@
*/
add_filter('yard/config-expander/config/admin', function ($defaults) {
$defaults['DISABLE_REST_API'] = false;

return $defaults;
});

add_filter('owc/config-expander/rest-api/whitelist', function ($endpoints_whitelist) {
$endpoints_whitelist['/irma/v1/gf/handle'] = [
'endpoint_stub' => '/irma/v1/gf/handle',
'methods' => ['POST']
'methods' => ['POST'],
];
$endpoints_whitelist['/irma/v1/gf/session'] = [
'endpoint_stub' => '/irma/v1/gf/session',
'methods' => ['GET']
'methods' => ['GET'],
];

return $endpoints_whitelist;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php declare(strict_types=1);
/**
* Template name: Mijn Zaken
*/
get_template_part('mijn-zaken/header');

?>
<main class="page-main page-main--mijn-zaken container" id="readspeaker">
<aside class="page-main__aside">
<?php get_template_part('mijn-zaken/sidebar'); ?>
</aside>
<article class="page-main__content">
<?php the_content(); ?>
</article>
</main>
<?php

get_template_part('mijn-zaken/footer');
Loading