MTContactsHomeViewModel.m 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // MTContactsHomeViewModel.m
  3. //
  4. // Created by Simon on 2019/8/16.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTContactsHomeViewModel.h"
  8. @implementation MTContactsHomeViewModel
  9. -(NSArray *)listArray{
  10. if (!_listArray) {
  11. _listArray = [NSArray array];
  12. }
  13. return _listArray;
  14. }
  15. - (RACCommand *)command {
  16. if (!_command) {
  17. _command = [[RACCommand alloc] initWithSignalBlock:^RACSignal * _Nonnull(id _Nullable input) {
  18. return [RACSignal createSignal:^RACDisposable * _Nullable(id<RACSubscriber> _Nonnull subscriber) {
  19. [MTHttpTool httpRequest:HttpRequestTypeOfPOST url:HTTP_SEVER_APPEND(@"") para:input success:^(MTBaseModel *baseModel) {
  20. [baseModel clarifyResultWithSuccess:^{
  21. [subscriber sendNext:baseModel.data];
  22. } failed:^(NSInteger code) {
  23. ShowMessage(baseModel.msg);
  24. }];
  25. [subscriber sendCompleted];
  26. } failure:^(NSError *error) {
  27. ShowMessage(@"网络链接失败");
  28. [subscriber sendCompleted];
  29. }];
  30. return nil;
  31. }];
  32. }];
  33. }
  34. return _command;
  35. }
  36. - (RACSubject *)subject {
  37. if (!_subject) {
  38. _subject = [RACSubject subject];
  39. }
  40. return _subject;
  41. }
  42. @end