fix(views): remove default filter from frontend, apply by default to new list views instead (#2240)
Fixes #2234 Co-authored-by: Daniel Herrmann <daniel.herrmann1@gmail.com> Reviewed-on: https://kolaente.dev/vikunja/vikunja/pulls/2240 Reviewed-by: konrad <k@knt.li> Co-authored-by: waza-ari <daniel.herrmann@makerspace-darmstadt.de> Co-committed-by: waza-ari <daniel.herrmann@makerspace-darmstadt.de>
This commit is contained in:
parent
95276ceebe
commit
f0d695e789
@ -18,7 +18,7 @@ export function getDefaultTaskFilterParams(): TaskFilterParams {
|
|||||||
return {
|
return {
|
||||||
sort_by: ['position', 'id'],
|
sort_by: ['position', 'id'],
|
||||||
order_by: ['asc', 'desc'],
|
order_by: ['asc', 'desc'],
|
||||||
filter: 'done = false',
|
filter: '',
|
||||||
filter_include_nulls: false,
|
filter_include_nulls: false,
|
||||||
filter_timezone: '',
|
filter_timezone: '',
|
||||||
s: '',
|
s: '',
|
||||||
|
51
pkg/migration/20240329170952.go
Normal file
51
pkg/migration/20240329170952.go
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
// Vikunja is a to-do list application to facilitate your life.
|
||||||
|
// Copyright 2018-present Vikunja and contributors. All rights reserved.
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public Licensee as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public Licensee for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public Licensee
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package migration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"src.techknowlogick.com/xormigrate"
|
||||||
|
"xorm.io/xorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
type projectView20240329170952 struct {
|
||||||
|
ID int64 `xorm:"autoincr not null unique pk" json:"id" param:"view"`
|
||||||
|
Filter string `xorm:"text null default null" query:"filter" json:"filter"`
|
||||||
|
ViewKind int `xorm:"not null" json:"view_kind"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (projectView20240329170952) TableName() string {
|
||||||
|
return "project_views"
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
migrations = append(migrations, &xormigrate.Migration{
|
||||||
|
ID: "20240329170952",
|
||||||
|
Description: "Update default filter for list views to hide completed tasks",
|
||||||
|
Migrate: func(tx *xorm.Engine) error {
|
||||||
|
|
||||||
|
// Update the filter for all list views to hide completed tasks unless the filter is already set
|
||||||
|
_, err := tx.Where("view_kind = ? AND filter = ?", 0, "").Cols("filter").Update(&projectView20240329170952{Filter: "done = false"})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
Rollback: func(tx *xorm.Engine) error {
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
@ -391,6 +391,7 @@ func CreateDefaultViewsForProject(s *xorm.Session, project *Project, a web.Auth,
|
|||||||
Title: "List",
|
Title: "List",
|
||||||
ViewKind: ProjectViewKindList,
|
ViewKind: ProjectViewKindList,
|
||||||
Position: 100,
|
Position: 100,
|
||||||
|
Filter: "done = false",
|
||||||
}
|
}
|
||||||
err = createProjectView(s, list, a, createBacklogBucket)
|
err = createProjectView(s, list, a, createBacklogBucket)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user