| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * Copyright 2018 Google
- *
- * 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 Foundation
- import FirebaseInAppMessaging
- class CommonMessageTestVC: UIViewController, InAppMessagingDisplayDelegate {
- var messageClosedWithClick = false
- var messageClosedDismiss = false
- // start of InAppMessagingDisplayDelegate functions
- func messageClicked() {
- print("message clicked to follow action url")
- messageClosedWithClick = true
- }
- func impressionDetected() { print("valid impression detected") }
- func displayErrorEncountered(_ error: Error) { print("error encountered \(error)") }
- func messageDismissed(dismissType: FIRInAppMessagingDismissType) {
- print("message dimissed with type \(dismissType)")
- messageClosedDismiss = true
- }
- // end of InAppMessagingDisplayDelegate functions
- let normalMessageTitle = "Firebase In-App Message title"
- let normalMessageBody = "Firebase In-App Message body"
- let longBodyText = String(repeating: "This is long message body.", count: 40) + "End of body text."
- let longTitleText = String(repeating: "This is long message title.", count: 10) + "End of title text."
- let startTime = Date().timeIntervalSince1970
- let endTime = Date().timeIntervalSince1970 + 1000
- let defaultActionButton = InAppMessagingActionButton(buttonText: "Take action",
- buttonTextColor: UIColor.black,
- backgroundColor: UIColor.yellow)
- func produceImageOfSize(size: CGSize) -> Data? {
- let color = UIColor.cyan
- let rect = CGRect(origin: .zero, size: size)
- UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0)
- color.setFill()
- UIRectFill(rect)
- if let context = UIGraphicsGetCurrentContext() {
- context.setStrokeColor(UIColor.red.cgColor)
- context.strokeEllipse(in: rect)
- }
- let imageFromGraphics = UIGraphicsGetImageFromCurrentImageContext()
- UIGraphicsEndImageContext()
- if let image = imageFromGraphics {
- return UIImagePNGRepresentation(image)
- } else {
- return nil
- }
- }
- }
|