1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package widget
- import (
- "context"
- "html/template"
- "time"
- "github.com/glanceapp/glance/internal/assets"
- "github.com/glanceapp/glance/internal/feed"
- )
- type RSS struct {
- widgetBase `yaml:",inline"`
- FeedRequests []feed.RSSFeedRequest `yaml:"feeds"`
- Style string `yaml:"style"`
- ThumbnailHeight float64 `yaml:"thumbnail-height"`
- CardHeight float64 `yaml:"card-height"`
- Items feed.RSSFeedItems `yaml:"-"`
- Limit int `yaml:"limit"`
- CollapseAfter int `yaml:"collapse-after"`
- }
- func (widget *RSS) Initialize() error {
- widget.withTitle("RSS Feed").withCacheDuration(1 * time.Hour)
- if widget.Limit <= 0 {
- widget.Limit = 25
- }
- if widget.CollapseAfter == 0 || widget.CollapseAfter < -1 {
- widget.CollapseAfter = 5
- }
- if widget.ThumbnailHeight < 0 {
- widget.ThumbnailHeight = 0
- }
- if widget.CardHeight < 0 {
- widget.CardHeight = 0
- }
- if widget.Style != "detailed-list" {
- for i := range widget.FeedRequests {
- widget.FeedRequests[i].HideCategories = true
- widget.FeedRequests[i].HideDescription = true
- }
- }
- return nil
- }
- func (widget *RSS) Update(ctx context.Context) {
- items, err := feed.GetItemsFromRSSFeeds(widget.FeedRequests)
- if !widget.canContinueUpdateAfterHandlingErr(err) {
- return
- }
- if len(items) > widget.Limit {
- items = items[:widget.Limit]
- }
- widget.Items = items
- }
- func (widget *RSS) Render() template.HTML {
- if widget.Style == "horizontal-cards" {
- return widget.render(widget, assets.RSSHorizontalCardsTemplate)
- }
- if widget.Style == "horizontal-cards-2" {
- return widget.render(widget, assets.RSSHorizontalCards2Template)
- }
- if widget.Style == "detailed-list" {
- return widget.render(widget, assets.RSSDetailedListTemplate)
- }
- return widget.render(widget, assets.RSSListTemplate)
- }
|