2021-02-01 11:05:34 +01:00
|
|
|
//
|
|
|
|
// Mention.swift
|
|
|
|
// CoreDataStack
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/2/1.
|
|
|
|
//
|
|
|
|
|
|
|
|
import CoreData
|
2021-02-02 07:10:25 +01:00
|
|
|
import Foundation
|
2021-02-01 11:05:34 +01:00
|
|
|
|
2021-02-02 07:10:25 +01:00
|
|
|
public final class Mention: NSManagedObject {
|
|
|
|
public typealias ID = UUID
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var identifier: ID
|
|
|
|
@NSManaged public private(set) var id: String
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var createAt: Date
|
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var username: String
|
|
|
|
@NSManaged public private(set) var acct: String
|
|
|
|
@NSManaged public private(set) var url: String
|
2021-02-02 07:10:25 +01:00
|
|
|
|
|
|
|
// many-to-one relationship
|
|
|
|
@NSManaged public private(set) var toot: Toot
|
2021-02-01 11:05:34 +01:00
|
|
|
}
|
|
|
|
|
2021-02-02 07:10:25 +01:00
|
|
|
public extension Mention {
|
|
|
|
override func awakeFromInsert() {
|
|
|
|
super.awakeFromInsert()
|
|
|
|
identifier = UUID()
|
|
|
|
}
|
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
@discardableResult
|
2021-02-02 07:10:25 +01:00
|
|
|
static func insert(
|
2021-02-01 11:05:34 +01:00
|
|
|
into context: NSManagedObjectContext,
|
2021-02-02 07:10:25 +01:00
|
|
|
property: Property
|
2021-02-01 11:05:34 +01:00
|
|
|
) -> Mention {
|
2021-02-02 07:10:25 +01:00
|
|
|
let mention: Mention = context.insertObject()
|
2021-02-01 11:05:34 +01:00
|
|
|
mention.id = property.id
|
|
|
|
mention.username = property.username
|
|
|
|
mention.acct = property.acct
|
|
|
|
mention.url = property.url
|
|
|
|
return mention
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 07:10:25 +01:00
|
|
|
public extension Mention {
|
|
|
|
struct Property {
|
2021-02-01 11:05:34 +01:00
|
|
|
public let id: String
|
|
|
|
public let username: String
|
|
|
|
public let acct: String
|
|
|
|
public let url: String
|
2021-02-02 07:10:25 +01:00
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
public init(id: String, username: String, acct: String, url: String) {
|
|
|
|
self.id = id
|
|
|
|
self.username = username
|
|
|
|
self.acct = acct
|
|
|
|
self.url = url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Mention: Managed {
|
|
|
|
public static var defaultSortDescriptors: [NSSortDescriptor] {
|
2021-02-02 07:10:25 +01:00
|
|
|
return [NSSortDescriptor(keyPath: \Mention.createAt, ascending: false)]
|
2021-02-01 11:05:34 +01:00
|
|
|
}
|
|
|
|
}
|