summaryrefslogtreecommitdiff
path: root/frontend/delta/js/Clipperz/PM/DataModel/DirectLoginInput.js
blob: d9995fcb6ac6fd8b15d7106c777330a353b053d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*

Copyright 2008-2013 Clipperz Srl

This file is part of Clipperz, the online password manager.
For further information about its features and functionalities please
refer to http://www.clipperz.com.

* Clipperz is free software: you can redistribute it and/or modify it
  under the terms of the GNU Affero General Public License as published
  by the Free Software Foundation, either version 3 of the License, or 
  (at your option) any later version.

* Clipperz 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 Affero General Public License for more details.

* You should have received a copy of the GNU Affero General Public
  License along with Clipperz. If not, see http://www.gnu.org/licenses/.

*/

if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
if (typeof(Clipperz.PM.DataModel) == 'undefined') { Clipperz.PM.DataModel = {}; }

//#############################################################################

Clipperz.PM.DataModel.DirectLoginInput = function(args) {
	this._args = args;
	
	return this;
}

Clipperz.PM.DataModel.DirectLoginInput.prototype = MochiKit.Base.update(null, {

	'args': function() {
		return this._args;
	},
	
	//-------------------------------------------------------------------------

	'name': function() {
		return this.args()['name'];
	},

	//-------------------------------------------------------------------------

	'type': function() {
		var result;
		
		result = this.args()['type'];
		
		if (result != null) {
			result = result.toLowerCase();
		}
		return result;
	},

	//-------------------------------------------------------------------------

	'options': function() {
		return this.args()['options'];
	},

	//-------------------------------------------------------------------------

	'value': function() {
		return this.args()['value'];
	},
	
	//-------------------------------------------------------------------------
/*	
	'formConfiguration': function(someFormValues, someBindings, someFields) {
		var result;

		if (this.shouldSetValue()) {
			switch (this.type()) {
				case 'select':
					var currentValue;
					var options;
					
//					currentValue = this.directLogin()._configuration['formValues'][this.name()];
					currentValue = someFormValues[this.name()];
					options = this.args()['options'];
					
					result = MochiKit.DOM.SELECT({name:this.name()},
						MochiKit.Base.map(function(anOption) {
							var options;
							
							options = {value:anOption['value']};
							if (currentValue == anOption['value']) {
								options.selected = true;
							}
							
							return MochiKit.DOM.OPTION(options, anOption['label'])
						}, options)
					)
					break;
				case 'checkbox':
					var options;
					
					options = {type:'checkbox', name: this.name()};
//					if (this.directLogin()._configuration['formValues'][this.name()] == true) {
					if (someFormValues[this.name()] == true) {
						options['checked'] = true;
					};

					result = MochiKit.DOM.INPUT(options, null);
					break;
				case 'radio':
					var currentName;
					var currentValue;
					var options;
					
					currentName = this.name();
//					currentValue = this.directLogin()._configuration['formValues'][this.name()];
					currentValue = someFormValues[this.name()];
					options = this.args()['options'];
					
					result = MochiKit.DOM.DIV(null,
						MochiKit.Base.map(function(anOption) {
							var options;
							var isChecked;
							var inputNode;
							var divNode;
							
							options = {type:'radio', name:currentName, value:anOption['value']}
							isChecked = (currentValue == anOption['value']);
							if (isChecked) {
								options.checked = true;
							}

							if (Clipperz_IEisBroken == true) {
								var checkedValue;
								
								checkedValue = (isChecked ? " CHECKED" : "");
								inputNode = MochiKit.DOM.currentDocument().createElement("<INPUT TYPE='RADIO' NAME='" + currentName + "' VALUE='" + anOption['value'] + "'" + checkedValue + ">");
							} else {
								inputNode = MochiKit.DOM.INPUT(options, anOption['value']);
							}
							divNode = MochiKit.DOM.DIV(null, inputNode);
							
							return divNode;
						}, options)
					);
					break;
			}
		} else {
			var binding;
//			binding = this.directLogin().bindings()[this.name()];
			binding = someBindings[this.name()];

			result = MochiKit.DOM.INPUT({
				type:((this.type() != 'password') ? this.type() : 'text'),
				name:this.name(),
//				value:((binding != null)? binding.field().value() : this.value())
				value:((binding != null)? someFields[binding.fieldKey()]['value'] : this.value())
//				value:((binding != null)? someFields[binding.fieldKey()].value() : this.value())
			}, null);
		}

		return result;
	},
*/	
	//-------------------------------------------------------------------------
	
	'needsFormValue': function() {
		var type;
		var result;

		type = this.type();
		result = ((type == 'checkbox') || (type == 'radio') || (type == 'select'));

		return result;
	},

	'needsBinding': function() {
		var type;
		var result;

		type = this.type();
		result = ((type == 'text') || (type == 'password'));

		return result;
	},
	
	//-------------------------------------------------------------------------
	__syntaxFix__: "syntax fix"
});