Merge pull request #2445 from FinnStutzenstein/Issue2413

Using a datetimepicker for agenda start time
This commit is contained in:
Norman Jäckel 2016-10-06 22:30:22 +02:00 committed by GitHub
commit e644d1f14c
8 changed files with 69 additions and 23 deletions

View File

@ -209,6 +209,7 @@ OpenSlides uses the following projects or parts of them:
* `angular-ui-tree <https://github.com/angular-ui-tree/angular-ui-tree>`_, License: MIT * `angular-ui-tree <https://github.com/angular-ui-tree/angular-ui-tree>`_, License: MIT
* `api-check <https://github.com/kentcdodds/api-check>`_, License: MIT * `api-check <https://github.com/kentcdodds/api-check>`_, License: MIT
* `bootstrap <http://getbootstrap.com>`_, License: MIT * `bootstrap <http://getbootstrap.com>`_, License: MIT
* `bootstrap-ui-datetime-picker <https://github.com/Gillardo/bootstrap-ui-datetime-picker>`_, License: MIT
* `chosen <http://harvesthq.github.io/chosen/>`_, License: MIT * `chosen <http://harvesthq.github.io/chosen/>`_, License: MIT
* `font-awesome-bower <https://github.com/tdg5/font-awesome-bower>`_, License: MIT * `font-awesome-bower <https://github.com/tdg5/font-awesome-bower>`_, License: MIT
* `jquery <https://jquery.com>`_, License: MIT * `jquery <https://jquery.com>`_, License: MIT

View File

@ -22,6 +22,7 @@
"angular-ui-tinymce": "~0.0.17", "angular-ui-tinymce": "~0.0.17",
"angular-ui-tree": "~2.22.0", "angular-ui-tree": "~2.22.0",
"bootstrap-css-only": "~3.3.6", "bootstrap-css-only": "~3.3.6",
"bootstrap-ui-datetime-picker": "~2.4.0",
"docxtemplater": "~2.1.5", "docxtemplater": "~2.1.5",
"font-awesome-bower": "~4.5.0", "font-awesome-bower": "~4.5.0",
"jquery.cookie": "~1.4.1", "jquery.cookie": "~1.4.1",
@ -54,6 +55,7 @@
}, },
"resolutions": { "resolutions": {
"angular": ">=1.5 <1.6", "angular": ">=1.5 <1.6",
"jquery": ">=3.1 <3.2" "jquery": ">=3.1 <3.2",
"angular-bootstrap": "~2.1.3"
} }
} }

View File

@ -1,18 +1,8 @@
from datetime import datetime
from django.core.exceptions import ValidationError as DjangoValidationError
from django.core.validators import MaxLengthValidator, MinValueValidator from django.core.validators import MaxLengthValidator, MinValueValidator
from openslides.core.config import ConfigVariable from openslides.core.config import ConfigVariable
def validate_start_time(value):
try:
datetime.strptime(value, '%d.%m.%Y %H:%M')
except ValueError:
raise DjangoValidationError('Invalid input.')
def get_config_variables(): def get_config_variables():
""" """
Generator which yields all config variables of this app. Generator which yields all config variables of this app.
@ -41,16 +31,15 @@ def get_config_variables():
group='Agenda', group='Agenda',
subgroup='General') subgroup='General')
# TODO: Use an input type with generic datetime support.
yield ConfigVariable( yield ConfigVariable(
name='agenda_start_event_date_time', name='agenda_start_event_date_time',
default_value='', default_value=None,
input_type='datetimepicker',
label='Begin of event', label='Begin of event',
help_text='Input format: DD.MM.YYYY HH:MM', help_text='Input format: DD.MM.YYYY HH:MM',
weight=220, weight=220,
group='Agenda', group='Agenda',
subgroup='General', subgroup='General')
validators=(validate_start_time,))
# List of speakers # List of speakers

View File

