mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-26 14:05:22 +00:00
Extract TextMessageView into a separate file (#759)
* Extract `TextMessageView` into a separate file * Remove dead code
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// BitchatMessage+Preview.swift
|
||||
// bitchat
|
||||
//
|
||||
// This is free and unencumbered software released into the public domain.
|
||||
// For more information, see <https://unlicense.org>
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
extension BitchatMessage {
|
||||
static var preview: BitchatMessage {
|
||||
BitchatMessage(
|
||||
id: UUID().uuidString,
|
||||
sender: "John Doe",
|
||||
content: "Hello",
|
||||
timestamp: Date(),
|
||||
isRelay: false,
|
||||
originalSender: nil,
|
||||
isPrivate: false,
|
||||
recipientNickname: "Jane Doe",
|
||||
senderPeerID: nil,
|
||||
mentions: nil,
|
||||
deliveryStatus: .sent
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user