@ -130,6 +130,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
var scrollButtonBottomConstraint : NSLayoutConstraint ?
var scrollButtonMessageRequestsBottomConstraint : NSLayoutConstraint ?
var messageRequestsViewBotomConstraint : NSLayoutConstraint ?
var legacyGroupsFooterViewViewTopConstraint : NSLayoutConstraint ?
lazy var titleView : ConversationTitleView = {
let result : ConversationTitleView = ConversationTitleView ( using : viewModel . dependencies )
@ -231,23 +232,16 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
onTap : { [ weak self ] in self ? . removeOutdatedClientBanner ( ) }
)
)
result . isHidden = true
return result
} ( )
lazy var legacyGroupsBanner : InfoBanner = {
// FIXME: S t r i n g s h o u l d b e u p d a t e d i n C r o w d i n t o i n c l u d e t h e { i c o n }
let result : InfoBanner = InfoBanner (
info : InfoBanner . Info (
font : . systemFont ( ofSize : Values . miniFontSize ) ,
message : " groupLegacyBanner "
. put ( key : " date " , value : Features . legacyGroupDepricationDate . formattedForBanner )
. localizedFormatted ( baseFont : . systemFont ( ofSize : Values . miniFontSize ) )
. appending ( string : " " ) // D e s i g n s h a v e a s p a c e b e f o r e t h e i c o n
. appending (
Lucide . Icon . squareArrowUpRight . attributedString ( for : . systemFont ( ofSize : Values . miniFontSize ) )
)
. appending ( string : " " ) , // I n c a s e i t ' s a R T L f o n t
font : viewModel . legacyGroupsBannerFont ,
message : viewModel . legacyGroupsBannerMessage ,
icon : . none ,
tintColor : . messageBubble_outgoingText ,
backgroundColor : . primary ,
@ -332,6 +326,46 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
onAccept : { [ weak self ] in self ? . acceptMessageRequest ( ) } ,
onDecline : { [ weak self ] in self ? . declineMessageRequest ( ) }
)
private lazy var legacyGroupsRecreateGroupView : UIView = {
let result : UIView = UIView ( )
result . isHidden = (
viewModel . threadData . threadVariant != . legacyGroup ||
viewModel . threadData . currentUserIsClosedGroupAdmin != true
)
return result
} ( )
private lazy var legacyGroupsFadeView : GradientView = {
let result : GradientView = GradientView ( )
result . themeBackgroundGradient = [
. value ( . backgroundPrimary , alpha : 0 ) , // W a n t t h i s t o t a k e u p 2 0 % ( ~ 2 0 p x )
. backgroundPrimary ,
. backgroundPrimary ,
. backgroundPrimary
]
result . set ( . height , to : 80 )
return result
} ( )
private lazy var legacyGroupsInputBackgroundView : UIView = {
let result : UIView = UIView ( )
result . themeBackgroundColor = . backgroundPrimary
return result
} ( )
private lazy var legacyGroupsFooterButton : SessionButton = {
let result : SessionButton = SessionButton ( style : . bordered , size : . medium )
result . translatesAutoresizingMaskIntoConstraints = false
result . setTitle ( " Recreate Group " , for : . normal )
result . addTarget ( self , action : #selector ( recreateLegacyGroupTapped ) , for : . touchUpInside )
result . accessibilityIdentifier = " Legacy Groups Recreate Button "
return result
} ( )
// MARK: - S e t t i n g s
@ -406,6 +440,11 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
view . addSubview ( scrollButton )
view . addSubview ( stateStackView )
view . addSubview ( messageRequestFooterView )
view . addSubview ( legacyGroupsRecreateGroupView )
legacyGroupsRecreateGroupView . addSubview ( legacyGroupsInputBackgroundView )
legacyGroupsRecreateGroupView . addSubview ( legacyGroupsFadeView )
legacyGroupsRecreateGroupView . addSubview ( legacyGroupsFooterButton )
stateStackView . pin ( . top , to : . top , of : view , withInset : 0 )
stateStackView . pin ( . leading , to : . leading , of : view , withInset : 0 )
@ -418,6 +457,22 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
self . scrollButtonBottomConstraint = scrollButton . pin ( . bottom , to : . bottom , of : view , withInset : - 16 )
self . scrollButtonBottomConstraint ? . isActive = false // N o t e : N e e d t o d i s a b l e t h i s t o a v o i d a c o n f l i c t w i t h t h e o t h e r b o t t o m c o n s t r a i n t
self . scrollButtonMessageRequestsBottomConstraint = scrollButton . pin ( . bottom , to : . top , of : messageRequestFooterView , withInset : - 4 )
legacyGroupsFooterViewViewTopConstraint = legacyGroupsRecreateGroupView
. pin ( . top , to : . bottom , of : view , withInset : - Values . footerGradientHeight ( window : UIApplication . shared . keyWindow ) )
legacyGroupsRecreateGroupView . pin ( . leading , to : . leading , of : view )
legacyGroupsRecreateGroupView . pin ( . trailing , to : . trailing , of : view )
legacyGroupsRecreateGroupView . pin ( . bottom , to : . bottom , of : view )
legacyGroupsFadeView . pin ( . top , to : . top , of : legacyGroupsRecreateGroupView )
legacyGroupsFadeView . pin ( . leading , to : . leading , of : legacyGroupsRecreateGroupView )
legacyGroupsFadeView . pin ( . trailing , to : . trailing , of : legacyGroupsRecreateGroupView )
legacyGroupsInputBackgroundView . pin ( . top , to : . bottom , of : legacyGroupsFadeView )
legacyGroupsInputBackgroundView . pin ( . leading , to : . leading , of : legacyGroupsRecreateGroupView )
legacyGroupsInputBackgroundView . pin ( . trailing , to : . trailing , of : legacyGroupsRecreateGroupView )
legacyGroupsInputBackgroundView . pin ( . bottom , to : . bottom , of : legacyGroupsRecreateGroupView )
legacyGroupsFooterButton . pin ( . top , to : . top , of : legacyGroupsFadeView , withInset : 32 )
legacyGroupsFooterButton . pin ( . leading , to : . leading , of : legacyGroupsFadeView , withInset : 16 )
legacyGroupsFooterButton . pin ( . trailing , to : . trailing , of : legacyGroupsFadeView , withInset : - 16 )
// U n r e a d c o u n t v i e w
view . addSubview ( unreadCountView )
@ -1268,10 +1323,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
guard
let threadData : SessionThreadViewModel = threadData ,
(
threadData . threadRequiresApproval = = false &&
threadData . threadIsMessageRequest = = false
)
threadData . canAccessSettings ( using : viewModel . dependencies )
else {
// N o t e : A d d i n g e m p t y b u t t o n s b e c a u s e w i t h o u t i t t h e t i t l e a l i g n m e n t i s b u s t e d ( N o t e : T h e s i z e w a s
// t a k e n f r o m t h e l a y o u t i n s p e c t o r f o r t h e b a c k b u t t o n i n X c o d e
@ -1352,7 +1404,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
var keyboardEndFrame : CGRect = userInfo [ UIResponder . keyboardFrameEndUserInfoKey ] as ? CGRect
else { return }
// I f r e d u c e m o t i o n + c r o s s f a d e t r a n s i t i o n s i s o n , i n i O S 1 4 U I K i t v e n d s o u t a k e y b o a r d e n d f r a m e
// I f r e d u c e m o t i o n + c r o s s f a d e t r a n s i t i o n s i s o n , i n i O S 1 4 U I K i t s e n d s o u t a k e y b o a r d e n d f r a m e
// o f C G R e c t z e r o . T h i s b r e a k s t h e m a t h b e l o w .
//
// I f o u r k e y b o a r d e n d f r a m e i s C G R e c t Z e r o , b u i l d a f a k e r e c t t h a t ' s t r a n s l a t e d o f f t h e b o t t o m e d g e .
@ -1365,6 +1417,17 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
)
}
// I f w e e x p l i c i t l y c a n ' t w r i t e t o t h e t h r e a d t h e n t h e i n p u t w i l l b e h i d d e n b u t t h e y k e y b o a r d
// s t i l l r e p o r t s t h a t i t t a k e s u p s i z e , s o j u s t r e p o r t 0 h e i g h t i n t h a t c a s e
if viewModel . threadData . threadCanWrite = = false {
keyboardEndFrame = CGRect (
x : UIScreen . main . bounds . minX ,
y : UIScreen . main . bounds . maxY ,
width : UIScreen . main . bounds . width ,
height : 0
)
}
// N o n o t h i n g i f t h e r e w a s n o c h a n g e
// N o t e : t h e r e i s a b u g o n i O S 1 5 . X f o r i P h o n e 6 / 6 s w h e r e t h e c o n v e r t e d f r a m e i s n o t a c c u r a t e .
// I n i O S 1 6 . 1 a n d l a t e r , t h e k e y b o a r d n o t i f i c a t i o n o b j e c t i s t h e s c r e e n t h e k e y b o a r d a p p e a r s o n .
@ -1430,6 +1493,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
let insetDifference : CGFloat = ( contentInsets . bottom - tableView . contentInset . bottom )
scrollButtonBottomConstraint ? . constant = - ( bottomOffset + 12 )
messageRequestsViewBotomConstraint ? . constant = - bottomOffset
legacyGroupsFooterViewViewTopConstraint ? . constant = - ( legacyGroupsFadeView . bounds . height + bottomOffset + ( viewModel . threadData . threadCanWrite = = false ? 16 : 0 ) )
tableView . contentInset = contentInsets
tableView . scrollIndicatorInsets = contentInsets