Skip to content

Commit

Permalink
MDL-63352 block_timeline: Persist user preference on timeline
Browse files Browse the repository at this point in the history
* Persist sort preference to the user table
* Persist filter preferences to the user table
* Add behat tests to test persistence
* Add the gdpr exports for the user preferences as well as unit tests for the same
* Updated view_nav.min
  • Loading branch information
Peter committed Oct 15, 2018
1 parent 129783b commit 9e95193
Show file tree
Hide file tree
Showing 16 changed files with 488 additions and 39 deletions.
2 changes: 1 addition & 1 deletion blocks/timeline/amd/build/view_nav.min.js

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

48 changes: 45 additions & 3 deletions blocks/timeline/amd/src/view_nav.js
Expand Up @@ -25,12 +25,16 @@ define(
[
'jquery',
'core/custom_interaction_events',
'block_timeline/view'
'block_timeline/view',
'core/ajax',
'core/notification'
],
function(
$,
CustomEvents,
View
View,
Ajax,
Notification
) {

var SELECTORS = {
Expand All @@ -41,6 +45,29 @@ function(
DATA_DAYS_LIMIT: '[data-days-limit]',
};

/**
* Generic handler to persist user preferences
*
* @param {string} type The name of the attribute you're updating
* @param {string} value The value of the attribute you're updating
*/
var updateUserPreferences = function(type, value) {
var request = {
methodname: 'core_user_update_user_preferences',
args: {
preferences: [
{
type: type,
value: value
}
]
}
};

Ajax.call([request])[0]
.fail(Notification.exception);
};

/**
* Event listener for the day selector ("Next 7 days", "Next 30 days", etc).
*
Expand All @@ -55,6 +82,11 @@ function(
CustomEvents.events.activate,
SELECTORS.TIMELINE_DAY_FILTER_OPTION,
function(e, data) {
// Update the user preference
var filtername = $(e.currentTarget).data('filtername');
var type = 'block_timeline_user_filter_preference';
updateUserPreferences(type, filtername);

var option = $(e.target).closest(SELECTORS.TIMELINE_DAY_FILTER_OPTION);

if (option.hasClass('active')) {
Expand Down Expand Up @@ -94,11 +126,21 @@ function(
* @param {object} timelineViewRoot The root element for the timeline view
*/
var registerViewSelector = function(root, timelineViewRoot) {
var viewSelector = root.find(SELECTORS.TIMELINE_VIEW_SELECTOR);

// Listen for when the user changes tab so that we can show the first set of courses
// and load their events when they request the sort by courses view for the first time.
root.find(SELECTORS.TIMELINE_VIEW_SELECTOR).on('shown shown.bs.tab', function() {
viewSelector.on('shown shown.bs.tab', function() {
View.shown(timelineViewRoot);
});

// Event selector for user_sort
CustomEvents.define(viewSelector, [CustomEvents.events.activate]);
viewSelector.on(CustomEvents.events.activate, "[data-toggle='tab']", function(e) {
var filtername = $(e.currentTarget).data('filtername');
var type = 'block_timeline_user_sort_preference';
updateUserPreferences(type, filtername);
});
};

/**
Expand Down
5 changes: 4 additions & 1 deletion blocks/timeline/block_timeline.php
Expand Up @@ -50,7 +50,10 @@ public function get_content() {
return $this->content;
}

$renderable = new \block_timeline\output\main();
$sort = get_user_preferences('block_timeline_user_sort_preference');
$filter = get_user_preferences('block_timeline_user_filter_preference');

$renderable = new \block_timeline\output\main($sort, $filter);
$renderer = $this->page->get_renderer('block_timeline');

$this->content = (object) [
Expand Down
94 changes: 92 additions & 2 deletions blocks/timeline/classes/output/main.php
Expand Up @@ -30,6 +30,7 @@
use core_course\external\course_summary_exporter;

require_once($CFG->dirroot . '/course/lib.php');
require_once($CFG->dirroot . '/blocks/timeline/lib.php');
require_once($CFG->libdir . '/completionlib.php');

/**
Expand All @@ -43,6 +44,86 @@ class main implements renderable, templatable {
/** Number of courses to load per page */
const COURSES_PER_PAGE = 2;

/**
* @var string The current filter preference
*/
public $filter;

/**
* @var string The current sort/order preference
*/
public $order;

/**
* main constructor.
*
* @param string $order Constant sort value from ../timeline/lib.php
* @param string $filter Constant sort value from ../timeline/lib.php
*/
public function __construct($order, $filter) {
$this->order = $order ? $order : BLOCK_TIMELINE_SORT_BY_DATES;
$this->filter = $filter ? $filter : BLOCK_TIMELINE_FILTER_BY_7_DAYS;
}

/**
* Test the available filters with the current user preference and return an array with
* bool flags corresponding to which is active
*
* @return array
*/
protected function get_filters_as_booleans() {
$filters = [
BLOCK_TIMELINE_FILTER_BY_NONE => false,
BLOCK_TIMELINE_FILTER_BY_OVERDUE => false,
BLOCK_TIMELINE_FILTER_BY_7_DAYS => false,
BLOCK_TIMELINE_FILTER_BY_30_DAYS => false,
BLOCK_TIMELINE_FILTER_BY_3_MONTHS => false,
BLOCK_TIMELINE_FILTER_BY_6_MONTHS => false
];

// Set the selected filter to true.
$filters[$this->filter] = true;

return $filters;
}

/**
* Get the offset/limit values corresponding to $this->filter
* which are used to send through to the context as default values
*
* @return array
*/
private function get_filter_offsets() {

$limit = false;
if (in_array($this->filter, [BLOCK_TIMELINE_FILTER_BY_NONE, BLOCK_TIMELINE_FILTER_BY_OVERDUE])) {
$offset = -14;
if ($this->filter == BLOCK_TIMELINE_FILTER_BY_OVERDUE) {
$limit = 0;
}
} else {
$offset = 0;
$limit = 7;

switch($this->filter) {
case BLOCK_TIMELINE_FILTER_BY_30_DAYS:
$limit = 30;
break;
case BLOCK_TIMELINE_FILTER_BY_3_MONTHS:
$limit = 90;
break;
case BLOCK_TIMELINE_FILTER_BY_6_MONTHS:
$limit = 180;
break;
}
}

return [
'daysoffset' => $offset,
'dayslimit' => $limit
];
}

/**
* Export this data so it can be used as the context for a mustache template.
*
Expand All @@ -69,13 +150,22 @@ public function export_for_template(renderer_base $output) {
return $exporter->export($output);
}, $inprogresscourses);

return [
$filters = $this->get_filters_as_booleans();
$offsets = $this->get_filter_offsets();
$contextvariables = [
'midnight' => usergetmidnight(time()),
'coursepages' => [$formattedcourses],
'urls' => [
'nocourses' => $nocoursesurl,
'noevents' => $noeventsurl
]
],
'sorttimelinedates' => $this->order == BLOCK_TIMELINE_SORT_BY_DATES,
'sorttimelinecourses' => $this->order == BLOCK_TIMELINE_SORT_BY_COURSES,
'selectedfilter' => $this->filter,
'hasdaysoffset' => true,
'hasdayslimit' => $offsets['dayslimit'] !== false ,
'nodayslimit' => $offsets['dayslimit'] === false ,
];
return array_merge($contextvariables, $filters, $offsets);
}
}
38 changes: 32 additions & 6 deletions blocks/timeline/classes/privacy/provider.php
Expand Up @@ -25,22 +25,48 @@
namespace block_timeline\privacy;

defined('MOODLE_INTERNAL') || die();
use \core_privacy\local\metadata\collection;

/**
* Privacy Subsystem for block_timeline.
*
* @copyright 2018 Ryan Wyllie <ryan@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class provider implements \core_privacy\local\metadata\null_provider {
class provider implements \core_privacy\local\metadata\provider, \core_privacy\local\request\user_preference_provider {

/**
* Get the language string identifier with the component's language
* file to explain why this plugin stores no data.
* Returns meta-data information about the myoverview block.
*
* @return string
* @param \core_privacy\local\metadata\collection $collection A collection of meta-data.
* @return \core_privacy\local\metadata\collection Return the collection of meta-data.
*/
public static function get_reason() : string {
return 'privacy:metadata';
public static function get_metadata(collection $collection) : collection {
$collection->add_user_preference('block_timeline_user_sort_preference', 'privacy:metadata:timelinesortpreference');
$collection->add_user_preference('block_timeline_user_filter_preference', 'privacy:metadata:timelinefilterpreference');
return $collection;
}

/**
* Export all user preferences for the myoverview block
*
* @param int $userid The userid of the user whose data is to be exported.
*/
public static function export_user_preferences(int $userid) {
$preference = get_user_preferences('block_timeline_user_sort_preference', null, $userid);
if (isset($preference)) {
\core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_sort_preference',
get_string($preference, 'block_timeline'),
get_string('privacy:metadata:timelinesortpreference', 'block_timeline')
);
}

$preference = get_user_preferences('block_timeline_user_filter_preference', null, $userid);
if (isset($preference)) {
\core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_filter_preference',
get_string($preference, 'block_timeline'),
get_string('privacy:metadata:timelinefilterpreference', 'block_timeline')
);
}
}
}
4 changes: 3 additions & 1 deletion blocks/timeline/lang/en/block_timeline.php
Expand Up @@ -41,9 +41,11 @@
$string['next3months'] = 'Next 3 months';
$string['next6months'] = 'Next 6 months';
$string['overdue'] = 'Overdue';
$string['all'] = 'All';
$string['pluginname'] = 'Timeline';
$string['sortbycourses'] = 'Sort by courses';
$string['sortbydates'] = 'Sort by dates';
$string['timeline'] = 'Timeline';
$string['viewcourse'] = 'View course';
$string['privacy:metadata'] = 'The timeline block does not store any personal data.';
$string['privacy:metadata:timelinesortpreference'] = 'The user sort preference for the timeline block.';
$string['privacy:metadata:timelinefilterpreference'] = 'The user day filter preference for the timeline block.';
70 changes: 70 additions & 0 deletions blocks/timeline/lib.php
@@ -0,0 +1,70 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Library functions for timeline
*
* @package block_timeline
* @copyright 2018 Peter Dias
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();

/**
* Define constants to store the SORT user preference
*/
define('BLOCK_TIMELINE_SORT_BY_DATES', 'sortbydates');
define('BLOCK_TIMELINE_SORT_BY_COURSES', 'sortbycourses');

/**
* Define constants to store the FILTER user preference
*/
define('BLOCK_TIMELINE_FILTER_BY_NONE', 'all');
define('BLOCK_TIMELINE_FILTER_BY_OVERDUE', 'overdue');
define('BLOCK_TIMELINE_FILTER_BY_7_DAYS', 'next7days');
define('BLOCK_TIMELINE_FILTER_BY_30_DAYS', 'next30days');
define('BLOCK_TIMELINE_FILTER_BY_3_MONTHS', 'next3months');
define('BLOCK_TIMELINE_FILTER_BY_6_MONTHS', 'next6months');

/**
* Returns the name of the user preferences as well as the details this plugin uses.
*
* @return array
*/
function block_timeline_user_preferences() {
$preferences['block_timeline_user_sort_preference'] = array(
'null' => NULL_NOT_ALLOWED,
'default' => BLOCK_TIMELINE_SORT_BY_DATES,
'type' => PARAM_ALPHA,
'choices' => array(BLOCK_TIMELINE_SORT_BY_DATES, BLOCK_TIMELINE_SORT_BY_COURSES)
);

$preferences['block_timeline_user_filter_preference'] = array(
'null' => NULL_NOT_ALLOWED,
'default' => BLOCK_TIMELINE_FILTER_BY_30_DAYS,
'type' => PARAM_ALPHANUM,
'choices' => array(
BLOCK_TIMELINE_FILTER_BY_NONE,
BLOCK_TIMELINE_FILTER_BY_OVERDUE,
BLOCK_TIMELINE_FILTER_BY_7_DAYS,
BLOCK_TIMELINE_FILTER_BY_30_DAYS,
BLOCK_TIMELINE_FILTER_BY_3_MONTHS,
BLOCK_TIMELINE_FILTER_BY_6_MONTHS
)
);

return $preferences;
}

0 comments on commit 9e95193

Please sign in to comment.