@ -136,11 +136,10 @@ angular.module('OpenSlidesApp.agenda.site', ['OpenSlidesApp.agenda'])
$scope.calculateEndTime = function () { $scope.calculateEndTime = function () {
var totalDuration = $scope.sumDurations(); var totalDuration = $scope.sumDurations();
var startTime = $scope.config('agenda_start_event_date_time'); var startTimestamp = $scope.config('agenda_start_event_date_time');
// This date-time has a fixed structure: DD.MM.YYYY HH:MM if (startTimestamp) {
if (startTime) { var endTimestamp = startTimestamp + totalDuration * 60 * 1000;
var timestamp = Date.parse(startTime) + totalDuration * 60 * 1000; var endDate = new Date(endTimestamp);
var endDate = new Date(timestamp);
var mm = ("0" + endDate.getMinutes()).slice(-2); var mm = ("0" + endDate.getMinutes()).slice(-2);
var dateStr = endDate.getHours() + ':' + mm; var dateStr = endDate.getHours() + ':' + mm;
return dateStr; return dateStr;

View File

@ -11,7 +11,8 @@ INPUT_TYPE_MAPPING = {
'boolean': bool, 'boolean': bool,
'choice': str, 'choice': str,
'comments': list, 'comments': list,
'colorpicker': str} 'colorpicker': str,
'datetimepicker': int}
class ConfigHandler: class ConfigHandler:

View File

@ -9,6 +9,7 @@ angular.module('OpenSlidesApp.core', [
'ngAnimate', 'ngAnimate',
'ngSanitize', // TODO: only use this in functions that need it. 'ngSanitize', // TODO: only use this in functions that need it.
'ui.bootstrap', 'ui.bootstrap',
'ui.bootstrap.datetimepicker',
'ui.tree', 'ui.tree',
'pdf', 'pdf',
'OpenSlidesApp-templates', 'OpenSlidesApp-templates',

View File

@ -23,6 +23,44 @@ angular.module('OpenSlidesApp.core.site', [
// Can be used to find out if the projector or the side is used // Can be used to find out if the projector or the side is used
.constant('REALM', 'site') .constant('REALM', 'site')
.factory('DateTimePickerTranslation', [
'gettextCatalog',
function (gettextCatalog) {
return {
getButtons: function () {
return {
show: true,
now: {
show: true,
text: gettextCatalog.getString('now')
},
today: {
show: true,
text: gettextCatalog.getString('today')
},
clear: {
show: true,
text: gettextCatalog.getString('clear')
},
date: {
show: true,
text: gettextCatalog.getString('date')
},
time: {
show: true,
text: gettextCatalog.getString('time')
},
close: {
show: true,
text: gettextCatalog.getString('close')
}
};
}
};
}
])
// Provider to register entries for the main menu. // Provider to register entries for the main menu.
.provider('mainMenu', [ .provider('mainMenu', [
function() { function() {
@ -393,8 +431,9 @@ angular.module('OpenSlidesApp.core.site', [
integer: 'number', integer: 'number',
boolean: 'checkbox', boolean: 'checkbox',
choice: 'choice', choice: 'choice',
colorpicker: 'colorpicker',
comments: 'comments', comments: 'comments',
colorpicker: 'colorpicker',
datetimepicker: 'datetimepicker',
}[type]; }[type];
} }
@ -549,9 +588,11 @@ angular.module('OpenSlidesApp.core.site', [
'Config', 'Config',
'configOptions', 'configOptions',
'gettextCatalog', 'gettextCatalog',
function($scope, Config, configOptions, gettextCatalog) { 'DateTimePickerTranslation',
function($scope, Config, configOptions, gettextCatalog, DateTimePickerTranslation) {
Config.bindAll({}, $scope, 'configs'); Config.bindAll({}, $scope, 'configs');
$scope.configGroups = configOptions.data.config_groups; $scope.configGroups = configOptions.data.config_groups;
$scope.dateTimePickerTranslatedButtons = DateTimePickerTranslation.getButtons();
// save changed config value // save changed config value
$scope.save = function(key, value) { $scope.save = function(key, value) {

View File

@ -51,6 +51,18 @@
ng-change="save(configOption.key, $parent.value)" ng-change="save(configOption.key, $parent.value)"
type="text"> type="text">
<!-- datetimepicker -->
<input ng-if="type == 'datetimepicker'"
class="form-control"
datetime-picker="dd.MM.yyyy HH:mm"
ng-model="$parent.value"
ng-change="save(configOption.key, $parent.value)"
is-open="datetimeOpen[key]"
ng-focus="datetimeOpen[key]=true;"
save-as="'number'"
button-bar="dateTimePickerTranslatedButtons"
default-time="10:00:00">
<!-- textarea --> <!-- textarea -->
<textarea ng-if="type == 'textarea'" <textarea ng-if="type == 'textarea'"
ng-model="$parent.value" ng-model="$parent.value"