Huge refactor to add better structure to the project. Separating features with their associated view and model structure. This should be better organization and will allow us to improve the overall architecture in the future. I forsee many more improvements that can follow this change. e.g. MVVM Arch As well as cleaning up duplicate, unused, functionality. Many files have global functions that can also be moved or be renamed. damus/ ├── Features/ │ ├── <Feature>/ │ │ ├── Views/ │ │ └── Models/ ├── Shared/ │ ├── Components/ │ ├── Media/ │ ├── Buttons/ │ ├── Extensions/ │ ├── Empty Views/ │ ├── ErrorHandling/ │ ├── Modifiers/ │ └── Utilities/ ├── Core/ │ ├── Nostr/ │ ├── NIPs/ │ ├── DIPs/ │ ├── Types/ │ ├── Networking/ │ └── Storage/ Signed-off-by: ericholguin <ericholguin@apache.org>
24 lines
533 B
Swift
24 lines
533 B
Swift
//
|
||
// CommentItem.swift
|
||
// damus
|
||
//
|
||
// Created by Daniel D’Aquino on 2024-08-14.
|
||
//
|
||
|
||
import Foundation
|
||
|
||
struct CommentItem: TagConvertible {
|
||
static let TAG_KEY: String = "comment"
|
||
let content: String
|
||
var tag: [String] {
|
||
return [Self.TAG_KEY, content]
|
||
}
|
||
|
||
static func from_tag(tag: TagSequence) -> CommentItem? {
|
||
guard tag.count == 2 else { return nil }
|
||
guard tag[0].string() == Self.TAG_KEY else { return nil }
|
||
|
||
return CommentItem(content: tag[1].string())
|
||
}
|
||
}
|