d987a1138d
using pre-import checks and preview table.
329 lines
11 KiB
JavaScript
329 lines
11 KiB
JavaScript
(function () {
|
|
|
|
'use strict';
|
|
|
|
angular.module('OpenSlidesApp.agenda.site', ['OpenSlidesApp.agenda'])
|
|
|
|
.config([
|
|
'mainMenuProvider',
|
|
'gettext',
|
|
function (mainMenuProvider, gettext) {
|
|
mainMenuProvider.register({
|
|
'ui_sref': 'agenda.item.list',
|
|
'img_class': 'calendar-o',
|
|
'title': gettext('Agenda'),
|
|
'weight': 200,
|
|
'perm': 'agenda.can_see',
|
|
});
|
|
}
|
|
])
|
|
|
|
.config([
|
|
'$stateProvider',
|
|
function($stateProvider) {
|
|
$stateProvider
|
|
.state('agenda', {
|
|
url: '/agenda',
|
|
abstract: true,
|
|
template: "<ui-view/>",
|
|
})
|
|
.state('agenda.item', {
|
|
abstract: true,
|
|
template: "<ui-view/>",
|
|
})
|
|
.state('agenda.item.list', {
|
|
resolve: {
|
|
items: function(Agenda) {
|
|
return Agenda.findAll();
|
|
}
|
|
}
|
|
})
|
|
.state('agenda.item.detail', {
|
|
resolve: {
|
|
item: function(Agenda, $stateParams) {
|
|
return Agenda.find($stateParams.id);
|
|
},
|
|
users: function(User) {
|
|
return User.findAll();
|
|
},
|
|
tags: function(Tag) {
|
|
return Tag.findAll();
|
|
}
|
|
}
|
|
})
|
|
.state('agenda.item.sort', {
|
|
resolve: {
|
|
items: function(Agenda) {
|
|
return Agenda.findAll();
|
|
}
|
|
},
|
|
url: '/sort',
|
|
controller: 'AgendaSortCtrl',
|
|
})
|
|
.state('agenda.item.import', {
|
|
url: '/import',
|
|
controller: 'AgendaImportCtrl',
|
|
});
|
|
}
|
|
])
|
|
|
|
.controller('ItemListCtrl', [
|
|
'$scope',
|
|
'$http',
|
|
'$state',
|
|
'ngDialog',
|
|
'Agenda',
|
|
'AgendaTree',
|
|
'Customslide',
|
|
'Projector',
|
|
function($scope, $http, $state, ngDialog, Agenda, AgendaTree, Customslide, Projector) {
|
|
// Bind agenda tree to the scope
|
|
$scope.$watch(function () {
|
|
return Agenda.lastModified();
|
|
}, function () {
|
|
$scope.items = AgendaTree.getFlatTree(Agenda.getAll());
|
|
});
|
|
$scope.alert = {};
|
|
$scope.isFilter = true;
|
|
|
|
// project related item (content object)
|
|
$scope.project = function (item) {
|
|
item.getContentResource().find(item.content_object.id).then(
|
|
function(object) {
|
|
object.project();
|
|
}
|
|
);
|
|
};
|
|
|
|
// open new dialog
|
|
$scope.newDialog = function () {
|
|
ngDialog.open({
|
|
template: 'static/templates/core/customslide-form.html',
|
|
controller: 'CustomslideCreateCtrl',
|
|
className: 'ngdialog-theme-default wide-form'
|
|
});
|
|
};
|
|
// open edit dialog
|
|
$scope.editDialog = function (item) {
|
|
$state.go(item.content_object.collection.replace('/','.')+'.detail.update',
|
|
{id: item.content_object.id});
|
|
};
|
|
// detail view of related item (content object)
|
|
$scope.open = function (item) {
|
|
$state.go(item.content_object.collection.replace('/','.')+'.detail',
|
|
{id: item.content_object.id});
|
|
};
|
|
// save changed item
|
|
$scope.save = function (item) {
|
|
Agenda.save(item).then(
|
|
function(success) {
|
|
item.quickEdit = false;
|
|
$scope.alert.show = false;
|
|
},
|
|
function(error){
|
|
var message = '';
|
|
for (var e in error.data) {
|
|
message += e + ': ' + error.data[e] + ' ';
|
|
}
|
|
$scope.alert = { type: 'danger', msg: message, show: true };
|
|
});
|
|
};
|
|
// delete related item
|
|
$scope.deleteRelatedItem = function (item) {
|
|
if (item.content_object.collection == 'core/customslide') {
|
|
Customslide.destroy(item.content_object.id);
|
|
}
|
|
};
|
|
|
|
// *** delete mode functions ***
|
|
$scope.isDeleteMode = false;
|
|
// check all checkboxes
|
|
$scope.checkAll = function () {
|
|
angular.forEach($scope.items, function (item) {
|
|
item.selected = $scope.selectedAll;
|
|
});
|
|
};
|
|
// uncheck all checkboxes if isDeleteMode is closed
|
|
$scope.uncheckAll = function () {
|
|
if (!$scope.isDeleteMode) {
|
|
$scope.selectedAll = false;
|
|
angular.forEach($scope.items, function (item) {
|
|
item.selected = false;
|
|
});
|
|
}
|
|
};
|
|
// delete selected items only if items are customslides
|
|
$scope.delete = function () {
|
|
angular.forEach($scope.items, function (item) {
|
|
if (item.selected) {
|
|
if (item.content_object.collection == 'core/customslide') {
|
|
Customslide.destroy(item.content_object.id);
|
|
}
|
|
}
|
|
});
|
|
$scope.isDeleteMode = false;
|
|
$scope.uncheckAll();
|
|
};
|
|
|
|
// project agenda
|
|
$scope.projectAgenda = function () {
|
|
$http.post('/rest/core/projector/1/prune_elements/',
|
|
[{name: 'agenda/item-list'}]);
|
|
};
|
|
// check if agenda is projected
|
|
$scope.isAgendaProjected = function () {
|
|
// Returns true if there is a projector element with the same
|
|
// name and agenda is active.
|
|
var projector = Projector.get(1);
|
|
if (typeof projector === 'undefined') return false;
|
|
var self = this;
|
|
var predicate = function (element) {
|
|
return element.name == 'agenda/item-list';
|
|
};
|
|
return typeof _.findKey(projector.elements, predicate) === 'string';
|
|
};
|
|
// auto numbering of agenda items
|
|
$scope.autoNumbering = function() {
|
|
$http.post('/rest/agenda/item/numbering/', {});
|
|
};
|
|
}
|
|
])
|
|
|
|
.controller('ItemDetailCtrl', [
|
|
'$scope',
|
|
'$http',
|
|
'Agenda',
|
|
'User',
|
|
'item',
|
|
function ($scope, $http, Agenda, User, item) {
|
|
Agenda.bindOne(item.id, $scope, 'item');
|
|
User.bindAll({}, $scope, 'users');
|
|
$scope.speaker = {};
|
|
$scope.alert = {};
|
|
|
|
// close/open list of speakers of current item
|
|
$scope.closeList = function (listClosed) {
|
|
item.speaker_list_closed = listClosed;
|
|
Agenda.save(item);
|
|
};
|
|
// add user to list of speakers
|
|
$scope.addSpeaker = function (userId) {
|
|
$http.post('/rest/agenda/item/' + item.id + '/manage_speaker/', {'user': userId})
|
|
.success(function(data){
|
|
$scope.alert.show = false;
|
|
})
|
|
.error(function(data){
|
|
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
|
});
|
|
};
|
|
// delete speaker(!) from list of speakers
|
|
$scope.removeSpeaker = function (speakerId) {
|
|
$http.delete('/rest/agenda/item/' + item.id + '/manage_speaker/',
|
|
{headers: {'Content-Type': 'application/json'},
|
|
data: JSON.stringify({speaker: speakerId})})
|
|
.error(function(data){
|
|
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
|
});
|
|
};
|
|
// begin speech of selected/next speaker
|
|
$scope.beginSpeech = function (speakerId) {
|
|
$http.put('/rest/agenda/item/' + item.id + '/speak/', {'speaker': speakerId})
|
|
.success(function(data){
|
|
$scope.alert.show = false;
|
|
})
|
|
.error(function(data){
|
|
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
|
});
|
|
};
|
|
// end speech of current speaker
|
|
$scope.endSpeech = function () {
|
|
$http.delete('/rest/agenda/item/' + item.id + '/speak/',
|
|
{headers: {'Content-Type': 'application/json'},
|
|
data: JSON.stringify()})
|
|
.error(function(data){
|
|
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
|
});
|
|
};
|
|
// project list of speakers
|
|
$scope.projectListOfSpeakers = function () {
|
|
$http.post('/rest/core/projector/1/prune_elements/',
|
|
[{name: 'agenda/item', id: item.id, list_of_speakers: true}]);
|
|
};
|
|
}
|
|
])
|
|
|
|
.controller('AgendaSortCtrl', [
|
|
'$scope',
|
|
'$http',
|
|
'Agenda',
|
|
'AgendaTree',
|
|
function($scope, $http, Agenda, AgendaTree) {
|
|
// Bind agenda tree to the scope
|
|
$scope.$watch(function () {
|
|
return Agenda.lastModified();
|
|
}, function () {
|
|
$scope.items = AgendaTree.getTree(Agenda.getAll());
|
|
});
|
|
|
|
// set changed agenda tree
|
|
$scope.treeOptions = {
|
|
dropped: function() {
|
|
$http.put('/rest/agenda/item/tree/', {tree: $scope.items});
|
|
}
|
|
};
|
|
}
|
|
])
|
|
|
|
.controller('AgendaImportCtrl', [
|
|
'$scope',
|
|
'Agenda',
|
|
'Customslide',
|
|
function($scope, Agenda, Customslide) {
|
|
// import from textarea
|
|
$scope.importByLine = function () {
|
|
$scope.items = $scope.itemlist[0].split("\n");
|
|
$scope.importcounter = 0;
|
|
$scope.items.forEach(function(title) {
|
|
var item = {title: title};
|
|
// TODO: create all items in bulk mode
|
|
Customslide.create(item).then(
|
|
function(success) {
|
|
$scope.importcounter++;
|
|
}
|
|
);
|
|
});
|
|
};
|
|
|
|
// import from csv file
|
|
$scope.csv = {
|
|
content: null,
|
|
header: true,
|
|
separator: ',',
|
|
result: null
|
|
};
|
|
$scope.importByCSV = function (result) {
|
|
var obj = JSON.parse(JSON.stringify(result));
|
|
$scope.csvimporting = true;
|
|
$scope.csvlines = Object.keys(obj).length;
|
|
$scope.csvimportcounter = 0;
|
|
for (var i = 0; i < obj.length; i++) {
|
|
var item = {};
|
|
item.title = obj[i].title;
|
|
item.text = obj[i].text;
|
|
// TODO: save also 'duration' in related agenda item
|
|
Customslide.create(item).then(
|
|
function(success) {
|
|
$scope.csvimportcounter++;
|
|
}
|
|
);
|
|
}
|
|
$scope.csvimported = true;
|
|
};
|
|
$scope.clear = function () {
|
|
$scope.csv.result = null;
|
|
};
|
|
}
|
|
]);
|
|
|
|
}());
|