NetNewsWire/Widget/Shared Views/ArticleItemView.swift

78 lines
1.7 KiB
Swift
Raw Normal View History

//
// ArticleItemView.swift
// NetNewsWire Widget Extension
//
// Created by Stuart Breckenridge on 18/11/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
import RSWeb
struct ArticleItemView: View {
var article: LatestArticle
var deepLink: URL
2021-11-09 03:46:44 +01:00
@State private var iconImage: UIImage?
var body: some View {
Link(destination: deepLink, label: {
HStack(alignment: .top, spacing: nil, content: {
// Feed Icon
2021-11-09 03:46:44 +01:00
if iconImage != nil {
Image(uiImage: iconImage!)
.resizable()
.frame(width: 30, height: 30)
.cornerRadius(4)
}
// Title and Feed Name
VStack(alignment: .leading) {
Text(article.articleTitle ?? "Untitled")
2020-11-19 09:32:44 +01:00
.font(.footnote)
.bold()
.lineLimit(1)
.foregroundColor(.primary)
2020-11-19 09:32:44 +01:00
.padding(.top, -3)
HStack {
Text(article.feedTitle)
.font(.caption)
.lineLimit(1)
.foregroundColor(.secondary)
Spacer()
Text(pubDate(article.pubDate))
.font(.caption)
.lineLimit(1)
.foregroundColor(.secondary)
}
}
})
2021-11-09 03:46:44 +01:00
}).onAppear {
iconImage = thumbnail(article.feedIcon)
}
}
func thumbnail(_ data: Data?) -> UIImage {
if data == nil {
return UIImage(systemName: "globe")!
} else {
return UIImage(data: data!)!
}
}
func pubDate(_ dateString: String) -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss Z"
2021-04-13 06:17:31 +02:00
guard let date = dateFormatter.date(from: dateString) else {
return ""
}
let displayFormatter = DateFormatter()
displayFormatter.dateStyle = .medium
displayFormatter.timeStyle = .none
2021-04-13 06:17:31 +02:00
return displayFormatter.string(from: date)
}
}