-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFamilyInfoViewController.cs
2090 lines (1732 loc) · 101 KB
/
FamilyInfoViewController.cs
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using UIKit;
using System.IO;
using Foundation;
using Rock.Mobile.PlatformSpecific.iOS.UI;
using CoreGraphics;
using Rock.Mobile.Util.Strings;
using System.Collections.Generic;
using Rock.Mobile.IO;
using FamilyManager.UI;
using iOS;
using CoreAnimation;
using Customization;
using Rock.Mobile.PlatformSpecific.iOS.Graphics;
using Rock.Mobile.Util;
using Rock.Mobile.PlatformSpecific.Util;
using Rock.Mobile.Network;
using System.Net;
using System.Linq;
using Rock.Mobile.Animation;
namespace FamilyManager
{
public class FamilyInfoViewController : UIViewController
{
public class TableSource : UITableViewSource
{
/// <summary>
/// Defines the "button" that displays a large symbol and some text
/// </summary>
public class SymbolButton : UIView
{
UILabel Symbol { get; set; }
UILabel Label { get; set; }
UIButton Button { get; set; }
public SymbolButton( string symbol, UIFont font, string description, UIColor bgColor, UIColor textColor, CGRect bounds, EventHandler onTouch ) : base( )
{
Layer.AnchorPoint = CGPoint.Empty;
Bounds = bounds;
BackgroundColor = bgColor;
Symbol = new UILabel( );
Symbol.Layer.AnchorPoint = CGPoint.Empty;
Symbol.Font = font;
Symbol.TextColor = textColor;
Symbol.Text = symbol;
Symbol.SizeToFit( );
AddSubview( Symbol );
Label = new UILabel( );
Label.Layer.AnchorPoint = CGPoint.Empty;
Label.Font = FontManager.GetFont( Settings.General_LightFont, 16 );
Label.TextColor = textColor;
Label.Text = description;
Label.Bounds = new CGRect( 0, 0, Bounds.Width - 10, 0 );
Label.Lines = 0;
Label.SizeToFit( );
Label.TextAlignment = UITextAlignment.Center;
Label.Bounds = new CGRect( 0, 0, Label.Bounds.Width, Label.Bounds.Height );
AddSubview( Label );
Button = UIButton.FromType( UIButtonType.System );
Button.Layer.AnchorPoint = CGPoint.Empty;
Button.Bounds = Bounds;
AddSubview( Button );
Button.TouchUpInside += onTouch;
Symbol.Layer.Position = new CGPoint( (Bounds.Width - Symbol.Bounds.Width) / 2, 10 );
Label.Layer.Position = new CGPoint( (Bounds.Width - Label.Bounds.Width) / 2, Symbol.Frame.Bottom );
}
}
/// <summary>
/// Defines the top cell that displays all family members
/// </summary>
class PrimaryCell : UITableViewCell
{
public static string Identifier = "PrimaryCell";
public class PersonEntry
{
public static nfloat ImageSize = 90;
public static nfloat PersonEntrySize = 120;
public static nfloat AgeMaskSize = 40;
public UIView View { get; set; }
UIButton Button { get; set; }
public UIImageView ImageView { get; set; }
public UILabel Name { get; set; }
public UILabel Age { get; set; }
public Rock.Client.Person PersonModel { get; set; }
public bool IsChild { get; set; }
public NSData ImageBuffer { get; set; }
CAShapeLayer AgeShapeLayer { get; set; }
EventHandler OnImageDownloaded { get; set; }
public delegate void OnPersonEntryClicked( Rock.Client.Person person, NSData imageBuffer );
public PersonEntry( Rock.Client.Person personModel, bool isChild, OnPersonEntryClicked personClickedDelegate )
{
View = new UIView( );
View.Layer.AnchorPoint = CGPoint.Empty;
View.Layer.CornerRadius = 4;
View.Bounds = new CGRect( 0, 0, PersonEntrySize, PersonEntrySize );
Button = UIButton.FromType( UIButtonType.System );
Button.Layer.AnchorPoint = CGPoint.Empty;
Button.Bounds = View.Bounds;
View.AddSubview( Button );
ImageView = new UIImageView( );
ImageView.Layer.AnchorPoint = CGPoint.Empty;
View.AddSubview( ImageView );
PersonModel = personModel;
IsChild = isChild;
// set the profile image mask so it's circular
CALayer maskLayer = new CALayer();
maskLayer.AnchorPoint = new CGPoint( 0, 0 );
maskLayer.BackgroundColor = UIColor.Black.CGColor;
ImageView.Layer.Mask = maskLayer;
ImageView.BackgroundColor = UIColor.Black;
// we can't position these until we know their length
Name = new UILabel( );
Name.Layer.AnchorPoint = CGPoint.Empty;
Name.Font = FontManager.GetFont( Settings.General_LightFont, Config.Instance.VisualSettings.SmallFontSize );
Name.TextAlignment = UITextAlignment.Center;
View.AddSubview( Name );
// procedurally create the little fancy mask that goes under the age.
AgeShapeLayer = new CAShapeLayer( );
CGPath path = new CGPath( );
// render as a triangle
path.MoveToPoint( 0, 0 );
path.AddLineToPoint( AgeMaskSize, 0 );
path.AddLineToPoint( AgeMaskSize, AgeMaskSize );
path.AddLineToPoint( 0, 0 );
path.CloseSubpath( );
AgeShapeLayer.Path = path;
AgeShapeLayer.FillColor = UIColor.Black.CGColor;
AgeShapeLayer.Position = new CGPoint( View.Bounds.Width - AgeMaskSize, 0 );
AgeShapeLayer.Opacity = .10f;
View.Layer.AddSublayer( AgeShapeLayer );
// setup the age value
Age = new UILabel( );
Age.Layer.AnchorPoint = CGPoint.Empty;
Age.Font = FontManager.GetFont( Settings.General_RegularFont, Config.Instance.VisualSettings.SmallFontSize );
View.AddSubview( Age );
Name.TextColor = Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.EntryTextColor );
Age.TextColor = Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.EntryTextColor );
View.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.EntryBGColor );
Button.TouchUpInside += (object sender, EventArgs e) =>
{
personClickedDelegate( PersonModel, ImageBuffer );
};
}
public void SetInfo( )
{
// set and limit the name width
Name.Text = PersonModel.NickName;
Name.SizeToFit( );
Name.Bounds = new CGRect( 0, 0, View.Bounds.Width, Name.Bounds.Height );
Name.Layer.Position = new CGPoint( ( View.Bounds.Width - Name.Bounds.Width ) / 2, View.Bounds.Height - Name.Bounds.Height );
int personAge = -1;
if ( PersonModel.BirthDate.HasValue )
{
personAge = PersonModel.BirthDate.Value.AsAge( );
}
// set their age.
// if they actually have an age value then great, use that.
if ( personAge != -1 )
{
Age.Text = personAge.ToString( );
}
// otherwise, check their role in the group to at least see if they're an adult or child
else
{
if ( IsChild == true )
{
Age.Text = "C";
}
else
{
Age.Text = "A";
}
}
Age.SizeToFit( );
// position the age "centered" within the age shape layer.
// we add a magic number to get it more centered within the visible triangular area
Age.Layer.Position = new CGPoint( AgeShapeLayer.Position.X + 7 + ( ( AgeMaskSize - Age.Bounds.Width ) / 2 ), 0 );
// set their picture.
// first decide which placeholder image to use. (default to adult male)
string placeholderImageName = string.Empty;
if ( IsChild == false )
{
// default to male in the case of no gender
placeholderImageName = Theme.AdultMaleNoPhotoName;
if ( PersonModel.Gender == Rock.Client.Enums.Gender.Female )
{
placeholderImageName = Theme.AdultFemaleNoPhotoName;
}
}
else
{
// default to male in the case of no gender
placeholderImageName = Theme.ChildMaleNoPhotoName;
if ( PersonModel.Gender == Rock.Client.Enums.Gender.Female )
{
placeholderImageName = Theme.ChildFemaleNoPhotoName;
}
}
// load the placeholder image
MemoryStream imageStream = (MemoryStream)FileCache.Instance.LoadFile( placeholderImageName );
if ( imageStream != null )
{
NSData imageBuffer = NSData.FromArray( imageStream.ToArray( ) );
SetProfilePic( imageBuffer );
}
if ( PersonModel.PhotoId.HasValue && PersonModel.PhotoId.Value > -1 )
{
// don't allow viewing them if we're downloading their image.
Button.Enabled = false;
DownloadProfilePic( PersonModel.PhotoId.Value );
}
}
void DownloadProfilePic( int photoId )
{
uint imageDimensions = (uint)PersonEntry.ImageSize * 2;
RockApi.Get_GetImage( photoId.ToString( ), imageDimensions, imageDimensions, delegate(System.Net.HttpStatusCode statusCode, string statusDescription, MemoryStream imageStream )
{
Rock.Mobile.Threading.Util.PerformOnUIThread( delegate
{
Button.Enabled = true;
// if the image downloaded, use it
if ( Rock.Mobile.Network.Util.StatusInSuccessRange( statusCode ) == true )
{
ImageBuffer = NSData.FromArray( imageStream.ToArray( ) );
SetProfilePic( ImageBuffer );
}
ImageView.SetNeedsDisplay( );
});
} );
}
void SetProfilePic( NSData imageBuffer )
{
ImageView.Image = new UIImage( imageBuffer );
ImageView.Bounds = new CGRect( 0, 0, ImageSize, ImageSize );
nfloat availableHeight = View.Bounds.Height - Name.Frame.Height;
ImageView.Layer.Position = new CGPoint( (View.Bounds.Width - ImageView.Bounds.Width) / 2, (availableHeight - ImageView.Bounds.Height) / 2 );
ImageView.Layer.Mask.Bounds = ImageView.Bounds;
ImageView.Layer.Mask.CornerRadius = ImageView.Layer.Mask.Bounds.Width / 2;
}
}
public List<PersonEntry> Members { get; set; }
UILabel FamilyMembersLabel { get; set; }
UIView Container { get; set; }
TableSource ParentTableSource { get; set; }
SymbolButton AddFamilyMemberIcon { get; set; }
UILabel GuestFamily { get; set; }
Rock.Client.Family Family { get; set; }
public PrimaryCell( UITableViewCellStyle style, string cellIdentifier, TableSource parentTableSource ) : base( style, cellIdentifier )
{
SelectionStyle = UITableViewCellSelectionStyle.None;
ParentTableSource = parentTableSource;
BackgroundColor = UIColor.Clear;
Container = new UIView( );
Container.Layer.AnchorPoint = CGPoint.Empty;
Container.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.BackgroundColor );
AddSubview( Container );
// setup the "Family Members" label (which goes at the top of this primary cell)
FamilyMembersLabel = new UILabel( );
FamilyMembersLabel.Layer.AnchorPoint = CGPoint.Empty;
FamilyMembersLabel.Font = FontManager.GetFont( Settings.General_LightFont, Config.Instance.VisualSettings.MediumFontSize );
FamilyMembersLabel.Text = Strings.FamilyInfo_FamilyMembers;
Theme.StyleLabel( FamilyMembersLabel, Config.Instance.VisualSettings.LabelStyle );
FamilyMembersLabel.SizeToFit( );
// setup the Guest Family label (which goes at the bottom of this primary cell)
GuestFamily = new UILabel( );
GuestFamily.Layer.AnchorPoint = CGPoint.Empty;
GuestFamily.Font = FontManager.GetFont( Settings.General_LightFont, Config.Instance.VisualSettings.MediumFontSize );
GuestFamily.Text = Strings.FamilyInfo_GuestFamilies;
Theme.StyleLabel( GuestFamily, Config.Instance.VisualSettings.LabelStyle );
GuestFamily.SizeToFit( );
AddFamilyMemberIcon = new SymbolButton( "",
Rock.Mobile.PlatformSpecific.iOS.Graphics.FontManager.GetFont( "Bh", 64 ),
Strings.General_AddFamilyMember,
Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.AddFamilyButtonBGColor ),
Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.AddFamilyButtonTextColor ),
new CGRect( 0, 0, PrimaryCell.PersonEntry.PersonEntrySize, PrimaryCell.PersonEntry.PersonEntrySize ),
delegate(object sender, EventArgs e)
{
ParentTableSource.AddMemberToFamily( AddFamilyMemberIcon, Family.Id, Family.Name );
} );
AddFamilyMemberIcon.Layer.CornerRadius = 4;
}
public void SetFamily( Rock.Client.Family family )
{
Family = family;
// remove any current family member from the view hierarchy
if ( Container.Subviews.Length > 0 )
{
foreach ( UIView child in Container.Subviews )
{
child.RemoveFromSuperview( );
}
}
// add the "Family Members" label
AddSubview( FamilyMembersLabel );
// add the Guest label
AddSubview( GuestFamily );
// add our "Add Family Member" button
Container.AddSubview( AddFamilyMemberIcon );
// setup our list
Members = new List<PersonEntry>( family.FamilyMembers.Count );
// for each family member, create a person entry and add them to the cell
foreach ( Rock.Client.GroupMember familyMember in family.FamilyMembers )
{
// create and add the person entry. First see if they're an adult or child
bool isChild = familyMember.GroupRole.Id == Config.Instance.FamilyMemberChildGroupRole.Id ? true : false;
PersonEntry personEntry = new PersonEntry( familyMember.Person, isChild,
delegate(Rock.Client.Person person, NSData imageBuffer )
{
ParentTableSource.EditFamilyMember( familyMember, imageBuffer );
});
Members.Add( personEntry );
// set their name and age
personEntry.SetInfo( );
// add this person to the cell
Container.AddSubview( personEntry.View );
}
}
static int PeoplePerRow = 3;
public void LayoutFamily( CGSize parentSize )
{
nfloat cellWidth = parentSize.Width * .95f;
// determine the spacing between members
nfloat xSpacing = cellWidth - (PersonEntry.PersonEntrySize * PeoplePerRow);
xSpacing /= PeoplePerRow;
nfloat ySpacing = 25;
// seed the row, xPos and yPos with values that allow the loop to run without
// any special logic
nfloat yPos = -(PersonEntry.PersonEntrySize + ySpacing);
nfloat xPos = -1;
nfloat row = -1;
int i;
for( i = 0; i < Members.Count; i++ )
{
// when the row is full, reset X and advance the row
if ( i % PeoplePerRow == 0 )
{
yPos += ySpacing + PersonEntry.PersonEntrySize;
xPos = 0;
row++;
}
Members[ i ].View.Layer.Position = new CGPoint( xPos, yPos );
xPos += PersonEntry.PersonEntrySize + xSpacing;
}
// add the "Add Family Member" button to the bottom.
// if we're starting on a new row, advance the x/y position
if ( i % PeoplePerRow == 0 )
{
yPos += ySpacing + PersonEntry.PersonEntrySize;
xPos = 0;
}
AddFamilyMemberIcon.Layer.Position = new CGPoint( xPos, yPos );
// set the container bounds
Container.Bounds = new CGRect( 0, 0, cellWidth, yPos + PersonEntry.PersonEntrySize + ySpacing );
// set the cell bounds
Bounds = new CGRect( 0, 0, cellWidth, Container.Bounds.Height * 1.10f );
// layout the guest family
FamilyMembersLabel.Layer.Position = new CGPoint( 0, 10 );
// center the container within the cell
Container.Layer.Position = new CGPoint( 0, FamilyMembersLabel.Frame.Bottom + 10 );
// layout the guest family
GuestFamily.Layer.Position = new CGPoint( 0, Container.Frame.Bottom + 15 );
// finally, increase the frame itself to fit GuestFamily
Bounds = new CGRect( 0, 0, cellWidth, GuestFamily.Frame.Bottom );
}
}
/// <summary>
/// Defines the cells that display guest families
/// </summary>
class GuestFamilyCell : UITableViewCell
{
public static string Identifier = "GuestFamilyCell";
public class PersonEntry
{
public static nfloat PersonEntryWidth = 125;
public static nfloat PersonEntryHeight = 50;
public UIButton Button { get; set; }
public UILabel Name { get; set; }
public UILabel AgeLabel { get; set; } //this will be either adult or child
public bool CanCheckin { get; set; }
public int PersonId { get; set; }
// These are the members of the primary family
public List<Rock.Client.GroupMember> PrimaryFamilyMembers { get; set; }
public PersonEntry( string personName, int personId, bool canCheckin, string roleInFamily, List<Rock.Client.GroupMember> primaryFamilyMembers )
{
PrimaryFamilyMembers = primaryFamilyMembers;
PersonId = personId;
CanCheckin = canCheckin;
Button = new UIButton( UIButtonType.System );
Button.Layer.AnchorPoint = CGPoint.Empty;
Button.Layer.CornerRadius = 4;
Button.Bounds = new CGRect( 0, 0, PersonEntryWidth, PersonEntryHeight );
Name = new UILabel( );
Name.Layer.AnchorPoint = CGPoint.Empty;
Name.Text = personName;
Name.SizeToFit( );
Name.TextColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.TextColor );
Button.AddSubview( Name );
AgeLabel = new UILabel( );
AgeLabel.Layer.AnchorPoint = CGPoint.Empty;
AgeLabel.Text = roleInFamily;
AgeLabel.TextColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.TextColor );
AgeLabel.Font = FontManager.GetFont( Settings.General_LightFont, Config.Instance.VisualSettings.SmallFontSize );
AgeLabel.SizeToFit( );
Button.AddSubview( AgeLabel );
nfloat combinedHeight = Name.Layer.Bounds.Height + AgeLabel.Bounds.Height;
nfloat startingY = (PersonEntryHeight - combinedHeight) / 2;
Name.Layer.Position = new CGPoint( (PersonEntryWidth - Name.Bounds.Width) / 2, startingY );
AgeLabel.Layer.Position = new CGPoint( (PersonEntryWidth - AgeLabel.Bounds.Width) / 2, Name.Frame.Bottom );
Button.TouchUpInside += (object sender, EventArgs e) =>
{
Button.Enabled = false;
// are they currently able to check in?
if( CanCheckin == true )
{
// then remove it.
int pendingRemovals = 0;
foreach( Rock.Client.GroupMember member in primaryFamilyMembers )
{
FamilyManagerApi.RemoveKnownRelationship( member.Person.Id, PersonId, Config.Instance.CanCheckInGroupRole.Id, delegate
{
// once we hear back from all the requests, toggle the button
pendingRemovals++;
if( pendingRemovals == primaryFamilyMembers.Count )
{
Button.Enabled = true;
CanCheckin = !CanCheckin;
UpdateBGColor( );
Button.SetNeedsDisplay( );
}
});
}
}
else
{
// simply bind them to the first person
FamilyManagerApi.UpdateKnownRelationship( primaryFamilyMembers[ 0 ].Person.Id, PersonId, Config.Instance.CanCheckInGroupRole.Id, delegate
{
Button.Enabled = true;
CanCheckin = !CanCheckin;
UpdateBGColor( );
Button.SetNeedsDisplay( );
});
}
};
UpdateBGColor( );
}
void UpdateBGColor( )
{
if ( CanCheckin == true )
{
Button.Layer.BorderColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.BorderColor ).CGColor;
Button.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.BackgroundColor );
Button.Layer.BorderWidth = Config.Instance.VisualSettings.PrimaryButtonStyle.BorderWidth;
AgeLabel.TextColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.TextColor );
Name.TextColor = Theme.GetColor( Config.Instance.VisualSettings.PrimaryButtonStyle.TextColor );
}
else
{
Button.Layer.BorderColor = Theme.GetColor( Config.Instance.VisualSettings.DefaultButtonStyle.BorderColor ).CGColor;
Button.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.DefaultButtonStyle.BackgroundColor );
Button.Layer.BorderWidth = Config.Instance.VisualSettings.DefaultButtonStyle.BorderWidth;
AgeLabel.TextColor = Theme.GetColor( Config.Instance.VisualSettings.DefaultButtonStyle.TextColor );
Name.TextColor = Theme.GetColor( Config.Instance.VisualSettings.DefaultButtonStyle.TextColor );
}
}
}
public List<PersonEntry> Members { get; set; }
public UILabel FamilyName { get; set; }
TableSource ParentTableSource { get; set; }
UIButton EditGuestFamilyButton { get; set; }
Rock.Client.GuestFamily GuestFamily { get; set; }
public UIView Container { get; set; }
// This is the primary family for which this GustFamily is a guest of.
public Rock.Client.Family PrimaryFamily { get; set; }
public GuestFamilyCell( UITableViewCellStyle style, string cellIdentifier, TableSource parentTableSource ) : base( style, cellIdentifier )
{
SelectionStyle = UITableViewCellSelectionStyle.None;
ParentTableSource = parentTableSource;
BackgroundColor = UIColor.Clear;
// create the family name
FamilyName = new UILabel( );
FamilyName.Layer.AnchorPoint = CGPoint.Empty;
Theme.StyleLabel( FamilyName, Config.Instance.VisualSettings.LabelStyle );
FamilyName.Font = FontManager.GetFont( Settings.General_BoldFont, Config.Instance.VisualSettings.MediumFontSize );
Container = new UIView( );
Container.Layer.AnchorPoint = CGPoint.Empty;
Container.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.SearchResultStyle.BackgroundColor );
Container.Layer.CornerRadius = 4;
AddSubview( Container );
//AddFamilyIcon = new AddFamilyEntry( parentTableSource );
EditGuestFamilyButton = UIButton.FromType( UIButtonType.System );
EditGuestFamilyButton.Layer.AnchorPoint = CGPoint.Empty;
EditGuestFamilyButton.Font = Rock.Mobile.PlatformSpecific.iOS.Graphics.FontManager.GetFont( "Bh", 64 );
EditGuestFamilyButton.SetTitle( "", UIControlState.Normal );
EditGuestFamilyButton.SetTitleColor( Theme.GetColor( Config.Instance.VisualSettings.LabelStyle.TextColor ), UIControlState.Normal );
EditGuestFamilyButton.Layer.CornerRadius = 4;
EditGuestFamilyButton.TouchUpInside += (object sender, EventArgs e) =>
{
ParentTableSource.EditGuestFamily( GuestFamily.Id );
};
EditGuestFamilyButton.SizeToFit( );
}
public void SetFamily( Rock.Client.Family primaryFamily, Rock.Client.GuestFamily guestFamily )
{
// store a ref to the primary and guest family
PrimaryFamily = primaryFamily;
GuestFamily = guestFamily;
// remove any current family member from the view hierarchy
if ( Container.Subviews.Length > 0 )
{
foreach ( UIView child in Container.Subviews )
{
if ( child as UIButton != null )
{
child.RemoveFromSuperview( );
}
}
}
FamilyName.Text = guestFamily.Name;
FamilyName.SizeToFit( );
// add the family name
Container.AddSubview( FamilyName );
// add our "Add Family Member" button
Container.AddSubview( EditGuestFamilyButton );
// setup our list
Members = new List<PersonEntry>( guestFamily.FamilyMembers.Count );
// for each family member, create a person entry and add them to the cell
foreach ( Rock.Client.GuestFamily.Member familyMember in guestFamily.FamilyMembers )
{
// create and add the person entry
PersonEntry personEntry = new PersonEntry( familyMember.FirstName, familyMember.Id, familyMember.CanCheckin, familyMember.Role, primaryFamily.FamilyMembers );
Members.Add( personEntry );
// add this person to the cell
Container.AddSubview( personEntry.Button );
}
}
static int PeoplePerRow = 3;
static nfloat AddMemberWidth = 60;
public void LayoutFamily( CGSize parentSize )
{
nfloat cellWidth = parentSize.Width * .95f;
// the available row width should be reduced by the width of the edge button
nfloat availRowWidth = cellWidth - AddMemberWidth;
// determine the spacing between members
nfloat xSpacing = availRowWidth - (PersonEntry.PersonEntryWidth * PeoplePerRow);
xSpacing /= PeoplePerRow;
nfloat ySpacing = 25;
FamilyName.Layer.Position = new CGPoint( 10, 10 );
// seed the row, xPos and yPos with values that allow the loop to run without
// any special logic
nfloat yPos = -(PersonEntry.PersonEntryHeight + ySpacing - 10) + FamilyName.Frame.Bottom;
nfloat xPos = -1;
nfloat row = -1;
int i;
for( i = 0; i < Members.Count; i++ )
{
// when the row is full, reset X and advance the row
if ( i % PeoplePerRow == 0 )
{
yPos += ySpacing + PersonEntry.PersonEntryHeight;
xPos = 10;
row++;
}
Members[ i ].Button.Layer.Position = new CGPoint( xPos, yPos );
xPos += PersonEntry.PersonEntryWidth + xSpacing;
}
// now set the add family button
EditGuestFamilyButton.Bounds = new CGRect( 0, 0, AddMemberWidth, AddMemberWidth );
// set the container bounds
Container.Bounds = new CGRect( 0, 0, cellWidth, Members[ i - 1 ].Button.Frame.Bottom + ySpacing );
EditGuestFamilyButton.Layer.Position = new CGPoint( cellWidth - EditGuestFamilyButton.Bounds.Width, (Container.Bounds.Height - AddMemberWidth) / 2 );
// set the cell bounds
Bounds = new CGRect( 0, 0, cellWidth, Container.Bounds.Height * 1.10f );
// center the container within the cell
Container.Layer.Position = new CGPoint( 0, (Bounds.Height - Container.Bounds.Height) / 2 );
}
}
/// <summary>
/// Defines the cells that display guest families
/// </summary>
class FooterCell : UITableViewCell
{
public static string Identifier = "GuestFamilyCell";
public UIView Seperator { get; set; }
TableSource ParentTableSource { get; set; }
public SymbolButton AddGuestFamilyButton { get; set; }
public UIView Container { get; set; }
public FooterCell( UITableViewCellStyle style, string cellIdentifier, TableSource parentTableSource ) : base( style, cellIdentifier )
{
SelectionStyle = UITableViewCellSelectionStyle.None;
BackgroundColor = UIColor.Clear;
ParentTableSource = parentTableSource;
Container = new UIView( );
Container.Layer.AnchorPoint = CGPoint.Empty;
Container.BackgroundColor = Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.BackgroundColor );
Container.Layer.CornerRadius = 4;
AddSubview( Container );
AddGuestFamilyButton = new SymbolButton( "",
Rock.Mobile.PlatformSpecific.iOS.Graphics.FontManager.GetFont( "Bh", 64 ),
Strings.General_AddGuestFamily,
Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.AddFamilyButtonBGColor ),
Theme.GetColor( Config.Instance.VisualSettings.FamilyCellStyle.AddFamilyButtonTextColor ),
new CGRect( 0, 0, PrimaryCell.PersonEntry.PersonEntrySize, PrimaryCell.PersonEntry.PersonEntrySize ),
delegate(object sender, EventArgs e)
{
ParentTableSource.HandleAddGuestFamily( );
} );
AddGuestFamilyButton.Layer.CornerRadius = 4;
Container.AddSubview( AddGuestFamilyButton );
}
public void Layout( CGSize parentSize )
{
nfloat cellWidth = parentSize.Width * .95f;
// set the container bounds
Container.Bounds = new CGRect( 0, 0, cellWidth, AddGuestFamilyButton.Bounds.Height * 1.15f );
// set the "Add Guest Family Button"
AddGuestFamilyButton.Layer.Position = new CGPoint( 0, (Container.Bounds.Height - AddGuestFamilyButton.Bounds.Height) / 2 );
// set the cell bounds
Bounds = new CGRect( 0, 0, cellWidth, Container.Bounds.Height * 1.10f );
// center the container within the cell
Container.Layer.Position = new CGPoint( 0, (Bounds.Height - Container.Bounds.Height) / 2 );
}
}
FamilyInfoViewController Parent { get; set; }
nfloat PrimaryCellHeight { get; set; }
List<nfloat> GuestFamilyCellHeight { get; set; }
nfloat FooterCellHeight { get; set; }
public bool PrimaryCellDirty { get; set; }
/// <summary>
/// Definition for the source table that backs the tableView
/// </summary>
public TableSource ( FamilyInfoViewController parent )
{
Parent = parent;
// create a list for the guest family cell heights, since they're variable
GuestFamilyCellHeight = new List<nfloat>( );
}
public void EditGuestFamily( int guestFamilyId )
{
Parent.EditGuestFamily( guestFamilyId );
}
/// <summary>
/// Called by the "Add Family Member" button in either the primary or Guest Family rows.
/// </summary>
/// <param name="sourceView">Source view.</param>
/// <param name="familyId">Family identifier.</param>
public void AddMemberToFamily( UIView sourceView, int workingFamilyId, string familyLastName )
{
UIAlertController actionSheet = UIAlertController.Create( Strings.FamilyInfo_AddFamilyMemberHeader,
Strings.FamilyInfo_AddFamilyMemberBody,
UIAlertControllerStyle.ActionSheet );
// if the device is a tablet, anchor the menu
actionSheet.PopoverPresentationController.SourceView = sourceView;
actionSheet.PopoverPresentationController.SourceRect = sourceView.Bounds;
UIAlertAction addNewPerson = UIAlertAction.Create( Strings.FamilyInfo_AddNewPerson, UIAlertActionStyle.Default, delegate(UIAlertAction obj )
{
// display
Parent.HandleAddNewPerson( workingFamilyId, familyLastName );
} );
// setup the photo library
UIAlertAction addExistingAction = UIAlertAction.Create( Strings.FamilyInfo_AddExistingPerson, UIAlertActionStyle.Default, delegate(UIAlertAction obj )
{
// launch the search person
Parent.HandleAddExistingPerson( workingFamilyId );
} );
//setup cancel
UIAlertAction cancelAction = UIAlertAction.Create( Strings.General_Cancel, UIAlertActionStyle.Cancel, delegate
{
} );
actionSheet.AddAction( addNewPerson );
actionSheet.AddAction( addExistingAction );
actionSheet.AddAction( cancelAction );
Parent.PresentViewController( actionSheet, true, null );
}
public void EditFamilyMember( Rock.Client.GroupMember familyMember, NSData imageBuffer )
{
Parent.HandleEditFamilyMember( familyMember, imageBuffer );
}
public void HandleAddGuestFamily( )
{
// launch the search person
Parent.HandleAddGuestFamily( );
}
public override nint RowsInSection (UITableView tableview, nint section)
{
// if there are guest families, return all of them,
// plus 1 for the primary, plus 1 more for padding.
return Parent.GuestFamilies.Count + 2;
}
public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
{
tableView.DeselectRow( indexPath, true );
}
public override nfloat GetHeightForRow(UITableView tableView, NSIndexPath indexPath)
{
return CalcRowHeight( tableView, indexPath.Row );
}
public override nfloat EstimatedHeight(UITableView tableView, NSIndexPath indexPath)
{
return CalcRowHeight( tableView, indexPath.Row );
}
nfloat CalcRowHeight( UITableView tableView, int rowIndex )
{
if ( rowIndex == 0 )
{
return PrimaryCellHeight != 0 ? PrimaryCellHeight : tableView.RowHeight;
}
else
{
if ( rowIndex - 1 < GuestFamilyCellHeight.Count )
{
return GuestFamilyCellHeight[ rowIndex - 1 ];
}
else
{
return FooterCellHeight + 50;
}
}
}
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
if ( indexPath.Row == 0 )
{
return GetPrimaryCell( tableView, indexPath.Row );
}
else if ( indexPath.Row - 1 < Parent.GuestFamilies.Count )
{
return GetGuestFamilyCell( tableView, indexPath.Row );
}
else
{
return GetFooterCell( tableView, indexPath.Row );
}
}
UITableViewCell GetPrimaryCell( UITableView tableView, int rowIndex )
{
PrimaryCell cell = tableView.DequeueReusableCell( PrimaryCell.Identifier ) as PrimaryCell;
// if there are no cells to reuse, create a new one
if (cell == null || PrimaryCellDirty == true )
{
PrimaryCellDirty = false;
cell = new PrimaryCell( UITableViewCellStyle.Default, PrimaryCell.Identifier, this );
// setup the members in this family
cell.SetFamily( Parent.Family );
}
cell.LayoutFamily( tableView.Bounds.Size );
PrimaryCellHeight = cell.Bounds.Height;
return cell;
}
UITableViewCell GetGuestFamilyCell( UITableView tableView, int rowIndex )
{
GuestFamilyCell cell = tableView.DequeueReusableCell( GuestFamilyCell.Identifier ) as GuestFamilyCell;
// if there are no cells to reuse, create a new one
if (cell == null)
{
cell = new GuestFamilyCell( UITableViewCellStyle.Default, GuestFamilyCell.Identifier, this );
}
// setup the members in this family
cell.SetFamily( Parent.Family, Parent.GuestFamilies[ rowIndex - 1 ] );
cell.LayoutFamily( tableView.Bounds.Size );
// get the cell height
nfloat cellHeight = cell.Bounds.Height;
// if the row is beyond what we've stored, add it.
if ( rowIndex - 1 >= GuestFamilyCellHeight.Count )
{
GuestFamilyCellHeight.Add( cellHeight );
}
else
{
// otherwise replace the existing entry
GuestFamilyCellHeight[ rowIndex - 1 ] = cellHeight;
}
return cell;
}
UITableViewCell GetFooterCell( UITableView tableView, int rowIndex )
{
FooterCell cell = tableView.DequeueReusableCell( FooterCell.Identifier ) as FooterCell;
// if there are no cells to reuse, create a new one
if (cell == null)
{
cell = new FooterCell( UITableViewCellStyle.Default, FooterCell.Identifier, this );
}
cell.Layout( tableView.Bounds.Size );
FooterCellHeight = cell.Bounds.Height;
return cell;
}
}
UITableView TableView { get; set; }
public Rock.Client.Family Family { get; protected set; }
Rock.Client.Group FamilyGroupObject;
Rock.Client.GroupLocation FamilyAddress;
List<Rock.Client.GuestFamily> GuestFamilies { get; set; }
ContainerViewController Parent { get; set; }
UIScrollViewWrapper ScrollView { get; set; }
Dynamic_UITextField FamilyName { get; set; }
Dynamic_UIDropDown FamilyCampus { get; set; }
UILabel AddressHeader { get; set; }
UIInsetTextField Street { get; set; }
UIInsetTextField City { get; set; }
UIInsetTextField State { get; set; }
UIInsetTextField PostalCode { get; set; }
UIButton SaveButton { get; set; }
List<IDynamic_UIView> Dynamic_FamilyControls { get; set; }