mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Video editor fixes
This commit is contained in:
parent
81906381aa
commit
4c3eb63583
@ -5516,3 +5516,6 @@ Any member of this group will be able to see messages in the channel.";
|
|||||||
|
|
||||||
"Media.SendingOptionsTooltip" = "Hold this button to send your message with a self-destruct timer.";
|
"Media.SendingOptionsTooltip" = "Hold this button to send your message with a self-destruct timer.";
|
||||||
"Media.SendWithTimer" = "Send With Timer";
|
"Media.SendWithTimer" = "Send With Timer";
|
||||||
|
|
||||||
|
"Conversation.Timer.Title" = "Send With Timer";
|
||||||
|
"Conversation.Timer.Send" = "Send With Timer";
|
||||||
|
@ -1365,6 +1365,38 @@ static CGPoint TGCameraControllerClampPointToScreenSize(__unused id self, __unus
|
|||||||
[strongSelf _dismissTransitionForResultController:strongController];
|
[strongSelf _dismissTransitionForResultController:strongController];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
controller.sendWithTimer = ^{
|
||||||
|
__strong TGCameraController *strongSelf = weakSelf;
|
||||||
|
if (strongSelf == nil)
|
||||||
|
return;
|
||||||
|
|
||||||
|
strongSelf.presentTimerController(^(int32_t time) {
|
||||||
|
__strong TGCameraController *strongSelf = weakSelf;
|
||||||
|
__strong TGMediaPickerGalleryModel *strongModel = weakModel;
|
||||||
|
|
||||||
|
if (strongSelf == nil || strongModel == nil)
|
||||||
|
return;
|
||||||
|
|
||||||
|
__strong TGModernGalleryController *strongController = weakGalleryController;
|
||||||
|
if (strongController == nil)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if ([item isKindOfClass:[TGMediaPickerGalleryVideoItem class]])
|
||||||
|
{
|
||||||
|
TGMediaPickerGalleryVideoItemView *itemView = (TGMediaPickerGalleryVideoItemView *)[strongController itemViewForItem:item];
|
||||||
|
[itemView stop];
|
||||||
|
[itemView setPlayButtonHidden:true animated:true];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strongSelf->_selectionContext.allowGrouping)
|
||||||
|
[[NSUserDefaults standardUserDefaults] setObject:@(!strongSelf->_selectionContext.grouping) forKey:@"TG_mediaGroupingDisabled_v0"];
|
||||||
|
|
||||||
|
if (strongSelf.finishedWithResults != nil)
|
||||||
|
strongSelf.finishedWithResults(strongController, strongSelf->_selectionContext, strongSelf->_editingContext, item.asset, false, time);
|
||||||
|
|
||||||
|
[strongSelf _dismissTransitionForResultController:strongController];
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
id<LegacyComponentsOverlayWindowManager> windowManager = nil;
|
id<LegacyComponentsOverlayWindowManager> windowManager = nil;
|
||||||
id<LegacyComponentsContext> windowContext = nil;
|
id<LegacyComponentsContext> windowContext = nil;
|
||||||
|
@ -131,14 +131,14 @@ const CGFloat TGMediaGroupCellHeight = 86.0f;
|
|||||||
}
|
}
|
||||||
|
|
||||||
_nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(96, 24, 0, 0)];
|
_nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(96, 24, 0, 0)];
|
||||||
_nameLabel.backgroundColor = [UIColor whiteColor];
|
_nameLabel.backgroundColor = [UIColor clearColor];
|
||||||
_nameLabel.contentMode = UIViewContentModeLeft;
|
_nameLabel.contentMode = UIViewContentModeLeft;
|
||||||
_nameLabel.font = TGSystemFontOfSize(17);
|
_nameLabel.font = TGSystemFontOfSize(17);
|
||||||
_nameLabel.textColor = [UIColor blackColor];
|
_nameLabel.textColor = [UIColor blackColor];
|
||||||
[self.contentView addSubview:_nameLabel];
|
[self.contentView addSubview:_nameLabel];
|
||||||
|
|
||||||
_countLabel = [[UILabel alloc] initWithFrame:CGRectMake(96, 49, 0, 0)];
|
_countLabel = [[UILabel alloc] initWithFrame:CGRectMake(96, 49, 0, 0)];
|
||||||
_countLabel.backgroundColor = [UIColor whiteColor];
|
_countLabel.backgroundColor = [UIColor clearColor];
|
||||||
_countLabel.contentMode = UIViewContentModeLeft;
|
_countLabel.contentMode = UIViewContentModeLeft;
|
||||||
_countLabel.font = TGSystemFontOfSize(13);
|
_countLabel.font = TGSystemFontOfSize(13);
|
||||||
_countLabel.textColor = [UIColor blackColor];
|
_countLabel.textColor = [UIColor blackColor];
|
||||||
@ -162,9 +162,6 @@ const CGFloat TGMediaGroupCellHeight = 86.0f;
|
|||||||
self.backgroundColor = pallete.backgroundColor;
|
self.backgroundColor = pallete.backgroundColor;
|
||||||
self.selectedBackgroundView.backgroundColor = pallete.selectionColor;
|
self.selectedBackgroundView.backgroundColor = pallete.selectionColor;
|
||||||
|
|
||||||
_nameLabel.backgroundColor = self.backgroundColor;
|
|
||||||
_countLabel.backgroundColor = self.backgroundColor;
|
|
||||||
|
|
||||||
_nameLabel.textColor = pallete.textColor;
|
_nameLabel.textColor = pallete.textColor;
|
||||||
_countLabel.textColor = pallete.textColor;
|
_countLabel.textColor = pallete.textColor;
|
||||||
|
|
||||||
|
@ -458,9 +458,7 @@
|
|||||||
if (strongSelf == nil)
|
if (strongSelf == nil)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (tab == TGPhotoEditorTimerTab)
|
[strongSelf tooltipTimerTick];
|
||||||
[strongSelf openTimerSetup];
|
|
||||||
else
|
|
||||||
editorTabPressed(tab);
|
editorTabPressed(tab);
|
||||||
};
|
};
|
||||||
_portraitToolbarView.tabPressed = tabPressed;
|
_portraitToolbarView.tabPressed = tabPressed;
|
||||||
@ -913,7 +911,6 @@
|
|||||||
|
|
||||||
- (bool)shouldDisplayTooltip
|
- (bool)shouldDisplayTooltip
|
||||||
{
|
{
|
||||||
// return true;
|
|
||||||
return ![[[NSUserDefaults standardUserDefaults] objectForKey:@"TG_displayedMediaTimerTooltip_v1"] boolValue];
|
return ![[[NSUserDefaults standardUserDefaults] objectForKey:@"TG_displayedMediaTimerTooltip_v1"] boolValue];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,15 +209,23 @@
|
|||||||
if (strongSelf == nil)
|
if (strongSelf == nil)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
strongSelf.presentScheduleController(^(int32_t time) {
|
strongSelf.presentTimerController(^(int32_t time) {
|
||||||
__strong TGMediaPickerModernGalleryMixin *strongSelf = weakSelf;
|
__strong TGMediaPickerModernGalleryMixin *strongSelf = weakSelf;
|
||||||
if (strongSelf == nil)
|
if (strongSelf == nil)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
strongSelf->_galleryModel.dismiss(true, false);
|
strongSelf->_galleryModel.dismiss(true, false);
|
||||||
|
|
||||||
|
TGMediaEditingContext *editingContext = strongSelf->_editingContext;
|
||||||
|
NSMutableArray *items = [strongSelf->_galleryModel.selectionContext.selectedItems mutableCopy];
|
||||||
|
[items addObject:item.asset];
|
||||||
|
|
||||||
|
for (id<TGMediaEditableItem> editableItem in items) {
|
||||||
|
[editingContext setTimer:@(time) forItem:editableItem];
|
||||||
|
}
|
||||||
|
|
||||||
if (strongSelf.completeWithItem != nil)
|
if (strongSelf.completeWithItem != nil)
|
||||||
strongSelf.completeWithItem(item, false, time);
|
strongSelf.completeWithItem(item, false, 0);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ public enum LegacyAttachmentMenuMediaEditing {
|
|||||||
case file
|
case file
|
||||||
}
|
}
|
||||||
|
|
||||||
public func legacyAttachmentMenu(context: AccountContext, peer: Peer, editMediaOptions: LegacyAttachmentMenuMediaEditing?, saveEditedPhotos: Bool, allowGrouping: Bool, hasSchedule: Bool, canSendPolls: Bool, presentationData: PresentationData, parentController: LegacyController, recentlyUsedInlineBots: [Peer], initialCaption: String, openGallery: @escaping () -> Void, openCamera: @escaping (TGAttachmentCameraView?, TGMenuSheetController?) -> Void, openFileGallery: @escaping () -> Void, openWebSearch: @escaping () -> Void, openMap: @escaping () -> Void, openContacts: @escaping () -> Void, openPoll: @escaping () -> Void, presentSelectionLimitExceeded: @escaping () -> Void, presentCantSendMultipleFiles: @escaping () -> Void, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, sendMessagesWithSignals: @escaping ([Any]?, Bool, Int32) -> Void, selectRecentlyUsedInlineBot: @escaping (Peer) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void, present: @escaping (ViewController, Any?) -> Void) -> TGMenuSheetController {
|
public func legacyAttachmentMenu(context: AccountContext, peer: Peer, editMediaOptions: LegacyAttachmentMenuMediaEditing?, saveEditedPhotos: Bool, allowGrouping: Bool, hasSchedule: Bool, canSendPolls: Bool, presentationData: PresentationData, parentController: LegacyController, recentlyUsedInlineBots: [Peer], initialCaption: String, openGallery: @escaping () -> Void, openCamera: @escaping (TGAttachmentCameraView?, TGMenuSheetController?) -> Void, openFileGallery: @escaping () -> Void, openWebSearch: @escaping () -> Void, openMap: @escaping () -> Void, openContacts: @escaping () -> Void, openPoll: @escaping () -> Void, presentSelectionLimitExceeded: @escaping () -> Void, presentCantSendMultipleFiles: @escaping () -> Void, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, presentTimerPicker: @escaping (@escaping (Int32) -> Void) -> Void, sendMessagesWithSignals: @escaping ([Any]?, Bool, Int32) -> Void, selectRecentlyUsedInlineBot: @escaping (Peer) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void, present: @escaping (ViewController, Any?) -> Void) -> TGMenuSheetController {
|
||||||
let defaultVideoPreset = defaultVideoPresetForContext(context)
|
let defaultVideoPreset = defaultVideoPresetForContext(context)
|
||||||
UserDefaults.standard.set(defaultVideoPreset.rawValue as NSNumber, forKey: "TG_preferredVideoPreset_v0")
|
UserDefaults.standard.set(defaultVideoPreset.rawValue as NSNumber, forKey: "TG_preferredVideoPreset_v0")
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ public func legacyAttachmentMenu(context: AccountContext, peer: Peer, editMediaO
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
carouselItem.presentTimerController = { done in
|
carouselItem.presentTimerController = { done in
|
||||||
presentSchedulePicker { time in
|
presentTimerPicker { time in
|
||||||
done?(time)
|
done?(time)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ public func guessMimeTypeByFileExtension(_ ext: String) -> String {
|
|||||||
return TGMimeTypeMap.mimeType(forExtension: ext) ?? "application/binary"
|
return TGMimeTypeMap.mimeType(forExtension: ext) ?? "application/binary"
|
||||||
}
|
}
|
||||||
|
|
||||||
public func configureLegacyAssetPicker(_ controller: TGMediaAssetsController, context: AccountContext, peer: Peer, captionsEnabled: Bool = true, storeCreatedAssets: Bool = true, showFileTooltip: Bool = false, initialCaption: String, hasSchedule: Bool, presentWebSearch: (() -> Void)?, presentSelectionLimitExceeded: @escaping () -> Void, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void) {
|
public func configureLegacyAssetPicker(_ controller: TGMediaAssetsController, context: AccountContext, peer: Peer, captionsEnabled: Bool = true, storeCreatedAssets: Bool = true, showFileTooltip: Bool = false, initialCaption: String, hasSchedule: Bool, presentWebSearch: (() -> Void)?, presentSelectionLimitExceeded: @escaping () -> Void, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, presentTimerPicker: @escaping (@escaping (Int32) -> Void) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void) {
|
||||||
let isSecretChat = peer.id.namespace == Namespaces.Peer.SecretChat
|
let isSecretChat = peer.id.namespace == Namespaces.Peer.SecretChat
|
||||||
|
|
||||||
let paintStickersContext = LegacyPaintStickersContext(context: context)
|
let paintStickersContext = LegacyPaintStickersContext(context: context)
|
||||||
@ -49,7 +49,7 @@ public func configureLegacyAssetPicker(_ controller: TGMediaAssetsController, co
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
controller.presentTimerController = { done in
|
controller.presentTimerController = { done in
|
||||||
presentSchedulePicker { time in
|
presentTimerPicker { time in
|
||||||
done?(time)
|
done?(time)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -256,21 +256,24 @@ public final class LegacyPaintEntityRenderer: NSObject, TGPhotoPaintEntityRender
|
|||||||
completion(nil)
|
completion(nil)
|
||||||
} else {
|
} else {
|
||||||
let count = Atomic<Int>(value: 1)
|
let count = Atomic<Int>(value: 1)
|
||||||
let images = Atomic<[CIImage]>(value: [])
|
let images = Atomic<[(CIImage, Int)]>(value: [])
|
||||||
let maybeFinalize = {
|
let maybeFinalize = {
|
||||||
let count = count.modify { current -> Int in
|
let count = count.modify { current -> Int in
|
||||||
return current - 1
|
return current - 1
|
||||||
}
|
}
|
||||||
if count == 0 {
|
if count == 0 {
|
||||||
completion(images.with { $0 })
|
let sortedImages = images.with({ $0 }).sorted(by: { $0.1 < $1.1 }).map({ $0.0 })
|
||||||
|
completion(sortedImages)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
var i = 0
|
||||||
for entity in entities {
|
for entity in entities {
|
||||||
let _ = count.modify { current -> Int in
|
let _ = count.modify { current -> Int in
|
||||||
return current + 1
|
return current + 1
|
||||||
}
|
}
|
||||||
entity.image(for: time, completion: { image in
|
entity.image(for: time, completion: { image in
|
||||||
if var image = image {
|
if var image = image {
|
||||||
|
let index = i
|
||||||
var transform = CGAffineTransform(translationX: -image.extent.midX, y: -image.extent.midY)
|
var transform = CGAffineTransform(translationX: -image.extent.midX, y: -image.extent.midY)
|
||||||
image = image.transformed(by: transform)
|
image = image.transformed(by: transform)
|
||||||
|
|
||||||
@ -289,12 +292,13 @@ public final class LegacyPaintEntityRenderer: NSObject, TGPhotoPaintEntityRender
|
|||||||
image = image.transformed(by: transform)
|
image = image.transformed(by: transform)
|
||||||
let _ = images.modify { current in
|
let _ = images.modify { current in
|
||||||
var updated = current
|
var updated = current
|
||||||
updated.append(image)
|
updated.append((image, index))
|
||||||
return updated
|
return updated
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
maybeFinalize()
|
maybeFinalize()
|
||||||
})
|
})
|
||||||
|
i += 1
|
||||||
}
|
}
|
||||||
maybeFinalize()
|
maybeFinalize()
|
||||||
}
|
}
|
||||||
|
@ -15,8 +15,14 @@ public final class SolidRoundedButtonTheme {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum SolidRoundedButtonFont {
|
||||||
|
case bold
|
||||||
|
case regular
|
||||||
|
}
|
||||||
|
|
||||||
public final class SolidRoundedButtonNode: ASDisplayNode {
|
public final class SolidRoundedButtonNode: ASDisplayNode {
|
||||||
private var theme: SolidRoundedButtonTheme
|
private var theme: SolidRoundedButtonTheme
|
||||||
|
private var font: SolidRoundedButtonFont
|
||||||
|
|
||||||
private let buttonBackgroundNode: ASImageNode
|
private let buttonBackgroundNode: ASImageNode
|
||||||
private let buttonGlossNode: SolidRoundedButtonGlossNode
|
private let buttonGlossNode: SolidRoundedButtonGlossNode
|
||||||
@ -47,8 +53,9 @@ public final class SolidRoundedButtonNode: ASDisplayNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public init(title: String? = nil, icon: UIImage? = nil, theme: SolidRoundedButtonTheme, height: CGFloat = 48.0, cornerRadius: CGFloat = 24.0, gloss: Bool = false) {
|
public init(title: String? = nil, icon: UIImage? = nil, theme: SolidRoundedButtonTheme, font: SolidRoundedButtonFont = .bold, height: CGFloat = 48.0, cornerRadius: CGFloat = 24.0, gloss: Bool = false) {
|
||||||
self.theme = theme
|
self.theme = theme
|
||||||
|
self.font = font
|
||||||
self.buttonHeight = height
|
self.buttonHeight = height
|
||||||
self.buttonCornerRadius = cornerRadius
|
self.buttonCornerRadius = cornerRadius
|
||||||
self.title = title
|
self.title = title
|
||||||
@ -117,7 +124,7 @@ public final class SolidRoundedButtonNode: ASDisplayNode {
|
|||||||
|
|
||||||
self.buttonBackgroundNode.image = generateStretchableFilledCircleImage(radius: self.buttonCornerRadius, color: theme.backgroundColor)
|
self.buttonBackgroundNode.image = generateStretchableFilledCircleImage(radius: self.buttonCornerRadius, color: theme.backgroundColor)
|
||||||
self.buttonGlossNode.color = theme.foregroundColor
|
self.buttonGlossNode.color = theme.foregroundColor
|
||||||
self.titleNode.attributedText = NSAttributedString(string: self.title ?? "", font: Font.semibold(17.0), textColor: theme.foregroundColor)
|
self.titleNode.attributedText = NSAttributedString(string: self.title ?? "", font: self.font == .bold ? Font.semibold(17.0) : Font.regular(17.0), textColor: theme.foregroundColor)
|
||||||
self.subtitleNode.attributedText = NSAttributedString(string: self.subtitle ?? "", font: Font.regular(14.0), textColor: theme.foregroundColor)
|
self.subtitleNode.attributedText = NSAttributedString(string: self.subtitle ?? "", font: Font.regular(14.0), textColor: theme.foregroundColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,7 +142,7 @@ public final class SolidRoundedButtonNode: ASDisplayNode {
|
|||||||
transition.updateFrame(node: self.buttonNode, frame: buttonFrame)
|
transition.updateFrame(node: self.buttonNode, frame: buttonFrame)
|
||||||
|
|
||||||
if self.title != self.titleNode.attributedText?.string {
|
if self.title != self.titleNode.attributedText?.string {
|
||||||
self.titleNode.attributedText = NSAttributedString(string: self.title ?? "", font: Font.semibold(17.0), textColor: self.theme.foregroundColor)
|
self.titleNode.attributedText = NSAttributedString(string: self.title ?? "", font: self.font == .bold ? Font.semibold(17.0) : Font.regular(17.0), textColor: self.theme.foregroundColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
let iconSize = self.iconNode.image?.size ?? CGSize()
|
let iconSize = self.iconNode.image?.size ?? CGSize()
|
||||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -6037,7 +6037,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
}
|
}
|
||||||
}, presentSchedulePicker: { [weak self] done in
|
}, presentSchedulePicker: { [weak self] done in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
strongSelf.presentScheduleTimePicker(completion: { [weak self] time in
|
strongSelf.presentScheduleTimePicker(style: .media, completion: { [weak self] time in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
done(time)
|
done(time)
|
||||||
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
||||||
@ -6046,6 +6046,12 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}, presentTimerPicker: { [weak self] done in
|
||||||
|
if let strongSelf = self {
|
||||||
|
strongSelf.presentTimerPicker(style: .media, completion: { time in
|
||||||
|
done(time)
|
||||||
|
})
|
||||||
|
}
|
||||||
}, presentStickers: { [weak self] completion in
|
}, presentStickers: { [weak self] completion in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
let controller = DrawingStickersScreen(context: strongSelf.context, selectSticker: { fileReference, node, rect in
|
let controller = DrawingStickersScreen(context: strongSelf.context, selectSticker: { fileReference, node, rect in
|
||||||
@ -6084,7 +6090,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
strongSelf.present(standardTextAlertController(theme: AlertControllerTheme(presentationData: strongSelf.presentationData), title: nil, text: strongSelf.presentationData.strings.Chat_AttachmentMultipleFilesDisabled, actions: [TextAlertAction(type: .defaultAction, title: strongSelf.presentationData.strings.Common_OK, action: {})]), in: .window(.root))
|
strongSelf.present(standardTextAlertController(theme: AlertControllerTheme(presentationData: strongSelf.presentationData), title: nil, text: strongSelf.presentationData.strings.Chat_AttachmentMultipleFilesDisabled, actions: [TextAlertAction(type: .defaultAction, title: strongSelf.presentationData.strings.Common_OK, action: {})]), in: .window(.root))
|
||||||
}, presentSchedulePicker: { [weak self] done in
|
}, presentSchedulePicker: { [weak self] done in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
strongSelf.presentScheduleTimePicker(completion: { [weak self] time in
|
strongSelf.presentScheduleTimePicker(style: .media, completion: { [weak self] time in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
done(time)
|
done(time)
|
||||||
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
||||||
@ -6093,6 +6099,14 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}, presentTimerPicker: { [weak self] done in
|
||||||
|
if let strongSelf = self {
|
||||||
|
strongSelf.presentTimerPicker(style: .media, completion: { [weak self] time in
|
||||||
|
if let strongSelf = self {
|
||||||
|
done(time)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}, sendMessagesWithSignals: { [weak self] signals, silentPosting, scheduleTime in
|
}, sendMessagesWithSignals: { [weak self] signals, silentPosting, scheduleTime in
|
||||||
if !inputText.string.isEmpty {
|
if !inputText.string.isEmpty {
|
||||||
//strongSelf.clearInputText()
|
//strongSelf.clearInputText()
|
||||||
@ -6286,7 +6300,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
strongSelf.present(standardTextAlertController(theme: AlertControllerTheme(presentationData: strongSelf.presentationData), title: nil, text: text, actions: [TextAlertAction(type: .defaultAction, title: strongSelf.presentationData.strings.Common_OK, action: {})]), in: .window(.root))
|
strongSelf.present(standardTextAlertController(theme: AlertControllerTheme(presentationData: strongSelf.presentationData), title: nil, text: text, actions: [TextAlertAction(type: .defaultAction, title: strongSelf.presentationData.strings.Common_OK, action: {})]), in: .window(.root))
|
||||||
}, presentSchedulePicker: { [weak self] done in
|
}, presentSchedulePicker: { [weak self] done in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
strongSelf.presentScheduleTimePicker(completion: { [weak self] time in
|
strongSelf.presentScheduleTimePicker(style: .media, completion: { [weak self] time in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
done(time)
|
done(time)
|
||||||
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
if !strongSelf.presentationInterfaceState.isScheduledMessages && time != scheduleWhenOnlineTimestamp {
|
||||||
@ -6295,6 +6309,14 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}, presentTimerPicker: { [weak self] done in
|
||||||
|
if let strongSelf = self {
|
||||||
|
strongSelf.presentTimerPicker(style: .media, completion: { [weak self] time in
|
||||||
|
if let strongSelf = self {
|
||||||
|
done(time)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}, presentStickers: { [weak self] completion in
|
}, presentStickers: { [weak self] completion in
|
||||||
if let strongSelf = self {
|
if let strongSelf = self {
|
||||||
let controller = DrawingStickersScreen(context: strongSelf.context, selectSticker: { fileReference, node, rect in
|
let controller = DrawingStickersScreen(context: strongSelf.context, selectSticker: { fileReference, node, rect in
|
||||||
@ -9161,7 +9183,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
navigationController.pushViewController(controller)
|
navigationController.pushViewController(controller)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func presentScheduleTimePicker(selectedTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
private func presentScheduleTimePicker(style: ChatScheduleTimeControllerStyle = .default, selectedTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
||||||
guard case let .peer(peerId) = self.chatLocation else {
|
guard case let .peer(peerId) = self.chatLocation else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -9182,7 +9204,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
} else {
|
} else {
|
||||||
mode = .scheduledMessages(sendWhenOnlineAvailable: sendWhenOnlineAvailable)
|
mode = .scheduledMessages(sendWhenOnlineAvailable: sendWhenOnlineAvailable)
|
||||||
}
|
}
|
||||||
let controller = ChatScheduleTimeController(context: strongSelf.context, peerId: peerId, mode: mode, currentTime: selectedTime, minimalTime: strongSelf.presentationInterfaceState.slowmodeState?.timeout, dismissByTapOutside: dismissByTapOutside, completion: { time in
|
let controller = ChatScheduleTimeController(context: strongSelf.context, peerId: peerId, mode: mode, style: style, currentTime: selectedTime, minimalTime: strongSelf.presentationInterfaceState.slowmodeState?.timeout, dismissByTapOutside: dismissByTapOutside, completion: { time in
|
||||||
completion(time)
|
completion(time)
|
||||||
})
|
})
|
||||||
strongSelf.chatDisplayNode.dismissInput()
|
strongSelf.chatDisplayNode.dismissInput()
|
||||||
@ -9190,6 +9212,17 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private func presentTimerPicker(style: ChatTimerScreenStyle = .default, selectedTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
||||||
|
guard case let .peer(peerId) = self.chatLocation else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let controller = ChatTimerScreen(context: self.context, peerId: peerId, style: style, currentTime: selectedTime, dismissByTapOutside: dismissByTapOutside, completion: { time in
|
||||||
|
completion(time)
|
||||||
|
})
|
||||||
|
self.chatDisplayNode.dismissInput()
|
||||||
|
self.present(controller, in: .window(.root))
|
||||||
|
}
|
||||||
|
|
||||||
private var effectiveNavigationController: NavigationController? {
|
private var effectiveNavigationController: NavigationController? {
|
||||||
if let navigationController = self.navigationController as? NavigationController {
|
if let navigationController = self.navigationController as? NavigationController {
|
||||||
return navigationController
|
return navigationController
|
||||||
|
@ -13,6 +13,11 @@ enum ChatScheduleTimeControllerMode {
|
|||||||
case reminders
|
case reminders
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum ChatScheduleTimeControllerStyle {
|
||||||
|
case `default`
|
||||||
|
case media
|
||||||
|
}
|
||||||
|
|
||||||
final class ChatScheduleTimeController: ViewController {
|
final class ChatScheduleTimeController: ViewController {
|
||||||
private var controllerNode: ChatScheduleTimeControllerNode {
|
private var controllerNode: ChatScheduleTimeControllerNode {
|
||||||
return self.displayNode as! ChatScheduleTimeControllerNode
|
return self.displayNode as! ChatScheduleTimeControllerNode
|
||||||
@ -23,6 +28,7 @@ final class ChatScheduleTimeController: ViewController {
|
|||||||
private let context: AccountContext
|
private let context: AccountContext
|
||||||
private let peerId: PeerId
|
private let peerId: PeerId
|
||||||
private let mode: ChatScheduleTimeControllerMode
|
private let mode: ChatScheduleTimeControllerMode
|
||||||
|
private let style: ChatScheduleTimeControllerStyle
|
||||||
private let currentTime: Int32?
|
private let currentTime: Int32?
|
||||||
private let minimalTime: Int32?
|
private let minimalTime: Int32?
|
||||||
private let dismissByTapOutside: Bool
|
private let dismissByTapOutside: Bool
|
||||||
@ -30,10 +36,11 @@ final class ChatScheduleTimeController: ViewController {
|
|||||||
|
|
||||||
private var presentationDataDisposable: Disposable?
|
private var presentationDataDisposable: Disposable?
|
||||||
|
|
||||||
init(context: AccountContext, peerId: PeerId, mode: ChatScheduleTimeControllerMode, currentTime: Int32? = nil, minimalTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
init(context: AccountContext, peerId: PeerId, mode: ChatScheduleTimeControllerMode, style: ChatScheduleTimeControllerStyle, currentTime: Int32? = nil, minimalTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
||||||
self.context = context
|
self.context = context
|
||||||
self.peerId = peerId
|
self.peerId = peerId
|
||||||
self.mode = mode
|
self.mode = mode
|
||||||
|
self.style = style
|
||||||
self.currentTime = currentTime != scheduleWhenOnlineTimestamp ? currentTime : nil
|
self.currentTime = currentTime != scheduleWhenOnlineTimestamp ? currentTime : nil
|
||||||
self.minimalTime = minimalTime
|
self.minimalTime = minimalTime
|
||||||
self.dismissByTapOutside = dismissByTapOutside
|
self.dismissByTapOutside = dismissByTapOutside
|
||||||
@ -64,7 +71,7 @@ final class ChatScheduleTimeController: ViewController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override public func loadDisplayNode() {
|
override public func loadDisplayNode() {
|
||||||
self.displayNode = ChatScheduleTimeControllerNode(context: self.context, mode: self.mode, currentTime: self.currentTime, minimalTime: self.minimalTime, dismissByTapOutside: self.dismissByTapOutside)
|
self.displayNode = ChatScheduleTimeControllerNode(context: self.context, mode: self.mode, style: self.style, currentTime: self.currentTime, minimalTime: self.minimalTime, dismissByTapOutside: self.dismissByTapOutside)
|
||||||
self.controllerNode.completion = { [weak self] time in
|
self.controllerNode.completion = { [weak self] time in
|
||||||
guard let strongSelf = self else {
|
guard let strongSelf = self else {
|
||||||
return
|
return
|
||||||
|
@ -15,6 +15,7 @@ import PresentationDataUtils
|
|||||||
class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDelegate {
|
class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDelegate {
|
||||||
private let context: AccountContext
|
private let context: AccountContext
|
||||||
private let mode: ChatScheduleTimeControllerMode
|
private let mode: ChatScheduleTimeControllerMode
|
||||||
|
private let controllerStyle: ChatScheduleTimeControllerStyle
|
||||||
private var presentationData: PresentationData
|
private var presentationData: PresentationData
|
||||||
private let dismissByTapOutside: Bool
|
private let dismissByTapOutside: Bool
|
||||||
private let minimalTime: Int32?
|
private let minimalTime: Int32?
|
||||||
@ -22,11 +23,13 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
private let dimNode: ASDisplayNode
|
private let dimNode: ASDisplayNode
|
||||||
private let wrappingScrollNode: ASScrollNode
|
private let wrappingScrollNode: ASScrollNode
|
||||||
private let contentContainerNode: ASDisplayNode
|
private let contentContainerNode: ASDisplayNode
|
||||||
private let contentBackgroundNode: ASImageNode
|
private let effectNode: ASDisplayNode
|
||||||
|
private let backgroundNode: ASDisplayNode
|
||||||
|
private let contentBackgroundNode: ASDisplayNode
|
||||||
private let titleNode: ASTextNode
|
private let titleNode: ASTextNode
|
||||||
private let cancelButton: HighlightableButtonNode
|
private let cancelButton: HighlightableButtonNode
|
||||||
private let doneButton: SolidRoundedButtonNode
|
private let doneButton: SolidRoundedButtonNode
|
||||||
private let onlineButton: HighlightableButtonNode
|
private let onlineButton: SolidRoundedButtonNode
|
||||||
|
|
||||||
private var pickerView: UIDatePicker?
|
private var pickerView: UIDatePicker?
|
||||||
private let dateFormatter: DateFormatter
|
private let dateFormatter: DateFormatter
|
||||||
@ -37,9 +40,10 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
var dismiss: (() -> Void)?
|
var dismiss: (() -> Void)?
|
||||||
var cancel: (() -> Void)?
|
var cancel: (() -> Void)?
|
||||||
|
|
||||||
init(context: AccountContext, mode: ChatScheduleTimeControllerMode, currentTime: Int32?, minimalTime: Int32?, dismissByTapOutside: Bool) {
|
init(context: AccountContext, mode: ChatScheduleTimeControllerMode, style: ChatScheduleTimeControllerStyle, currentTime: Int32?, minimalTime: Int32?, dismissByTapOutside: Bool) {
|
||||||
self.context = context
|
self.context = context
|
||||||
self.mode = mode
|
self.mode = mode
|
||||||
|
self.controllerStyle = style
|
||||||
self.presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
self.presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
||||||
self.dismissByTapOutside = dismissByTapOutside
|
self.dismissByTapOutside = dismissByTapOutside
|
||||||
self.minimalTime = minimalTime
|
self.minimalTime = minimalTime
|
||||||
@ -54,12 +58,40 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
|
|
||||||
self.contentContainerNode = ASDisplayNode()
|
self.contentContainerNode = ASDisplayNode()
|
||||||
self.contentContainerNode.isOpaque = false
|
self.contentContainerNode.isOpaque = false
|
||||||
self.contentContainerNode.clipsToBounds = true
|
|
||||||
|
|
||||||
self.contentBackgroundNode = ASImageNode()
|
self.backgroundNode = ASDisplayNode()
|
||||||
self.contentBackgroundNode.displaysAsynchronously = false
|
self.backgroundNode.clipsToBounds = true
|
||||||
self.contentBackgroundNode.displayWithoutProcessing = true
|
self.backgroundNode.cornerRadius = 16.0
|
||||||
self.contentBackgroundNode.image = generateStretchableFilledCircleImage(radius: 16.0, color: self.presentationData.theme.actionSheet.opaqueItemBackgroundColor)
|
|
||||||
|
let backgroundColor: UIColor
|
||||||
|
let textColor: UIColor
|
||||||
|
let accentColor: UIColor
|
||||||
|
let buttonColor: UIColor
|
||||||
|
let buttonTextColor: UIColor
|
||||||
|
let blurStyle: UIBlurEffect.Style
|
||||||
|
switch style {
|
||||||
|
case .default:
|
||||||
|
backgroundColor = self.presentationData.theme.actionSheet.itemBackgroundColor
|
||||||
|
textColor = self.presentationData.theme.actionSheet.primaryTextColor
|
||||||
|
accentColor = self.presentationData.theme.actionSheet.controlAccentColor
|
||||||
|
buttonColor = self.presentationData.theme.actionSheet.opaqueItemBackgroundColor
|
||||||
|
buttonTextColor = accentColor
|
||||||
|
blurStyle = self.presentationData.theme.actionSheet.backgroundType == .light ? .light : .dark
|
||||||
|
case .media:
|
||||||
|
backgroundColor = UIColor(rgb: 0x1c1c1e)
|
||||||
|
textColor = .white
|
||||||
|
accentColor = self.presentationData.theme.actionSheet.controlAccentColor
|
||||||
|
buttonColor = UIColor(rgb: 0x2b2b2f)
|
||||||
|
buttonTextColor = .white
|
||||||
|
blurStyle = .dark
|
||||||
|
}
|
||||||
|
|
||||||
|
self.effectNode = ASDisplayNode(viewBlock: {
|
||||||
|
return UIVisualEffectView(effect: UIBlurEffect(style: blurStyle))
|
||||||
|
})
|
||||||
|
|
||||||
|
self.contentBackgroundNode = ASDisplayNode()
|
||||||
|
self.contentBackgroundNode.backgroundColor = backgroundColor
|
||||||
|
|
||||||
let title: String
|
let title: String
|
||||||
switch mode {
|
switch mode {
|
||||||
@ -70,15 +102,15 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.titleNode = ASTextNode()
|
self.titleNode = ASTextNode()
|
||||||
self.titleNode.attributedText = NSAttributedString(string: title, font: Font.bold(17.0), textColor: self.presentationData.theme.actionSheet.primaryTextColor)
|
self.titleNode.attributedText = NSAttributedString(string: title, font: Font.bold(17.0), textColor: textColor)
|
||||||
|
|
||||||
self.cancelButton = HighlightableButtonNode()
|
self.cancelButton = HighlightableButtonNode()
|
||||||
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: accentColor, for: .normal)
|
||||||
|
|
||||||
self.doneButton = SolidRoundedButtonNode(theme: SolidRoundedButtonTheme(theme: self.presentationData.theme), height: 52.0, cornerRadius: 11.0, gloss: false)
|
self.doneButton = SolidRoundedButtonNode(theme: SolidRoundedButtonTheme(theme: self.presentationData.theme), height: 52.0, cornerRadius: 11.0, gloss: false)
|
||||||
|
|
||||||
self.onlineButton = HighlightableButtonNode()
|
self.onlineButton = SolidRoundedButtonNode(theme: SolidRoundedButtonTheme(backgroundColor: buttonColor, foregroundColor: buttonTextColor), font: .regular, height: 52.0, cornerRadius: 11.0, gloss: false)
|
||||||
self.onlineButton.setTitle(self.presentationData.strings.Conversation_ScheduleMessage_SendWhenOnline, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
self.onlineButton.title = self.presentationData.strings.Conversation_ScheduleMessage_SendWhenOnline
|
||||||
|
|
||||||
self.dateFormatter = DateFormatter()
|
self.dateFormatter = DateFormatter()
|
||||||
self.dateFormatter.timeStyle = .none
|
self.dateFormatter.timeStyle = .none
|
||||||
@ -96,9 +128,11 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
self.wrappingScrollNode.view.delegate = self
|
self.wrappingScrollNode.view.delegate = self
|
||||||
self.addSubnode(self.wrappingScrollNode)
|
self.addSubnode(self.wrappingScrollNode)
|
||||||
|
|
||||||
self.wrappingScrollNode.addSubnode(self.contentBackgroundNode)
|
self.wrappingScrollNode.addSubnode(self.backgroundNode)
|
||||||
self.wrappingScrollNode.addSubnode(self.contentContainerNode)
|
self.wrappingScrollNode.addSubnode(self.contentContainerNode)
|
||||||
|
|
||||||
|
self.backgroundNode.addSubnode(self.effectNode)
|
||||||
|
self.backgroundNode.addSubnode(self.contentBackgroundNode)
|
||||||
self.contentContainerNode.addSubnode(self.titleNode)
|
self.contentContainerNode.addSubnode(self.titleNode)
|
||||||
self.contentContainerNode.addSubnode(self.cancelButton)
|
self.contentContainerNode.addSubnode(self.cancelButton)
|
||||||
self.contentContainerNode.addSubnode(self.doneButton)
|
self.contentContainerNode.addSubnode(self.doneButton)
|
||||||
@ -119,7 +153,12 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.onlineButton.addTarget(self, action: #selector(self.onlineButtonPressed), forControlEvents: .touchUpInside)
|
self.onlineButton.pressed = { [weak self] in
|
||||||
|
if let strongSelf = self {
|
||||||
|
strongSelf.onlineButton.isUserInteractionEnabled = false
|
||||||
|
strongSelf.completion?(scheduleWhenOnlineTimestamp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
self.setupPickerView(currentTime: currentTime)
|
self.setupPickerView(currentTime: currentTime)
|
||||||
self.updateButtonTitle()
|
self.updateButtonTitle()
|
||||||
@ -132,9 +171,17 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
pickerView.removeFromSuperview()
|
pickerView.removeFromSuperview()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let textColor: UIColor
|
||||||
|
switch self.controllerStyle {
|
||||||
|
case .default:
|
||||||
|
textColor = self.presentationData.theme.actionSheet.primaryTextColor
|
||||||
|
case .media:
|
||||||
|
textColor = UIColor.white
|
||||||
|
}
|
||||||
|
|
||||||
let pickerView = UIDatePicker()
|
let pickerView = UIDatePicker()
|
||||||
pickerView.timeZone = TimeZone(secondsFromGMT: 0)
|
pickerView.timeZone = TimeZone(secondsFromGMT: 0)
|
||||||
pickerView.setValue(self.presentationData.theme.actionSheet.primaryTextColor, forKey: "textColor")
|
pickerView.setValue(textColor, forKey: "textColor")
|
||||||
pickerView.datePickerMode = .countDownTimer
|
pickerView.datePickerMode = .countDownTimer
|
||||||
pickerView.datePickerMode = .dateAndTime
|
pickerView.datePickerMode = .dateAndTime
|
||||||
pickerView.locale = Locale.current
|
pickerView.locale = Locale.current
|
||||||
@ -154,7 +201,15 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
let previousTheme = self.presentationData.theme
|
let previousTheme = self.presentationData.theme
|
||||||
self.presentationData = presentationData
|
self.presentationData = presentationData
|
||||||
|
|
||||||
self.contentBackgroundNode.image = generateStretchableFilledCircleImage(radius: 16.0, color: self.presentationData.theme.actionSheet.opaqueItemBackgroundColor)
|
guard case .default = self.controllerStyle else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if let effectView = self.effectNode.view as? UIVisualEffectView {
|
||||||
|
effectView.effect = UIBlurEffect(style: presentationData.theme.actionSheet.backgroundType == .light ? .light : .dark)
|
||||||
|
}
|
||||||
|
|
||||||
|
self.contentBackgroundNode.backgroundColor = self.presentationData.theme.actionSheet.itemBackgroundColor
|
||||||
self.titleNode.attributedText = NSAttributedString(string: self.titleNode.attributedText?.string ?? "", font: Font.bold(17.0), textColor: self.presentationData.theme.actionSheet.primaryTextColor)
|
self.titleNode.attributedText = NSAttributedString(string: self.titleNode.attributedText?.string ?? "", font: Font.bold(17.0), textColor: self.presentationData.theme.actionSheet.primaryTextColor)
|
||||||
|
|
||||||
if previousTheme !== presentationData.theme, let (layout, navigationBarHeight) = self.containerLayout {
|
if previousTheme !== presentationData.theme, let (layout, navigationBarHeight) = self.containerLayout {
|
||||||
@ -164,7 +219,7 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
|
|
||||||
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
||||||
self.doneButton.updateTheme(SolidRoundedButtonTheme(theme: self.presentationData.theme))
|
self.doneButton.updateTheme(SolidRoundedButtonTheme(theme: self.presentationData.theme))
|
||||||
self.onlineButton.setTitle(self.presentationData.strings.Conversation_ScheduleMessage_SendWhenOnline, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
self.onlineButton.updateTheme(SolidRoundedButtonTheme(backgroundColor: self.presentationData.theme.actionSheet.opaqueItemBackgroundColor, foregroundColor: self.presentationData.theme.actionSheet.controlAccentColor))
|
||||||
}
|
}
|
||||||
|
|
||||||
private func updateMinimumDate(currentTime: Int32? = nil) {
|
private func updateMinimumDate(currentTime: Int32? = nil) {
|
||||||
@ -244,10 +299,6 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
self.cancel?()
|
self.cancel?()
|
||||||
}
|
}
|
||||||
|
|
||||||
@objc func onlineButtonPressed() {
|
|
||||||
self.completion?(scheduleWhenOnlineTimestamp)
|
|
||||||
}
|
|
||||||
|
|
||||||
@objc func dimTapGesture(_ recognizer: UITapGestureRecognizer) {
|
@objc func dimTapGesture(_ recognizer: UITapGestureRecognizer) {
|
||||||
if self.dismissByTapOutside, case .ended = recognizer.state {
|
if self.dismissByTapOutside, case .ended = recognizer.state {
|
||||||
self.cancelButtonPressed()
|
self.cancelButtonPressed()
|
||||||
@ -316,7 +367,7 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
|
|
||||||
var buttonOffset: CGFloat = 0.0
|
var buttonOffset: CGFloat = 0.0
|
||||||
if case .scheduledMessages(true) = self.mode {
|
if case .scheduledMessages(true) = self.mode {
|
||||||
buttonOffset += 60.0
|
buttonOffset += 64.0
|
||||||
}
|
}
|
||||||
|
|
||||||
let bottomInset: CGFloat = 10.0 + cleanInsets.bottom
|
let bottomInset: CGFloat = 10.0 + cleanInsets.bottom
|
||||||
@ -335,7 +386,9 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
if backgroundFrame.minY < contentFrame.minY {
|
if backgroundFrame.minY < contentFrame.minY {
|
||||||
backgroundFrame.origin.y = contentFrame.minY
|
backgroundFrame.origin.y = contentFrame.minY
|
||||||
}
|
}
|
||||||
transition.updateFrame(node: self.contentBackgroundNode, frame: backgroundFrame)
|
transition.updateFrame(node: self.backgroundNode, frame: backgroundFrame)
|
||||||
|
transition.updateFrame(node: self.effectNode, frame: CGRect(origin: CGPoint(), size: backgroundFrame.size))
|
||||||
|
transition.updateFrame(node: self.contentBackgroundNode, frame: CGRect(origin: CGPoint(), size: backgroundFrame.size))
|
||||||
transition.updateFrame(node: self.wrappingScrollNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
transition.updateFrame(node: self.wrappingScrollNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
||||||
transition.updateFrame(node: self.dimNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
transition.updateFrame(node: self.dimNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
||||||
|
|
||||||
@ -348,12 +401,11 @@ class ChatScheduleTimeControllerNode: ViewControllerTracingNode, UIScrollViewDel
|
|||||||
transition.updateFrame(node: self.cancelButton, frame: cancelFrame)
|
transition.updateFrame(node: self.cancelButton, frame: cancelFrame)
|
||||||
|
|
||||||
let buttonInset: CGFloat = 16.0
|
let buttonInset: CGFloat = 16.0
|
||||||
let buttonHeight = self.doneButton.updateLayout(width: contentFrame.width - buttonInset * 2.0, transition: transition)
|
let doneButtonHeight = self.doneButton.updateLayout(width: contentFrame.width - buttonInset * 2.0, transition: transition)
|
||||||
transition.updateFrame(node: self.doneButton, frame: CGRect(x: buttonInset, y: contentHeight - buttonHeight - insets.bottom - 10.0 - buttonOffset, width: contentFrame.width, height: buttonHeight))
|
transition.updateFrame(node: self.doneButton, frame: CGRect(x: buttonInset, y: contentHeight - doneButtonHeight - insets.bottom - 16.0 - buttonOffset, width: contentFrame.width, height: doneButtonHeight))
|
||||||
|
|
||||||
let onlineSize = self.onlineButton.measure(CGSize(width: width, height: titleHeight))
|
let onlineButtonHeight = self.onlineButton.updateLayout(width: contentFrame.width - buttonInset * 2.0, transition: transition)
|
||||||
let onlineFrame = CGRect(origin: CGPoint(x: ceil((contentFrame.width - onlineSize.width) / 2.0), y: contentHeight - 45.0 - insets.bottom), size: onlineSize)
|
transition.updateFrame(node: self.onlineButton, frame: CGRect(x: buttonInset, y: contentHeight - onlineButtonHeight - insets.bottom - 16.0, width: contentFrame.width, height: onlineButtonHeight))
|
||||||
transition.updateFrame(node: self.onlineButton, frame: onlineFrame)
|
|
||||||
|
|
||||||
self.pickerView?.frame = CGRect(origin: CGPoint(x: 0.0, y: 54.0), size: CGSize(width: contentFrame.width, height: pickerHeight))
|
self.pickerView?.frame = CGRect(origin: CGPoint(x: 0.0, y: 54.0), size: CGSize(width: contentFrame.width, height: pickerHeight))
|
||||||
|
|
||||||
|
499
submodules/TelegramUI/Sources/ChatTimerScreen.swift
Normal file
499
submodules/TelegramUI/Sources/ChatTimerScreen.swift
Normal file
@ -0,0 +1,499 @@
|
|||||||
|
import Foundation
|
||||||
|
import UIKit
|
||||||
|
import Display
|
||||||
|
import AsyncDisplayKit
|
||||||
|
import Postbox
|
||||||
|
import TelegramCore
|
||||||
|
import SyncCore
|
||||||
|
import SwiftSignalKit
|
||||||
|
import AccountContext
|
||||||
|
import SolidRoundedButtonNode
|
||||||
|
import TelegramPresentationData
|
||||||
|
import PresentationDataUtils
|
||||||
|
|
||||||
|
enum ChatTimerScreenStyle {
|
||||||
|
case `default`
|
||||||
|
case media
|
||||||
|
}
|
||||||
|
|
||||||
|
final class ChatTimerScreen: ViewController {
|
||||||
|
private var controllerNode: ChatTimerScreenNode {
|
||||||
|
return self.displayNode as! ChatTimerScreenNode
|
||||||
|
}
|
||||||
|
|
||||||
|
private var animatedIn = false
|
||||||
|
|
||||||
|
private let context: AccountContext
|
||||||
|
private let peerId: PeerId
|
||||||
|
private let style: ChatTimerScreenStyle
|
||||||
|
private let currentTime: Int32?
|
||||||
|
private let dismissByTapOutside: Bool
|
||||||
|
private let completion: (Int32) -> Void
|
||||||
|
|
||||||
|
private var presentationDataDisposable: Disposable?
|
||||||
|
|
||||||
|
init(context: AccountContext, peerId: PeerId, style: ChatTimerScreenStyle, currentTime: Int32? = nil, dismissByTapOutside: Bool = true, completion: @escaping (Int32) -> Void) {
|
||||||
|
self.context = context
|
||||||
|
self.peerId = peerId
|
||||||
|
self.style = style
|
||||||
|
self.currentTime = currentTime
|
||||||
|
self.dismissByTapOutside = dismissByTapOutside
|
||||||
|
self.completion = completion
|
||||||
|
|
||||||
|
super.init(navigationBarPresentationData: nil)
|
||||||
|
|
||||||
|
self.statusBar.statusBarStyle = .Ignore
|
||||||
|
|
||||||
|
self.blocksBackgroundWhenInOverlay = true
|
||||||
|
|
||||||
|
self.presentationDataDisposable = (context.sharedContext.presentationData
|
||||||
|
|> deliverOnMainQueue).start(next: { [weak self] presentationData in
|
||||||
|
if let strongSelf = self {
|
||||||
|
strongSelf.controllerNode.updatePresentationData(presentationData)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
self.statusBar.statusBarStyle = .Ignore
|
||||||
|
}
|
||||||
|
|
||||||
|
required init(coder aDecoder: NSCoder) {
|
||||||
|
fatalError("init(coder:) has not been implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
deinit {
|
||||||
|
self.presentationDataDisposable?.dispose()
|
||||||
|
}
|
||||||
|
|
||||||
|
override public func loadDisplayNode() {
|
||||||
|
self.displayNode = ChatTimerScreenNode(context: self.context, style: self.style, currentTime: self.currentTime, dismissByTapOutside: self.dismissByTapOutside)
|
||||||
|
self.controllerNode.completion = { [weak self] time in
|
||||||
|
guard let strongSelf = self else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
strongSelf.completion(time)
|
||||||
|
strongSelf.dismiss()
|
||||||
|
}
|
||||||
|
self.controllerNode.dismiss = { [weak self] in
|
||||||
|
self?.presentingViewController?.dismiss(animated: false, completion: nil)
|
||||||
|
}
|
||||||
|
self.controllerNode.cancel = { [weak self] in
|
||||||
|
self?.dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override public func loadView() {
|
||||||
|
super.loadView()
|
||||||
|
}
|
||||||
|
|
||||||
|
override public func viewDidAppear(_ animated: Bool) {
|
||||||
|
super.viewDidAppear(animated)
|
||||||
|
|
||||||
|
if !self.animatedIn {
|
||||||
|
self.animatedIn = true
|
||||||
|
self.controllerNode.animateIn()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override public func dismiss(completion: (() -> Void)? = nil) {
|
||||||
|
self.controllerNode.animateOut(completion: completion)
|
||||||
|
}
|
||||||
|
|
||||||
|
override public func containerLayoutUpdated(_ layout: ContainerViewLayout, transition: ContainedViewLayoutTransition) {
|
||||||
|
super.containerLayoutUpdated(layout, transition: transition)
|
||||||
|
|
||||||
|
self.controllerNode.containerLayoutUpdated(layout, navigationBarHeight: self.navigationHeight, transition: transition)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class TimerPickerView: UIPickerView {
|
||||||
|
var selectorColor: UIColor? = nil {
|
||||||
|
didSet {
|
||||||
|
for subview in self.subviews {
|
||||||
|
if subview.bounds.height <= 1.0 {
|
||||||
|
subview.backgroundColor = self.selectorColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override func didAddSubview(_ subview: UIView) {
|
||||||
|
super.didAddSubview(subview)
|
||||||
|
|
||||||
|
if let selectorColor = self.selectorColor {
|
||||||
|
if subview.bounds.height <= 1.0 {
|
||||||
|
subview.backgroundColor = selectorColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override func didMoveToWindow() {
|
||||||
|
super.didMoveToWindow()
|
||||||
|
|
||||||
|
if let selectorColor = self.selectorColor {
|
||||||
|
for subview in self.subviews {
|
||||||
|
if subview.bounds.height <= 1.0 {
|
||||||
|
subview.backgroundColor = selectorColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class TimerPickerItemView: UIView {
|
||||||
|
let valueLabel = UILabel()
|
||||||
|
let unitLabel = UILabel()
|
||||||
|
|
||||||
|
var textColor: UIColor? = nil {
|
||||||
|
didSet {
|
||||||
|
self.valueLabel.textColor = self.textColor
|
||||||
|
self.unitLabel.textColor = self.textColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var value: (Int32, String)? {
|
||||||
|
didSet {
|
||||||
|
if let (_, string) = self.value {
|
||||||
|
let components = string.components(separatedBy: " ")
|
||||||
|
if components.count > 1 {
|
||||||
|
self.valueLabel.text = components[0]
|
||||||
|
self.unitLabel.text = components[1]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
self.setNeedsLayout()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override init(frame: CGRect) {
|
||||||
|
self.valueLabel.backgroundColor = nil
|
||||||
|
self.valueLabel.isOpaque = false
|
||||||
|
self.valueLabel.font = Font.regular(24.0)
|
||||||
|
|
||||||
|
self.unitLabel.backgroundColor = nil
|
||||||
|
self.unitLabel.isOpaque = false
|
||||||
|
self.unitLabel.font = Font.medium(16.0)
|
||||||
|
|
||||||
|
super.init(frame: frame)
|
||||||
|
|
||||||
|
self.addSubview(self.valueLabel)
|
||||||
|
self.addSubview(self.unitLabel)
|
||||||
|
}
|
||||||
|
|
||||||
|
required init?(coder: NSCoder) {
|
||||||
|
fatalError("init(coder:) has not been implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
override func layoutSubviews() {
|
||||||
|
super.layoutSubviews()
|
||||||
|
|
||||||
|
self.valueLabel.sizeToFit()
|
||||||
|
self.unitLabel.sizeToFit()
|
||||||
|
|
||||||
|
self.valueLabel.frame = CGRect(origin: CGPoint(x: self.frame.width / 2.0 - 20.0 - self.valueLabel.frame.size.width, y: floor((self.frame.height - self.valueLabel.frame.height) / 2.0)), size: self.valueLabel.frame.size)
|
||||||
|
self.unitLabel.frame = CGRect(origin: CGPoint(x: self.frame.width / 2.0 - 12.0, y: floor((self.frame.height - self.unitLabel.frame.height) / 2.0) + 2.0), size: self.unitLabel.frame.size)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private var timerValues: [Int32] = {
|
||||||
|
var values: [Int32] = []
|
||||||
|
for i in 1 ..< 20 {
|
||||||
|
values.append(Int32(i))
|
||||||
|
}
|
||||||
|
for i in 0 ..< 9 {
|
||||||
|
values.append(Int32(20 + i * 5))
|
||||||
|
}
|
||||||
|
return values
|
||||||
|
}()
|
||||||
|
|
||||||
|
class ChatTimerScreenNode: ViewControllerTracingNode, UIScrollViewDelegate, UIPickerViewDataSource, UIPickerViewDelegate {
|
||||||
|
private let context: AccountContext
|
||||||
|
private let controllerStyle: ChatTimerScreenStyle
|
||||||
|
private var presentationData: PresentationData
|
||||||
|
private let dismissByTapOutside: Bool
|
||||||
|
|
||||||
|
private let dimNode: ASDisplayNode
|
||||||
|
private let wrappingScrollNode: ASScrollNode
|
||||||
|
private let contentContainerNode: ASDisplayNode
|
||||||
|
private let effectNode: ASDisplayNode
|
||||||
|
private let backgroundNode: ASDisplayNode
|
||||||
|
private let contentBackgroundNode: ASDisplayNode
|
||||||
|
private let titleNode: ASTextNode
|
||||||
|
private let textNode: ImmediateTextNode
|
||||||
|
private let cancelButton: HighlightableButtonNode
|
||||||
|
private let doneButton: SolidRoundedButtonNode
|
||||||
|
|
||||||
|
private var pickerView: TimerPickerView?
|
||||||
|
|
||||||
|
private var containerLayout: (ContainerViewLayout, CGFloat)?
|
||||||
|
|
||||||
|
var completion: ((Int32) -> Void)?
|
||||||
|
var dismiss: (() -> Void)?
|
||||||
|
var cancel: (() -> Void)?
|
||||||
|
|
||||||
|
init(context: AccountContext, style: ChatTimerScreenStyle, currentTime: Int32?, dismissByTapOutside: Bool) {
|
||||||
|
self.context = context
|
||||||
|
self.controllerStyle = style
|
||||||
|
self.presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
||||||
|
self.dismissByTapOutside = dismissByTapOutside
|
||||||
|
|
||||||
|
self.wrappingScrollNode = ASScrollNode()
|
||||||
|
self.wrappingScrollNode.view.alwaysBounceVertical = true
|
||||||
|
self.wrappingScrollNode.view.delaysContentTouches = false
|
||||||
|
self.wrappingScrollNode.view.canCancelContentTouches = true
|
||||||
|
|
||||||
|
self.dimNode = ASDisplayNode()
|
||||||
|
self.dimNode.backgroundColor = UIColor(white: 0.0, alpha: 0.5)
|
||||||
|
|
||||||
|
self.contentContainerNode = ASDisplayNode()
|
||||||
|
self.contentContainerNode.isOpaque = false
|
||||||
|
|
||||||
|
self.backgroundNode = ASDisplayNode()
|
||||||
|
self.backgroundNode.clipsToBounds = true
|
||||||
|
self.backgroundNode.cornerRadius = 16.0
|
||||||
|
|
||||||
|
let backgroundColor: UIColor
|
||||||
|
let textColor: UIColor
|
||||||
|
let accentColor: UIColor
|
||||||
|
let blurStyle: UIBlurEffect.Style
|
||||||
|
switch style {
|
||||||
|
case .default:
|
||||||
|
backgroundColor = self.presentationData.theme.actionSheet.itemBackgroundColor
|
||||||
|
textColor = self.presentationData.theme.actionSheet.primaryTextColor
|
||||||
|
accentColor = self.presentationData.theme.actionSheet.controlAccentColor
|
||||||
|
blurStyle = self.presentationData.theme.actionSheet.backgroundType == .light ? .light : .dark
|
||||||
|
case .media:
|
||||||
|
backgroundColor = UIColor(rgb: 0x1c1c1e)
|
||||||
|
textColor = .white
|
||||||
|
accentColor = self.presentationData.theme.actionSheet.controlAccentColor
|
||||||
|
blurStyle = .dark
|
||||||
|
}
|
||||||
|
|
||||||
|
self.effectNode = ASDisplayNode(viewBlock: {
|
||||||
|
return UIVisualEffectView(effect: UIBlurEffect(style: blurStyle))
|
||||||
|
})
|
||||||
|
|
||||||
|
self.contentBackgroundNode = ASDisplayNode()
|
||||||
|
self.contentBackgroundNode.backgroundColor = backgroundColor
|
||||||
|
|
||||||
|
let title = self.presentationData.strings.Conversation_Timer_Title
|
||||||
|
self.titleNode = ASTextNode()
|
||||||
|
self.titleNode.attributedText = NSAttributedString(string: title, font: Font.bold(17.0), textColor: textColor)
|
||||||
|
|
||||||
|
self.textNode = ImmediateTextNode()
|
||||||
|
|
||||||
|
self.cancelButton = HighlightableButtonNode()
|
||||||
|
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: accentColor, for: .normal)
|
||||||
|
|
||||||
|
self.doneButton = SolidRoundedButtonNode(theme: SolidRoundedButtonTheme(theme: self.presentationData.theme), height: 52.0, cornerRadius: 11.0, gloss: false)
|
||||||
|
self.doneButton.title = self.presentationData.strings.Conversation_Timer_Send
|
||||||
|
|
||||||
|
super.init()
|
||||||
|
|
||||||
|
self.backgroundColor = nil
|
||||||
|
self.isOpaque = false
|
||||||
|
|
||||||
|
self.dimNode.view.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(self.dimTapGesture(_:))))
|
||||||
|
self.addSubnode(self.dimNode)
|
||||||
|
|
||||||
|
self.wrappingScrollNode.view.delegate = self
|
||||||
|
self.addSubnode(self.wrappingScrollNode)
|
||||||
|
|
||||||
|
self.wrappingScrollNode.addSubnode(self.backgroundNode)
|
||||||
|
self.wrappingScrollNode.addSubnode(self.contentContainerNode)
|
||||||
|
|
||||||
|
self.backgroundNode.addSubnode(self.effectNode)
|
||||||
|
self.backgroundNode.addSubnode(self.contentBackgroundNode)
|
||||||
|
self.contentContainerNode.addSubnode(self.titleNode)
|
||||||
|
self.contentContainerNode.addSubnode(self.textNode)
|
||||||
|
self.contentContainerNode.addSubnode(self.cancelButton)
|
||||||
|
self.contentContainerNode.addSubnode(self.doneButton)
|
||||||
|
|
||||||
|
self.cancelButton.addTarget(self, action: #selector(self.cancelButtonPressed), forControlEvents: .touchUpInside)
|
||||||
|
self.doneButton.pressed = { [weak self] in
|
||||||
|
if let strongSelf = self, let pickerView = strongSelf.pickerView {
|
||||||
|
strongSelf.doneButton.isUserInteractionEnabled = false
|
||||||
|
strongSelf.completion?(timerValues[pickerView.selectedRow(inComponent: 0)])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
self.setupPickerView(currentTime: currentTime)
|
||||||
|
}
|
||||||
|
|
||||||
|
func setupPickerView(currentTime: Int32? = nil) {
|
||||||
|
if let pickerView = self.pickerView {
|
||||||
|
pickerView.removeFromSuperview()
|
||||||
|
}
|
||||||
|
|
||||||
|
let pickerView = TimerPickerView()
|
||||||
|
pickerView.selectorColor = UIColor(rgb: 0xffffff, alpha: 0.18)
|
||||||
|
pickerView.dataSource = self
|
||||||
|
pickerView.delegate = self
|
||||||
|
|
||||||
|
self.contentContainerNode.view.addSubview(pickerView)
|
||||||
|
self.pickerView = pickerView
|
||||||
|
}
|
||||||
|
|
||||||
|
func numberOfComponents(in pickerView: UIPickerView) -> Int {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
|
||||||
|
return timerValues.count
|
||||||
|
}
|
||||||
|
|
||||||
|
func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView {
|
||||||
|
let value = timerValues[row]
|
||||||
|
let string = timeIntervalString(strings: self.presentationData.strings, value: value)
|
||||||
|
if let view = view as? TimerPickerItemView {
|
||||||
|
view.value = (value, string)
|
||||||
|
return view
|
||||||
|
}
|
||||||
|
|
||||||
|
let view = TimerPickerItemView()
|
||||||
|
view.value = (value, string)
|
||||||
|
view.textColor = .white
|
||||||
|
return view
|
||||||
|
}
|
||||||
|
|
||||||
|
func updatePresentationData(_ presentationData: PresentationData) {
|
||||||
|
let previousTheme = self.presentationData.theme
|
||||||
|
self.presentationData = presentationData
|
||||||
|
|
||||||
|
guard case .default = self.controllerStyle else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if let effectView = self.effectNode.view as? UIVisualEffectView {
|
||||||
|
effectView.effect = UIBlurEffect(style: presentationData.theme.actionSheet.backgroundType == .light ? .light : .dark)
|
||||||
|
}
|
||||||
|
|
||||||
|
self.contentBackgroundNode.backgroundColor = self.presentationData.theme.actionSheet.itemBackgroundColor
|
||||||
|
self.titleNode.attributedText = NSAttributedString(string: self.titleNode.attributedText?.string ?? "", font: Font.bold(17.0), textColor: self.presentationData.theme.actionSheet.primaryTextColor)
|
||||||
|
|
||||||
|
if previousTheme !== presentationData.theme, let (layout, navigationBarHeight) = self.containerLayout {
|
||||||
|
self.setupPickerView()
|
||||||
|
self.containerLayoutUpdated(layout, navigationBarHeight: navigationBarHeight, transition: .immediate)
|
||||||
|
}
|
||||||
|
|
||||||
|
self.cancelButton.setTitle(self.presentationData.strings.Common_Cancel, with: Font.regular(17.0), with: self.presentationData.theme.actionSheet.controlAccentColor, for: .normal)
|
||||||
|
self.doneButton.updateTheme(SolidRoundedButtonTheme(theme: self.presentationData.theme))
|
||||||
|
}
|
||||||
|
|
||||||
|
override func didLoad() {
|
||||||
|
super.didLoad()
|
||||||
|
|
||||||
|
if #available(iOSApplicationExtension 11.0, iOS 11.0, *) {
|
||||||
|
self.wrappingScrollNode.view.contentInsetAdjustmentBehavior = .never
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc func cancelButtonPressed() {
|
||||||
|
self.cancel?()
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc func dimTapGesture(_ recognizer: UITapGestureRecognizer) {
|
||||||
|
if self.dismissByTapOutside, case .ended = recognizer.state {
|
||||||
|
self.cancelButtonPressed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func animateIn() {
|
||||||
|
self.dimNode.layer.animateAlpha(from: 0.0, to: 1.0, duration: 0.4)
|
||||||
|
|
||||||
|
let offset = self.bounds.size.height - self.contentBackgroundNode.frame.minY
|
||||||
|
|
||||||
|
let dimPosition = self.dimNode.layer.position
|
||||||
|
self.dimNode.layer.animatePosition(from: CGPoint(x: dimPosition.x, y: dimPosition.y - offset), to: dimPosition, duration: 0.3, timingFunction: kCAMediaTimingFunctionSpring)
|
||||||
|
self.layer.animateBoundsOriginYAdditive(from: -offset, to: 0.0, duration: 0.3, timingFunction: kCAMediaTimingFunctionSpring)
|
||||||
|
}
|
||||||
|
|
||||||
|
func animateOut(completion: (() -> Void)? = nil) {
|
||||||
|
var dimCompleted = false
|
||||||
|
var offsetCompleted = false
|
||||||
|
|
||||||
|
let internalCompletion: () -> Void = { [weak self] in
|
||||||
|
if let strongSelf = self, dimCompleted && offsetCompleted {
|
||||||
|
strongSelf.dismiss?()
|
||||||
|
}
|
||||||
|
completion?()
|
||||||
|
}
|
||||||
|
|
||||||
|
self.dimNode.layer.animateAlpha(from: 1.0, to: 0.0, duration: 0.3, removeOnCompletion: false, completion: { _ in
|
||||||
|
dimCompleted = true
|
||||||
|
internalCompletion()
|
||||||
|
})
|
||||||
|
|
||||||
|
let offset = self.bounds.size.height - self.contentBackgroundNode.frame.minY
|
||||||
|
let dimPosition = self.dimNode.layer.position
|
||||||
|
self.dimNode.layer.animatePosition(from: dimPosition, to: CGPoint(x: dimPosition.x, y: dimPosition.y - offset), duration: 0.3, timingFunction: kCAMediaTimingFunctionSpring, removeOnCompletion: false)
|
||||||
|
self.layer.animateBoundsOriginYAdditive(from: 0.0, to: -offset, duration: 0.3, timingFunction: kCAMediaTimingFunctionSpring, removeOnCompletion: false, completion: { _ in
|
||||||
|
offsetCompleted = true
|
||||||
|
internalCompletion()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
|
||||||
|
if self.bounds.contains(point) {
|
||||||
|
if !self.contentBackgroundNode.bounds.contains(self.convert(point, to: self.contentBackgroundNode)) {
|
||||||
|
return self.dimNode.view
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.hitTest(point, with: event)
|
||||||
|
}
|
||||||
|
|
||||||
|
func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
|
||||||
|
let contentOffset = scrollView.contentOffset
|
||||||
|
let additionalTopHeight = max(0.0, -contentOffset.y)
|
||||||
|
|
||||||
|
if additionalTopHeight >= 30.0 {
|
||||||
|
self.cancelButtonPressed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func containerLayoutUpdated(_ layout: ContainerViewLayout, navigationBarHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
||||||
|
self.containerLayout = (layout, navigationBarHeight)
|
||||||
|
|
||||||
|
var insets = layout.insets(options: [.statusBar, .input])
|
||||||
|
let cleanInsets = layout.insets(options: [.statusBar])
|
||||||
|
insets.top = max(10.0, insets.top)
|
||||||
|
|
||||||
|
let buttonOffset: CGFloat = 0.0
|
||||||
|
let bottomInset: CGFloat = 10.0 + cleanInsets.bottom
|
||||||
|
let titleHeight: CGFloat = 54.0
|
||||||
|
var contentHeight = titleHeight + bottomInset + 52.0 + 17.0
|
||||||
|
let pickerHeight: CGFloat = min(216.0, layout.size.height - contentHeight)
|
||||||
|
contentHeight = titleHeight + bottomInset + 52.0 + 17.0 + pickerHeight + buttonOffset
|
||||||
|
|
||||||
|
let width = horizontalContainerFillingSizeForLayout(layout: layout, sideInset: layout.safeInsets.left)
|
||||||
|
|
||||||
|
let sideInset = floor((layout.size.width - width) / 2.0)
|
||||||
|
let contentContainerFrame = CGRect(origin: CGPoint(x: sideInset, y: layout.size.height - contentHeight), size: CGSize(width: width, height: contentHeight))
|
||||||
|
let contentFrame = contentContainerFrame
|
||||||
|
|
||||||
|
var backgroundFrame = CGRect(origin: CGPoint(x: contentFrame.minX, y: contentFrame.minY), size: CGSize(width: contentFrame.width, height: contentFrame.height + 2000.0))
|
||||||
|
if backgroundFrame.minY < contentFrame.minY {
|
||||||
|
backgroundFrame.origin.y = contentFrame.minY
|
||||||
|
}
|
||||||
|
transition.updateFrame(node: self.backgroundNode, frame: backgroundFrame)
|
||||||
|
transition.updateFrame(node: self.effectNode, frame: CGRect(origin: CGPoint(), size: backgroundFrame.size))
|
||||||
|
transition.updateFrame(node: self.contentBackgroundNode, frame: CGRect(origin: CGPoint(), size: backgroundFrame.size))
|
||||||
|
transition.updateFrame(node: self.wrappingScrollNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
||||||
|
transition.updateFrame(node: self.dimNode, frame: CGRect(origin: CGPoint(), size: layout.size))
|
||||||
|
|
||||||
|
let titleSize = self.titleNode.measure(CGSize(width: width, height: titleHeight))
|
||||||
|
let titleFrame = CGRect(origin: CGPoint(x: floor((contentFrame.width - titleSize.width) / 2.0), y: 16.0), size: titleSize)
|
||||||
|
transition.updateFrame(node: self.titleNode, frame: titleFrame)
|
||||||
|
|
||||||
|
let cancelSize = self.cancelButton.measure(CGSize(width: width, height: titleHeight))
|
||||||
|
let cancelFrame = CGRect(origin: CGPoint(x: 16.0, y: 16.0), size: cancelSize)
|
||||||
|
transition.updateFrame(node: self.cancelButton, frame: cancelFrame)
|
||||||
|
|
||||||
|
let buttonInset: CGFloat = 16.0
|
||||||
|
let doneButtonHeight = self.doneButton.updateLayout(width: contentFrame.width - buttonInset * 2.0, transition: transition)
|
||||||
|
transition.updateFrame(node: self.doneButton, frame: CGRect(x: buttonInset, y: contentHeight - doneButtonHeight - insets.bottom - 16.0 - buttonOffset, width: contentFrame.width, height: doneButtonHeight))
|
||||||
|
|
||||||
|
self.pickerView?.frame = CGRect(origin: CGPoint(x: 0.0, y: 54.0), size: CGSize(width: contentFrame.width, height: pickerHeight))
|
||||||
|
|
||||||
|
transition.updateFrame(node: self.contentContainerNode, frame: contentContainerFrame)
|
||||||
|
}
|
||||||
|
}
|
@ -20,7 +20,7 @@ import SegmentedControlNode
|
|||||||
private final class DrawingStickersScreenNode: ViewControllerTracingNode {
|
private final class DrawingStickersScreenNode: ViewControllerTracingNode {
|
||||||
private let context: AccountContext
|
private let context: AccountContext
|
||||||
private var presentationData: PresentationData
|
private var presentationData: PresentationData
|
||||||
private let selectSticker: ((FileMediaReference, ASDisplayNode, CGRect) -> Bool)?
|
fileprivate var selectSticker: ((FileMediaReference, ASDisplayNode, CGRect) -> Bool)?
|
||||||
private var searchItemContext = StickerPaneSearchGlobalItemContext()
|
private var searchItemContext = StickerPaneSearchGlobalItemContext()
|
||||||
private let themeAndStringsPromise: Promise<(PresentationTheme, PresentationStrings)>
|
private let themeAndStringsPromise: Promise<(PresentationTheme, PresentationStrings)>
|
||||||
|
|
||||||
@ -384,7 +384,7 @@ private final class DrawingStickersScreenNode: ViewControllerTracingNode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let panelEntries = chatMediaInputPanelEntries(view: view, savedStickers: savedStickers, recentStickers: recentStickers, peerSpecificPack: nil, canInstallPeerSpecificPack: .none, hasUnreadTrending: nil, theme: theme, hasGifs: false)
|
let panelEntries = chatMediaInputPanelEntries(view: view, savedStickers: savedStickers, recentStickers: recentStickers, peerSpecificPack: nil, canInstallPeerSpecificPack: .none, hasUnreadTrending: nil, theme: theme, hasGifs: false)
|
||||||
var gridEntries = chatMediaInputGridEntries(view: view, savedStickers: savedStickers, recentStickers: recentStickers, peerSpecificPack: nil, canInstallPeerSpecificPack: .none, hasSearch: false, strings: strings, theme: theme)
|
let gridEntries = chatMediaInputGridEntries(view: view, savedStickers: savedStickers, recentStickers: recentStickers, peerSpecificPack: nil, canInstallPeerSpecificPack: .none, hasSearch: false, strings: strings, theme: theme)
|
||||||
|
|
||||||
if view.higher == nil {
|
if view.higher == nil {
|
||||||
var hasTopSeparator = true
|
var hasTopSeparator = true
|
||||||
@ -822,6 +822,10 @@ private final class DrawingStickersScreenNode: ViewControllerTracingNode {
|
|||||||
self.layer.animatePosition(from: CGPoint(x: self.layer.position.x, y: self.layer.position.y + self.layer.bounds.size.height), to: self.layer.position, duration: 0.5, timingFunction: kCAMediaTimingFunctionSpring)
|
self.layer.animatePosition(from: CGPoint(x: self.layer.position.x, y: self.layer.position.y + self.layer.bounds.size.height), to: self.layer.position, duration: 0.5, timingFunction: kCAMediaTimingFunctionSpring)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func animateOut() {
|
||||||
|
self.layer.animatePosition(from: self.layer.position, to: CGPoint(x: self.layer.position.x, y: self.layer.position.y + self.layer.bounds.size.height), duration: 0.3, timingFunction: kCAMediaTimingFunctionSpring)
|
||||||
|
}
|
||||||
|
|
||||||
func containerLayoutUpdated(_ layout: ContainerViewLayout, navigationHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
func containerLayoutUpdated(_ layout: ContainerViewLayout, navigationHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
||||||
self.validLayout = layout
|
self.validLayout = layout
|
||||||
|
|
||||||
@ -834,7 +838,7 @@ private final class DrawingStickersScreenNode: ViewControllerTracingNode {
|
|||||||
|
|
||||||
final class DrawingStickersScreen: ViewController {
|
final class DrawingStickersScreen: ViewController {
|
||||||
private let context: AccountContext
|
private let context: AccountContext
|
||||||
private let selectSticker: ((FileMediaReference, ASDisplayNode, CGRect) -> Bool)?
|
var selectSticker: ((FileMediaReference, ASDisplayNode, CGRect) -> Bool)?
|
||||||
|
|
||||||
private var controllerNode: DrawingStickersScreenNode {
|
private var controllerNode: DrawingStickersScreenNode {
|
||||||
return self.displayNode as! DrawingStickersScreenNode
|
return self.displayNode as! DrawingStickersScreenNode
|
||||||
@ -890,16 +894,13 @@ final class DrawingStickersScreen: ViewController {
|
|||||||
override public func loadDisplayNode() {
|
override public func loadDisplayNode() {
|
||||||
self.displayNode = DrawingStickersScreenNode(
|
self.displayNode = DrawingStickersScreenNode(
|
||||||
context: self.context,
|
context: self.context,
|
||||||
selectSticker: self.selectSticker.flatMap { [weak self] selectSticker in
|
selectSticker: { [weak self] file, sourceNode, sourceRect in
|
||||||
return { file, sourceNode, sourceRect in
|
if let strongSelf = self, let selectSticker = strongSelf.selectSticker {
|
||||||
if selectSticker(file, sourceNode, sourceRect) {
|
return selectSticker(file, sourceNode, sourceRect)
|
||||||
self?.dismiss()
|
|
||||||
return true
|
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
)
|
)
|
||||||
(self.displayNode as! DrawingStickersScreenNode).dismiss = { [weak self] in
|
(self.displayNode as! DrawingStickersScreenNode).dismiss = { [weak self] in
|
||||||
self?.dismiss()
|
self?.dismiss()
|
||||||
|
@ -291,7 +291,7 @@ public func fetchVideoLibraryMediaResource(account: Account, resource: VideoLibr
|
|||||||
let signal = TGMediaVideoConverter.convert(avAsset, adjustments: adjustments, watcher: VideoConversionWatcher(update: { path, size in
|
let signal = TGMediaVideoConverter.convert(avAsset, adjustments: adjustments, watcher: VideoConversionWatcher(update: { path, size in
|
||||||
var value = stat()
|
var value = stat()
|
||||||
if stat(path, &value) == 0 {
|
if stat(path, &value) == 0 {
|
||||||
/*if let data = try? Data(contentsOf: URL(fileURLWithPath: path), options: [.mappedRead]) {
|
if let data = try? Data(contentsOf: URL(fileURLWithPath: path), options: [.mappedRead]) {
|
||||||
var range: Range<Int>?
|
var range: Range<Int>?
|
||||||
let _ = updatedSize.modify { updatedSize in
|
let _ = updatedSize.modify { updatedSize in
|
||||||
range = updatedSize ..< Int(value.st_size)
|
range = updatedSize ..< Int(value.st_size)
|
||||||
@ -299,26 +299,26 @@ public func fetchVideoLibraryMediaResource(account: Account, resource: VideoLibr
|
|||||||
}
|
}
|
||||||
//print("size = \(Int(value.st_size)), range: \(range!)")
|
//print("size = \(Int(value.st_size)), range: \(range!)")
|
||||||
subscriber.putNext(.dataPart(resourceOffset: range!.lowerBound, data: data, range: range!, complete: false))
|
subscriber.putNext(.dataPart(resourceOffset: range!.lowerBound, data: data, range: range!, complete: false))
|
||||||
}*/
|
}
|
||||||
}
|
}
|
||||||
}), entityRenderer: entityRenderer)!
|
}), entityRenderer: entityRenderer)!
|
||||||
let signalDisposable = signal.start(next: { next in
|
let signalDisposable = signal.start(next: { next in
|
||||||
if let result = next as? TGMediaVideoConversionResult {
|
if let result = next as? TGMediaVideoConversionResult {
|
||||||
var value = stat()
|
var value = stat()
|
||||||
if stat(result.fileURL.path, &value) == 0 {
|
if stat(result.fileURL.path, &value) == 0 {
|
||||||
if config.remuxToFMp4 {
|
// if config.remuxToFMp4 {
|
||||||
let tempFile = TempBox.shared.tempFile(fileName: "video.mp4")
|
// let tempFile = TempBox.shared.tempFile(fileName: "video.mp4")
|
||||||
if FFMpegRemuxer.remux(result.fileURL.path, to: tempFile.path) {
|
// if FFMpegRemuxer.remux(result.fileURL.path, to: tempFile.path) {
|
||||||
let _ = try? FileManager.default.removeItem(atPath: result.fileURL.path)
|
// let _ = try? FileManager.default.removeItem(atPath: result.fileURL.path)
|
||||||
subscriber.putNext(.moveTempFile(file: tempFile))
|
// subscriber.putNext(.moveTempFile(file: tempFile))
|
||||||
} else {
|
// } else {
|
||||||
TempBox.shared.dispose(tempFile)
|
// TempBox.shared.dispose(tempFile)
|
||||||
subscriber.putNext(.moveLocalFile(path: result.fileURL.path))
|
// subscriber.putNext(.moveLocalFile(path: result.fileURL.path))
|
||||||
}
|
// }
|
||||||
} else {
|
// } else {
|
||||||
subscriber.putNext(.moveLocalFile(path: result.fileURL.path))
|
// subscriber.putNext(.moveLocalFile(path: result.fileURL.path))
|
||||||
}
|
// }
|
||||||
/*if let data = try? Data(contentsOf: result.fileURL, options: [.mappedRead]) {
|
if let data = try? Data(contentsOf: result.fileURL, options: [.mappedRead]) {
|
||||||
var range: Range<Int>?
|
var range: Range<Int>?
|
||||||
let _ = updatedSize.modify { updatedSize in
|
let _ = updatedSize.modify { updatedSize in
|
||||||
range = updatedSize ..< Int(value.st_size)
|
range = updatedSize ..< Int(value.st_size)
|
||||||
@ -328,7 +328,7 @@ public func fetchVideoLibraryMediaResource(account: Account, resource: VideoLibr
|
|||||||
subscriber.putNext(.dataPart(resourceOffset: range!.lowerBound, data: data, range: range!, complete: false))
|
subscriber.putNext(.dataPart(resourceOffset: range!.lowerBound, data: data, range: range!, complete: false))
|
||||||
subscriber.putNext(.replaceHeader(data: data, range: 0 ..< 1024))
|
subscriber.putNext(.replaceHeader(data: data, range: 0 ..< 1024))
|
||||||
subscriber.putNext(.dataPart(resourceOffset: data.count, data: Data(), range: 0 ..< 0, complete: true))
|
subscriber.putNext(.dataPart(resourceOffset: data.count, data: Data(), range: 0 ..< 0, complete: true))
|
||||||
}*/
|
}
|
||||||
} else {
|
} else {
|
||||||
subscriber.putError(.generic)
|
subscriber.putError(.generic)
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ import ShareController
|
|||||||
import LegacyUI
|
import LegacyUI
|
||||||
import LegacyMediaPickerUI
|
import LegacyMediaPickerUI
|
||||||
|
|
||||||
func presentedLegacyCamera(context: AccountContext, peer: Peer, cameraView: TGAttachmentCameraView?, menuController: TGMenuSheetController?, parentController: ViewController, editingMedia: Bool, saveCapturedPhotos: Bool, mediaGrouping: Bool, initialCaption: String, hasSchedule: Bool, sendMessagesWithSignals: @escaping ([Any]?, Bool, Int32) -> Void, recognizedQRCode: @escaping (String) -> Void = { _ in }, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void) {
|
func presentedLegacyCamera(context: AccountContext, peer: Peer, cameraView: TGAttachmentCameraView?, menuController: TGMenuSheetController?, parentController: ViewController, editingMedia: Bool, saveCapturedPhotos: Bool, mediaGrouping: Bool, initialCaption: String, hasSchedule: Bool, sendMessagesWithSignals: @escaping ([Any]?, Bool, Int32) -> Void, recognizedQRCode: @escaping (String) -> Void = { _ in }, presentSchedulePicker: @escaping (@escaping (Int32) -> Void) -> Void, presentTimerPicker: @escaping (@escaping (Int32) -> Void) -> Void, presentStickers: @escaping (@escaping (TelegramMediaFile, Bool, UIView, CGRect) -> Void) -> Void) {
|
||||||
let presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
let presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
||||||
let legacyController = LegacyController(presentation: .custom, theme: presentationData.theme)
|
let legacyController = LegacyController(presentation: .custom, theme: presentationData.theme)
|
||||||
legacyController.supportedOrientations = ViewControllerSupportedOrientations(regularSize: .portrait, compactSize: .portrait)
|
legacyController.supportedOrientations = ViewControllerSupportedOrientations(regularSize: .portrait, compactSize: .portrait)
|
||||||
@ -35,7 +35,7 @@ func presentedLegacyCamera(context: AccountContext, peer: Peer, cameraView: TGAt
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
controller.presentTimerController = { done in
|
controller.presentTimerController = { done in
|
||||||
presentSchedulePicker { time in
|
presentTimerPicker { time in
|
||||||
done?(time)
|
done?(time)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user