summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/views/accounts')
-rw-r--r--module/web/static/js/views/accounts/accountListView.js46
-rw-r--r--module/web/static/js/views/accounts/accountModal.js69
-rw-r--r--module/web/static/js/views/accounts/accountView.js24
3 files changed, 0 insertions, 139 deletions
diff --git a/module/web/static/js/views/accounts/accountListView.js b/module/web/static/js/views/accounts/accountListView.js
deleted file mode 100644
index 68dffaa98..000000000
--- a/module/web/static/js/views/accounts/accountListView.js
+++ /dev/null
@@ -1,46 +0,0 @@
-define(['jquery', 'underscore', 'backbone', 'app', 'collections/AccountList', './accountView'],
- function($, _, Backbone, App, AccountList, accountView) {
-
- // Renders settings over view page
- return Backbone.View.extend({
-
- el: "body",
-
- events: {
- 'click .btn-add': 'addAccount'
- },
-
- content: null,
- accounts: null,
- modal: null,
-
- initialize: function() {
- this.content = this.$('#account-content');
- this.accounts = new AccountList();
- this.refresh();
- },
-
- refresh: function() {
- this.accounts.fetch({success: _.bind(this.render, this)});
- },
-
- render: function() {
- var self = this;
- App.vent.trigger('accounts:destroyContent');
- // TODO trs cant' be animated
- this.accounts.each(function(account) {
- self.content.appendWithHeight(new accountView({model: account}).render().el);
- });
- },
-
- addAccount: function() {
- var self = this;
- _.requireOnce(['views/accounts/accountModal'], function(Modal) {
- if (self.modal === null)
- self.modal = new Modal();
-
- self.modal.show();
- });
- }
- });
- }); \ No newline at end of file
diff --git a/module/web/static/js/views/accounts/accountModal.js b/module/web/static/js/views/accounts/accountModal.js
deleted file mode 100644
index 755ffd510..000000000
--- a/module/web/static/js/views/accounts/accountModal.js
+++ /dev/null
@@ -1,69 +0,0 @@
-define(['jquery', 'underscore', 'app', 'views/abstract/modalView', 'text!tpl/default/accountDialog.html', 'select2'],
- function($, _, App, modalView, template) {
- return modalView.extend({
-
- events: {
- 'click .btn-add': 'add'
- },
- template: _.compile(template),
- plugins: null,
- select: null,
-
- initialize: function() {
- // Inherit parent events
- this.events = _.extend({}, modalView.prototype.events, this.events);
- var self = this;
- $.ajax(App.apiRequest('getAccountTypes', null, {success: function(data) {
- self.plugins = _.sortBy(data, function(item) {
- return item;
- });
- self.render();
- }}));
- },
-
- onRender: function() {
- // TODO: could be a seperate input type if needed on multiple pages
- if (this.plugins)
- this.select = this.$('#pluginSelect').select2({
- escapeMarkup: function(m) {
- return m;
- },
- formatResult: this.format,
- formatSelection: this.format,
- data: {results: this.plugins, text: function(item) {
- return item;
- }},
- id: function(item) {
- return item;
- }
- });
- },
-
- onShow: function() {
- },
-
- onHide: function() {
- },
-
- format: function(data) {
- return '<img class="logo-select" src="icons/' + data + '"> ' + data;
- },
-
- add: function(e) {
- e.stopPropagation();
- if (this.select) {
- var plugin = this.select.val(),
- login = this.$('#login').val(),
- password = this.$('#password').val(),
- self = this;
-
- $.ajax(App.apiRequest('updateAccount', {
- plugin: plugin, login: login, password: password
- }, { success: function() {
- App.accountView.refresh();
- self.hide();
- }}));
- }
- }
- });
- }); \ No newline at end of file
diff --git a/module/web/static/js/views/accounts/accountView.js b/module/web/static/js/views/accounts/accountView.js
deleted file mode 100644
index 7c3d492c3..000000000
--- a/module/web/static/js/views/accounts/accountView.js
+++ /dev/null
@@ -1,24 +0,0 @@
-define(['jquery', 'underscore', 'backbone', 'app', '../abstract/itemView'],
- function($, _, Backbone, App, itemView) {
-
- // Renders settings over view page
- return itemView.extend({
-
- tagName: "tr",
- template: _.compile($('#template-account').html()),
-
- events: {
- 'click .btn-danger': 'deleteItem'
- },
-
- initialize: function() {
- this.listenTo(this.model, 'remove', this.unrender);
- this.listenTo(App.vent, 'accounts:destroyContent', this.destroy);
- },
-
- render: function() {
- this.$el.html(this.template(this.model.toJSON()));
- return this;
- }
- });
- }); \ No newline at end of file