* provider can now check the current session * More testable code * created the test condition * it works but not always not sure why, need to dig deeper * sadly we need to use textkit 1 to solve this issue * removed developer option screen test * this experimental solution kinda works but I need a way to pill recomputation is weird * format * display improvement * better and faster solution * pilished the code * better coloring * swift format * just need to solve the caching issue * fix caching issue * tests done! * changelog * pr comments addressed * all pr comments addressed * docs * line lenght * updated tests and fixed a parsing permalink issue * MentionBuilder * pr comments * swiftformat * code blocks should not have links * Update ElementX/Sources/FlowCoordinators/RoomFlowCoordinator.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Update ElementX/Sources/Services/Client/ClientProxy.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Update UnitTests/Sources/AttributedStringBuilderTests.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Update ElementX/Sources/UITests/UITestsAppCoordinator.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Update ElementX/Sources/Other/Pills/PillAttachmentViewProvider.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Update ElementX/Sources/Other/Pills/MentionBuilder.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * pr comments * swiftformat --------- Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
98 lines
4.3 KiB
Swift
98 lines
4.3 KiB
Swift
//
|
|
// Copyright 2023 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import Combine
|
|
import SwiftUI
|
|
|
|
/// A view modifier that applies a shimmering effect to the view.
|
|
struct ShimmerModifier: ViewModifier {
|
|
/// A boolean which is toggled to trigger the animation.
|
|
@State private var animationTrigger = false
|
|
|
|
/// The start and end points of a gradient.
|
|
private struct GradientPoints {
|
|
/// The start point of the gradient.
|
|
let start: UnitPoint
|
|
/// The end point of the gradient.
|
|
let end: UnitPoint
|
|
}
|
|
|
|
/// The initial points used by the gradient before animation occurs.
|
|
private let initialPoints = GradientPoints(start: UnitPoint(x: -5, y: 0), end: UnitPoint(x: 0, y: 0))
|
|
/// The final points used by the gradient once the animation has completed.
|
|
private let finalPoints = GradientPoints(start: UnitPoint(x: 1, y: 0), end: UnitPoint(x: 5, y: 0))
|
|
|
|
/// The colour that causes a highlight to be shown.
|
|
private let highlightColor = Color.white.opacity(0.5)
|
|
/// The colour that causes the view to remain unchanged.
|
|
private let regularColor = Color.white
|
|
|
|
/// A slow linear animation which auto-repeats after a delay.
|
|
private let animation: Animation = .linear(duration: 1.75)
|
|
.delay(0.5)
|
|
.repeatForever(autoreverses: false)
|
|
.disabledDuringTests()
|
|
|
|
func body(content: Content) -> some View {
|
|
content
|
|
.mask { gradient }
|
|
.animation(animation, value: animationTrigger)
|
|
.task {
|
|
animationTrigger.toggle()
|
|
}
|
|
}
|
|
|
|
/// The gradient used to create the shimmer.
|
|
var gradient: LinearGradient {
|
|
LinearGradient(stops: [.init(color: regularColor, location: 0),
|
|
.init(color: regularColor, location: 0.3),
|
|
.init(color: highlightColor, location: 0.45),
|
|
.init(color: highlightColor, location: 0.55),
|
|
.init(color: regularColor, location: 0.7),
|
|
.init(color: regularColor, location: 1)],
|
|
startPoint: animationTrigger ? finalPoints.start : initialPoints.start,
|
|
endPoint: animationTrigger ? finalPoints.end : initialPoints.end)
|
|
}
|
|
}
|
|
|
|
extension View {
|
|
/// Applies a shimmering effect to the view.
|
|
func shimmer() -> some View {
|
|
modifier(ShimmerModifier())
|
|
}
|
|
}
|
|
|
|
struct ShimmerOverlay_Previews: PreviewProvider, TestablePreview {
|
|
static let viewModel = HomeScreenViewModel(userSession: MockUserSession(clientProxy: MockClientProxy(userID: ""),
|
|
mediaProvider: MockMediaProvider()),
|
|
attributedStringBuilder: AttributedStringBuilder(permalinkBaseURL: ServiceLocator.shared.settings.permalinkBaseURL,
|
|
mentionBuilder: MentionBuilder(mentionsEnabled: ServiceLocator.shared.settings.mentionsEnabled)),
|
|
selectedRoomPublisher: CurrentValueSubject<String?, Never>(nil).asCurrentValuePublisher(),
|
|
appSettings: ServiceLocator.shared.settings,
|
|
analytics: ServiceLocator.shared.analytics,
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController)
|
|
|
|
static var previews: some View {
|
|
VStack {
|
|
ForEach(0...8, id: \.self) { _ in
|
|
HomeScreenRoomCell(room: .placeholder(), context: viewModel.context, isSelected: false)
|
|
}
|
|
}
|
|
.redacted(reason: .placeholder)
|
|
.shimmer()
|
|
}
|
|
}
|