123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // VLCCloudStorageTableViewCell.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 24.05.13.
- // Modified by Carola Nitz on 07.11.13
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCCloudStorageTableViewCell.h"
- @implementation VLCCloudStorageTableViewCell
- + (VLCCloudStorageTableViewCell *)cellWithReuseIdentifier:(NSString *)ident
- {
- NSArray *nibContentArray = [[NSBundle mainBundle] loadNibNamed:@"VLCCloudStorageTableViewCell" owner:nil options:nil];
- NSAssert([nibContentArray count] == 1, @"meh");
- NSAssert([[nibContentArray lastObject] isKindOfClass:[VLCCloudStorageTableViewCell class]], @"meh meh");
- VLCCloudStorageTableViewCell *cell = (VLCCloudStorageTableViewCell *)[nibContentArray lastObject];
- return cell;
- }
- - (void)setFileMetadata:(DBMetadata *)fileMetadata
- {
- if (fileMetadata != _fileMetadata)
- _fileMetadata = fileMetadata;
- [self _updatedDisplayedInformation];
- }
- - (void)setDriveFile:(GTLDriveFile *)driveFile
- {
- if (driveFile != _driveFile)
- _driveFile = driveFile;
- [self _updatedDisplayedInformation];
- }
- - (void)_updatedDisplayedInformation
- {
- if (_fileMetadata != nil) {
- if (self.fileMetadata.isDirectory) {
- self.folderTitleLabel.text = self.fileMetadata.filename;
- self.titleLabel.text = @"";
- self.subtitleLabel.text = @"";
- } else {
- self.titleLabel.text = self.fileMetadata.filename;
- self.subtitleLabel.text = (self.fileMetadata.totalBytes > 0) ? self.fileMetadata.humanReadableSize : @"";
- self.folderTitleLabel.text = @"";
- }
- NSString *iconName = self.fileMetadata.icon;
- if ([iconName isEqualToString:@"folder_user"] || [iconName isEqualToString:@"folder"] || [iconName isEqualToString:@"folder_public"] || [iconName isEqualToString:@"folder_photos"] || [iconName isEqualToString:@"package"]) {
- self.thumbnailView.image = [UIImage imageNamed:@"folder"];
- self.downloadButton.hidden = YES;
- } else if ([iconName isEqualToString:@"page_white"] || [iconName isEqualToString:@"page_white_text"])
- self.thumbnailView.image = [UIImage imageNamed:@"blank"];
- else if ([iconName isEqualToString:@"page_white_film"])
- self.thumbnailView.image = [UIImage imageNamed:@"movie"];
- else
- APLog(@"missing icon for type '%@'", self.fileMetadata.icon);
- } else if(_driveFile != nil){
- BOOL isDirectory = [self.driveFile.mimeType isEqualToString:@"application/vnd.google-apps.folder"];
- if (isDirectory) {
- self.folderTitleLabel.text = self.driveFile.title;
- self.titleLabel.text = @"";
- self.subtitleLabel.text = @"";
- } else {
- self.titleLabel.text = self.driveFile.title;
- self.subtitleLabel.text = (self.driveFile.fileSize > 0) ? [NSByteCountFormatter stringFromByteCount:[self.driveFile.fileSize longLongValue] countStyle:NSByteCountFormatterCountStyleFile]: @"";
- self.folderTitleLabel.text = @"";
- }
- NSString *iconName = self.driveFile.iconLink;
- if ([iconName isEqualToString:@"https://ssl.gstatic.com/docs/doclist/images/icon_11_shared_collection_list.png"] || [iconName isEqualToString:@"https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png"]) {
- self.thumbnailView.image = [UIImage imageNamed:@"folder"];
- } else if ([iconName isEqualToString:@"https://ssl.gstatic.com/docs/doclist/images/icon_10_audio_list.png"]) {
- self.thumbnailView.image = [UIImage imageNamed:@"blank"];
- } else if ([iconName isEqualToString:@"https://ssl.gstatic.com/docs/doclist/images/icon_11_video_list.png"]) {
- self.thumbnailView.image = [UIImage imageNamed:@"movie"];
- } else {
- self.thumbnailView.image = [UIImage imageNamed:@"blank"];
- APLog(@"missing icon for type '%@'", self.driveFile.iconLink);
- }
- }
- self.downloadButton.hidden = NO;
- [self setNeedsDisplay];
- }
- - (IBAction)triggerDownload:(id)sender
- {
- if ([self.delegate respondsToSelector:@selector(triggerDownloadForCell:)])
- [self.delegate triggerDownloadForCell:self];
- }
- + (CGFloat)heightOfCell
- {
- if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
- return 80.;
- return 48.;
- }
- @end
|