123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- //
- // XLFormDateCell.m
- // XLForm ( https://github.com/xmartlabs/XLForm )
- //
- // Copyright (c) 2015 Xmartlabs ( http://xmartlabs.com )
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import "XLForm.h"
- #import "XLFormRowDescriptor.h"
- #import "XLFormDateCell.h"
- @interface XLFormDateCell()
- @property (nonatomic) UIDatePicker *datePicker;
- @end
- @implementation XLFormDateCell
- {
- UIColor * _beforeChangeColor;
- NSDateFormatter *_dateFormatter;
- }
- - (UIView *)inputView
- {
- if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDate] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTime] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateTime] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimer]){
- if (self.rowDescriptor.value){
- [self.datePicker setDate:self.rowDescriptor.value animated:[self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimer]];
- }
- [self setModeToDatePicker:self.datePicker];
- return self.datePicker;
- }
- return [super inputView];
- }
- - (BOOL)canBecomeFirstResponder
- {
- return !self.rowDescriptor.isDisabled;
- }
- -(BOOL)becomeFirstResponder
- {
- if (self.isFirstResponder){
- return [super becomeFirstResponder];
- }
- _beforeChangeColor = self.detailTextLabel.textColor;
- BOOL result = [super becomeFirstResponder];
- if (result){
- if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline])
- {
- NSIndexPath * selectedRowPath = [self.formViewController.form indexPathOfFormRow:self.rowDescriptor];
- NSIndexPath * nextRowPath = [NSIndexPath indexPathForRow:(selectedRowPath.row + 1) inSection:selectedRowPath.section];
- XLFormSectionDescriptor * formSection = [self.formViewController.form.formSections objectAtIndex:nextRowPath.section];
- XLFormRowDescriptor * datePickerRowDescriptor = [XLFormRowDescriptor formRowDescriptorWithTag:nil rowType:XLFormRowDescriptorTypeDatePicker];
- XLFormDatePickerCell * datePickerCell = (XLFormDatePickerCell *)[datePickerRowDescriptor cellForFormController:self.formViewController];
- [self setModeToDatePicker:datePickerCell.datePicker];
- if (self.rowDescriptor.value){
- [datePickerCell.datePicker setDate:self.rowDescriptor.value animated:[self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline]];
- }
- NSAssert([datePickerCell conformsToProtocol:@protocol(XLFormInlineRowDescriptorCell)], @"inline cell must conform to XLFormInlineRowDescriptorCell");
- UITableViewCell<XLFormInlineRowDescriptorCell> * inlineCell = (UITableViewCell<XLFormInlineRowDescriptorCell> *)datePickerCell;
- inlineCell.inlineRowDescriptor = self.rowDescriptor;
-
- [formSection addFormRow:datePickerRowDescriptor afterRow:self.rowDescriptor];
- [self.formViewController ensureRowIsVisible:datePickerRowDescriptor];
- }
- }
- return result;
- }
- -(BOOL)resignFirstResponder
- {
- if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline])
- {
- NSIndexPath * selectedRowPath = [self.formViewController.form indexPathOfFormRow:self.rowDescriptor];
- NSIndexPath * nextRowPath = [NSIndexPath indexPathForRow:selectedRowPath.row + 1 inSection:selectedRowPath.section];
- XLFormRowDescriptor * nextFormRow = [self.formViewController.form formRowAtIndex:nextRowPath];
- BOOL result = [super resignFirstResponder];
- if ([nextFormRow.rowType isEqualToString:XLFormRowDescriptorTypeDatePicker]){
- [self.rowDescriptor.sectionDescriptor removeFormRow:nextFormRow];
- }
- return result;
- }
- return [super resignFirstResponder];
- }
- #pragma mark - XLFormDescriptorCell
- -(void)configure
- {
- [super configure];
- self.formDatePickerMode = XLFormDateDatePickerModeGetFromRowDescriptor;
- _dateFormatter = [[NSDateFormatter alloc] init];
- }
- -(void)update
- {
- [super update];
- self.accessoryType = UITableViewCellAccessoryNone;
- self.editingAccessoryType = UITableViewCellAccessoryNone;
- [self.textLabel setText:self.rowDescriptor.title];
- self.selectionStyle = self.rowDescriptor.isDisabled ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleDefault;
- self.textLabel.text = [NSString stringWithFormat:@"%@%@", self.rowDescriptor.title, self.rowDescriptor.required && self.rowDescriptor.sectionDescriptor.formDescriptor.addAsteriskToRequiredRowsTitle ? @"*" : @""];
- self.detailTextLabel.text = [self valueDisplayText];
- }
- -(void)formDescriptorCellDidSelectedWithFormController:(XLFormViewController *)controller
- {
- [self.formViewController.tableView deselectRowAtIndexPath:[controller.form indexPathOfFormRow:self.rowDescriptor] animated:YES];
- }
- -(BOOL)formDescriptorCellCanBecomeFirstResponder
- {
- return [self canBecomeFirstResponder];
- }
- -(BOOL)formDescriptorCellBecomeFirstResponder
- {
- if ([self isFirstResponder]){
- return [self resignFirstResponder];
- }
- return [self becomeFirstResponder];
- }
- -(void)highlight
- {
- [super highlight];
- self.detailTextLabel.textColor = self.tintColor;
- }
- -(void)unhighlight
- {
- [super unhighlight];
- self.detailTextLabel.textColor = _beforeChangeColor;
- }
- #pragma mark - helpers
- -(NSString *)valueDisplayText
- {
- return self.rowDescriptor.value ? [self formattedDate:self.rowDescriptor.value] : self.rowDescriptor.noValueDisplayText;
- }
- - (NSString *)formattedDate:(NSDate *)date
- {
- if (self.rowDescriptor.valueTransformer){
- NSAssert([self.rowDescriptor.valueTransformer isSubclassOfClass:[NSValueTransformer class]], @"valueTransformer is not a subclass of NSValueTransformer");
- NSValueTransformer * valueTransformer = [self.rowDescriptor.valueTransformer new];
- NSString * tranformedValue = [valueTransformer transformedValue:self.rowDescriptor.value];
- if (tranformedValue){
- return tranformedValue;
- }
- }
- if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDate] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateInline]){
- _dateFormatter.dateStyle = NSDateFormatterMediumStyle;
- _dateFormatter.timeStyle = NSDateFormatterNoStyle;
- return [_dateFormatter stringFromDate:date];
- }
- else if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTime] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTimeInline]){
- _dateFormatter.dateStyle = NSDateFormatterNoStyle;
- _dateFormatter.timeStyle = NSDateFormatterShortStyle;
- return [_dateFormatter stringFromDate:date];
- }
- else if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimer] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline]){
- NSCalendar *calendar = [NSCalendar currentCalendar];
- [calendar setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
- NSDateComponents *time = [calendar components:NSCalendarUnitHour | NSCalendarUnitMinute fromDate:date];
- return [NSString stringWithFormat:@"%ld%@ %ldmin", (long)[time hour], (long)[time hour] == 1 ? @"hour" : @"hours", (long)[time minute]];
- }
- _dateFormatter.dateStyle = NSDateFormatterShortStyle;
- _dateFormatter.timeStyle = NSDateFormatterShortStyle;
- return [_dateFormatter stringFromDate:date];
- }
- -(void)setModeToDatePicker:(UIDatePicker *)datePicker
- {
- if ((([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDate]) && self.formDatePickerMode == XLFormDateDatePickerModeGetFromRowDescriptor) || self.formDatePickerMode == XLFormDateDatePickerModeDate){
- datePicker.datePickerMode = UIDatePickerModeDate;
- }
- else if ((([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTime]) && self.formDatePickerMode == XLFormDateDatePickerModeGetFromRowDescriptor) || self.formDatePickerMode == XLFormDateDatePickerModeTime){
- datePicker.datePickerMode = UIDatePickerModeTime;
- }
- else if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimer] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline]){
- datePicker.datePickerMode = UIDatePickerModeCountDownTimer;
- datePicker.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
- }
- else{
- datePicker.datePickerMode = UIDatePickerModeDateAndTime;
- }
-
- if (self.minuteInterval)
- datePicker.minuteInterval = self.minuteInterval;
-
- if (self.minimumDate)
- datePicker.minimumDate = self.minimumDate;
-
- if (self.maximumDate)
- datePicker.maximumDate = self.maximumDate;
-
- if (self.locale) {
- datePicker.locale = self.locale;
- }
- }
- #pragma mark - Properties
- -(UIDatePicker *)datePicker
- {
- if (_datePicker) return _datePicker;
- _datePicker = [[UIDatePicker alloc] init];
- [self setModeToDatePicker:_datePicker];
- [_datePicker addTarget:self action:@selector(datePickerValueChanged:) forControlEvents:UIControlEventValueChanged];
- return _datePicker;
- }
- -(void)setLocale:(NSLocale *)locale
- {
- _locale = locale;
- _dateFormatter.locale = locale;
- }
- #pragma mark - Target Action
- - (void)datePickerValueChanged:(UIDatePicker *)sender
- {
- self.rowDescriptor.value = sender.date;
- [self.formViewController updateFormRow:self.rowDescriptor];
- }
- -(void)setFormDatePickerMode:(XLFormDateDatePickerMode)formDatePickerMode
- {
- _formDatePickerMode = formDatePickerMode;
- if ([self isFirstResponder]){
- if ([self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeDateTimeInline] || [self.rowDescriptor.rowType isEqualToString:XLFormRowDescriptorTypeCountDownTimerInline])
- {
- NSIndexPath * selectedRowPath = [self.formViewController.form indexPathOfFormRow:self.rowDescriptor];
- NSIndexPath * nextRowPath = [NSIndexPath indexPathForRow:selectedRowPath.row + 1 inSection:selectedRowPath.section];
- XLFormRowDescriptor * nextFormRow = [self.formViewController.form formRowAtIndex:nextRowPath];
- if ([nextFormRow.rowType isEqualToString:XLFormRowDescriptorTypeDatePicker]){
- XLFormDatePickerCell * datePickerCell = (XLFormDatePickerCell *)[nextFormRow cellForFormController:self.formViewController];
- [self setModeToDatePicker:datePickerCell.datePicker];
- }
- }
- }
- }
- @end
|