forked from CodeBeamOrg/CodeBeam.MudBlazor.Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMudCodeInput.razor.cs
More file actions
333 lines (298 loc) · 9.86 KB
/
MudCodeInput.razor.cs
File metadata and controls
333 lines (298 loc) · 9.86 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
using MudBlazor;
using MudBlazor.Extensions;
using MudBlazor.State;
using MudBlazor.Utilities;
namespace MudExtensions
{
/// <summary>
/// Inputs which each input box can contain only one character.
/// </summary>
/// <typeparam name="T"></typeparam>
public partial class MudCodeInput<T> : MudFormComponent<T, string>
{
/// <summary>
/// MudCodeInput constructor.
/// </summary>
public MudCodeInput()
{
using var registerScope = CreateRegisterScope();
_theValue = registerScope.RegisterParameter<T?>(nameof(Value))
.WithParameter(() => Value)
.WithEventCallback(() => ValueChanged)
.WithChangeHandler(OnValueChanged);
_count = registerScope.RegisterParameter<int>(nameof(Count))
.WithParameter(() => Count)
.WithChangeHandler(OnCountChanged);
}
private readonly ParameterState<T?> _theValue;
private readonly ParameterState<int> _count;
private async Task OnValueChanged()
{
await SetValueFromOutside(_theValue.Value);
}
private async Task OnCountChanged()
{
if (_count.Value < 0)
{
await _count.SetValueAsync(0);
}
if (12 < _count.Value)
{
await _count.SetValueAsync(12);
}
}
/// <summary>
/// Protected classes.
/// </summary>
protected string? Classname =>
new CssBuilder($"d-flex gap-{Spacing}")
.AddClass("mud-code-input-inner")
.AddClass(InnerClass)
.Build();
/// <summary>
/// Protected classes.
/// </summary>
protected string? InputClassname =>
new CssBuilder("justify-text-center")
.AddClass("mud-code", Variant != Variant.Text)
.AddClass(InputClass)
.Build();
private List<MudTextFieldExtended<T>> _elementReferences = new();
/// <summary>
/// The CSS classes for each input, seperated by space.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public string? InputClass { get; set; }
/// <summary>
/// The CSS classes for input container div, seperated by space.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public string? InnerClass { get; set; }
/// <summary>
/// The CSS styles for input container div.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public string? InnerStyle { get; set; }
/// <summary>
/// Type of the input element. It should be a valid HTML5 input type.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public InputType InputType { get; set; } = InputType.Text;
/// <summary>
/// The value of the input.
/// </summary>
[Parameter, ParameterState]
[Category(CategoryTypes.FormComponent.Behavior)]
public T? Value { get; set; }
/// <summary>
/// The event fires when value changed.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public EventCallback<T?> ValueChanged { get; set; }
/// <summary>
/// The number of text fields.
/// </summary>
[Parameter, ParameterState]
[Category(CategoryTypes.FormComponent.Behavior)]
public int Count { get; set; }
/// <summary>
/// Determines the spacing between each input.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public int Spacing { get; set; } = 2;
/// <summary>
/// If true disables the component. Default is false.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public bool Disabled { get; set; }
/// <summary>
/// If true removes all interactivity of the component. Default is false.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public bool ReadOnly { get; set; }
/// <summary>
/// Variant of the component.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public Variant Variant { get; set; } = Variant.Text;
/// <summary>
/// Margin of the component that determines component size.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public Margin Margin { get; set; }
bool _skipInputEvent = false;
bool _skipRefocus = false;
private async Task OnInputHandler()
{
if (_skipInputEvent)
{
_skipInputEvent = false;
return;
}
await FocusNext();
}
/// <summary>
/// Protected keydown event.
/// </summary>
/// <param name="arg"></param>
/// <returns></returns>
protected async Task HandleKeyDown(KeyboardEventArgs arg)
{
if (Disabled || ReadOnly)
{
return;
}
if (arg.Key == "Backspace" || arg.Key == "ArrowLeft" || arg.Key == "Delete")
{
_skipInputEvent = true;
_skipRefocus = true;
if (arg.Key == "Delete")
{
await _elementReferences[_lastFocusedIndex].Clear();
_skipInputEvent = false;
}
if (RuntimeLocation.IsClientSide)
{
await Task.Delay(10);
}
await FocusPrevious();
return;
}
if (arg.Key == "ArrowRight")
{
if (RuntimeLocation.IsClientSide)
{
await Task.Delay(10);
}
await FocusNext();
}
}
private int _lastFocusedIndex = 0;
/// <summary>
///
/// </summary>
/// <param name="count"></param>
protected async Task CheckFocus(int count)
{
_lastFocusedIndex = count;
if (_skipRefocus == true)
{
_skipRefocus = false;
return;
}
string str = ConvertSet(_theValue.Value) ?? string.Empty;
await _elementReferences[str.Length].FocusAsync();
}
/// <summary>
/// Focuses next input box.
/// </summary>
/// <returns></returns>
public async Task FocusNext()
{
if (_lastFocusedIndex >= _count.Value - 1)
{
await _elementReferences[_lastFocusedIndex].BlurAsync();
await _elementReferences[_lastFocusedIndex].FocusAsync();
return;
}
await _elementReferences[_lastFocusedIndex + 1].FocusAsync();
}
/// <summary>
/// Focuses previous input box.
/// </summary>
/// <returns></returns>
public async Task FocusPrevious()
{
if (_lastFocusedIndex == 0)
{
await _elementReferences[_lastFocusedIndex].BlurAsync();
await _elementReferences[_lastFocusedIndex].FocusAsync();
return;
}
await _elementReferences[_lastFocusedIndex - 1].FocusAsync();
}
/// <summary>
///
/// </summary>
protected override void OnInitialized()
{
base.OnInitialized();
SyncReferences();
}
private void SyncReferences()
{
_elementReferences.Clear();
for (int i = 0; i < 12; i++)
{
_elementReferences.Add(new MudTextFieldExtended<T>());
}
}
/// <summary>
/// Set value for the input boxes.
/// </summary>
/// <returns></returns>
public async Task SetValue()
{
string result = "";
for (int i = 0; i < _count.Value; i++)
{
var val = _elementReferences[i].GetState(x => x.Value)?.ToString();
if (val == null)
{
continue;
}
result += val;
}
await _theValue.SetValueAsync(base.ConvertGet(result));
}
/// <summary>
/// Call this method to set value programmatically.
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public async Task SetValueFromOutside(T? value)
{
string? val = ConvertSet(value);
if (_count.Value < val?.Length)
{
val = val.Substring(0, _count.Value);
}
await _theValue.SetValueAsync(base.ConvertGet(val));
for (int i = 0; i < _count.Value; i++)
{
if (i < val?.Length)
{
await _elementReferences[i].SetText(val[i].ToString());
}
else
{
await _elementReferences[i].SetText(string.Empty);
}
}
}
/// <summary>
///
/// </summary>
/// <returns></returns>
protected override IConverter<T?, string?> GetDefaultConverter()
{
return new DefaultConverter<T>
{
Culture = GetCulture,
Format = GetFormat
};
}
}
}