-
Notifications
You must be signed in to change notification settings - Fork 0
/
PersonInfo+CoreDataProperties.swift
144 lines (121 loc) · 4.25 KB
/
PersonInfo+CoreDataProperties.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//
// PersonInfo+CoreDataProperties.swift
// YueJi
//
// Created by Jcwang on 2022/12/1.
//
//
import Foundation
import CoreData
import SwiftUI
extension PersonInfo {
@nonobjc public class func fetchRequest() -> NSFetchRequest<PersonInfo> {
return NSFetchRequest<PersonInfo>(entityName: "PersonInfo")
}
@NSManaged public var accumulateDays: Int64
// @NSManaged public var myTag: MyTag?
@NSManaged public var tags: [Tag]?
@NSManaged public var createDate: Date?
public var wrappedCreateDate: Date {
print("asdsaasdsadsa")
print(createDate ?? Date.now)
return createDate ?? Date.now
}
public var wrappedTags: [Tag] {
var tags = [Tag]()
if let tempTags = self.tags {
// 如果存在,为了让其他static Tag的id一样,只能赋值
Tag.noneTag = tempTags[0]
Tag.allTag = tempTags[1]
Tag.journalTag = tempTags[2]
Tag.addTag = tempTags.last!
return tempTags
}
// tags.append(Tag.noneTag)
// tags.append(Tag.allTag)
// tags.append(Tag.journalTag)
// tags.append(Tag(title: "标签1", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签2", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签3", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签4", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签5", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag.addTag)
//
// // 保存
// save()
return tags
}
// public var wrappedTags: [Tag] {
// var tags = [Tag]()
//
// if let tempTags = self.myTag?.tags {
// // 如果存在,为了让其他static Tag的id一样,只能赋值
// Tag.noneTag = tempTags[0]
// Tag.allTag = tempTags[1]
// Tag.journalTag = tempTags[2]
// Tag.addTag = tempTags.last!
//
// return tempTags
// }
//
//
// tags.append(Tag.noneTag)
// tags.append(Tag.allTag)
// tags.append(Tag.journalTag)
// tags.append(Tag(title: "标签1", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签2", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签3", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签4", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag(title: "标签5", color: Tag.tagColors.randomElement() ?? Color.black))
// tags.append(Tag.addTag)
//
// // 保存
//
// save()
//
// return tags
// }
func getTag(from id: UUID) -> Tag {
if let tag = wrappedTags.first(where: { $0.id == id }) {
return tag
}
return Tag.noneTag
}
func editTag(tagID: UUID, title: String, color: Color) {
if let index = wrappedTags.firstIndex(where: { $0.id == tagID }) {
objectWillChange.send()
tags?[index].title = title
tags?[index].color = color
save()
}
}
func save() {
// if let data = try? JSONEncoder().encode(tags) {
// if let decoded = try? JSONDecoder().decode([Tag].self, from: data) {
// print(decoded.description)
// }
// UserDefaults.standard.set(data, forKey: StaticProperties.USERDEFAULTS_TAGS)
// }
// do {
// try viewContext.save()
// } catch {
// let nsError = error as NSError
// fatalError("Unresolved error \(nsError), \(nsError.userInfo)")
// }
}
func add(_ tag: Tag) {
tags?.insert(tag, at: wrappedTags.count - 1)
// tags.append(tag)
save()
}
func delete(_ tagID: UUID) -> Bool {
if let index = wrappedTags.firstIndex(where: {$0.id == tagID}) {
tags?.remove(at: index)
save()
return true
}
return false
}
}
extension PersonInfo : Identifiable {
}