Skip to content

Commit 8f08cbb

Browse files
committed
fix: item list order
1 parent d684247 commit 8f08cbb

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

frontend/src/lib/api/item.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,11 @@ export async function listItems(options?: ListFilter) {
1515
// trip undefinded fields: https://github.com/sindresorhus/ky/issues/293
1616
options = JSON.parse(JSON.stringify(options));
1717
}
18-
const data = await api
18+
return await api
1919
.get('items', {
2020
searchParams: options
2121
})
2222
.json<{ total: number; items: Item[] }>();
23-
24-
data.items.sort((a, b) => new Date(b.pub_date).getTime() - new Date(a.pub_date).getTime());
25-
return data;
2623
}
2724

2825
export function parseURLtoFilter(params: URLSearchParams) {

model/feed.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type Feed struct {
1313
DeletedAt soft_delete.DeletedAt
1414

1515
Name *string `gorm:"name;not null"`
16-
Link *string `gorm:"link;not null"`
16+
Link *string `gorm:"link;not null"` // FIX: unique index?
1717
// LastBuild is the last time the content of the feed changed
1818
LastBuild *time.Time `gorm:"last_build"`
1919
// Failure is the reason of failure. If it is not null or empty, the fetch processor

repo/item.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package repo
22

33
import (
4+
"time"
5+
46
"github.com/0x2e/fusion/model"
57

68
"gorm.io/gorm"
@@ -46,7 +48,7 @@ func (i Item) List(filter ItemFilter, page, pageSize int) ([]*model.Item, int, e
4648
return nil, 0, err
4749
}
4850

49-
err = db.Joins("Feed").Order("items.pub_date desc").
51+
err = db.Joins("Feed").Order("items.created_at desc, items.pub_date desc").
5052
Offset((page - 1) * pageSize).Limit(pageSize).Find(&res).Error
5153
return res, int(total), err
5254
}
@@ -59,6 +61,11 @@ func (i Item) Get(id uint) (*model.Item, error) {
5961

6062
func (i Item) Creates(items []*model.Item) error {
6163
// limit batchSize to fix 'too many SQL variable' error
64+
now := time.Now()
65+
for _, i := range items {
66+
i.CreatedAt = now
67+
i.UpdatedAt = now
68+
}
6269
return i.db.Clauses(clause.OnConflict{
6370
DoNothing: true,
6471
}).CreateInBatches(items, 5).Error

service/pull/pull.go

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ type Puller struct {
2626
itemRepo ItemRepo
2727
}
2828

29+
// TODO: cache favicon
30+
2931
func NewPuller(feedRepo FeedRepo, itemRepo ItemRepo) *Puller {
3032
return &Puller{
3133
feedRepo: feedRepo,

0 commit comments

Comments
 (0)