support sort account
This commit is contained in:
@@ -161,6 +161,7 @@ func startWebServer(c *cli.Context) error {
|
|||||||
// Accounts
|
// Accounts
|
||||||
apiV1Route.GET("/accounts/list.json", bindApi(api.Accounts.AccountListHandler))
|
apiV1Route.GET("/accounts/list.json", bindApi(api.Accounts.AccountListHandler))
|
||||||
apiV1Route.POST("/accounts/add.json", bindApi(api.Accounts.AccountCreateHandler))
|
apiV1Route.POST("/accounts/add.json", bindApi(api.Accounts.AccountCreateHandler))
|
||||||
|
apiV1Route.POST("/accounts/move.json", bindApi(api.Accounts.AccountMoveHandler))
|
||||||
apiV1Route.POST("/accounts/delete.json", bindApi(api.Accounts.AccountDeleteHandler))
|
apiV1Route.POST("/accounts/delete.json", bindApi(api.Accounts.AccountDeleteHandler))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -124,6 +124,40 @@ func (a *AccountsApi) AccountCreateHandler(c *core.Context) (interface{}, *errs.
|
|||||||
return accountInfoResp, nil
|
return accountInfoResp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *AccountsApi) AccountMoveHandler(c *core.Context) (interface{}, *errs.Error) {
|
||||||
|
var accountMoveReq models.AccountMoveRequest
|
||||||
|
err := c.ShouldBindJSON(&accountMoveReq)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.WarnfWithRequestId(c, "[accounts.AccountMoveHandler] parse request failed, because %s", err.Error())
|
||||||
|
return nil, errs.NewIncompleteOrIncorrectSubmissionError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
uid := c.GetCurrentUid()
|
||||||
|
accounts := make([]*models.Account, len(accountMoveReq.NewDisplayOrders))
|
||||||
|
|
||||||
|
for i := 0; i < len(accountMoveReq.NewDisplayOrders); i++ {
|
||||||
|
newDisplayOrder := accountMoveReq.NewDisplayOrders[i]
|
||||||
|
account := &models.Account{
|
||||||
|
Uid: uid,
|
||||||
|
AccountId: newDisplayOrder.Id,
|
||||||
|
DisplayOrder: newDisplayOrder.DisplayOrder,
|
||||||
|
}
|
||||||
|
|
||||||
|
accounts[i] = account
|
||||||
|
}
|
||||||
|
|
||||||
|
err = a.accounts.ModifyAccountDisplayOrders(uid, accounts)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.ErrorfWithRequestId(c, "[accounts.AccountMoveHandler] failed to move accounts for user \"uid:%d\", because %s", uid, err.Error())
|
||||||
|
return nil, errs.Or(err, errs.ErrOperationFailed)
|
||||||
|
}
|
||||||
|
|
||||||
|
log.InfofWithRequestId(c, "[accounts.AccountMoveHandler] user \"uid:%d\" has moved accounts", uid)
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (a *AccountsApi) AccountDeleteHandler(c *core.Context) (interface{}, *errs.Error) {
|
func (a *AccountsApi) AccountDeleteHandler(c *core.Context) (interface{}, *errs.Error) {
|
||||||
var accountDeleteReq models.AccountDeleteRequest
|
var accountDeleteReq models.AccountDeleteRequest
|
||||||
err := c.ShouldBindJSON(&accountDeleteReq)
|
err := c.ShouldBindJSON(&accountDeleteReq)
|
||||||
|
|||||||
@@ -51,6 +51,15 @@ type AccountCreateRequest struct {
|
|||||||
SubAccounts []*AccountCreateRequest `json:"subAccounts" binding:"omitempty"`
|
SubAccounts []*AccountCreateRequest `json:"subAccounts" binding:"omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type AccountMoveRequest struct {
|
||||||
|
NewDisplayOrders []*AccountNewDisplayOrderRequest `json:"newDisplayOrders"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AccountNewDisplayOrderRequest struct {
|
||||||
|
Id int64 `json:"id,string" binding:"required,min=1"`
|
||||||
|
DisplayOrder int `json:"displayOrder"`
|
||||||
|
}
|
||||||
|
|
||||||
type AccountDeleteRequest struct {
|
type AccountDeleteRequest struct {
|
||||||
Id int64 `json:"id,string" binding:"required,min=1"`
|
Id int64 `json:"id,string" binding:"required,min=1"`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -122,6 +122,25 @@ func (s *AccountService) CreateAccounts(mainAccount *models.Account, childrenAcc
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *AccountService) ModifyAccountDisplayOrders(uid int64, accounts []*models.Account) error {
|
||||||
|
for i := 0; i < len(accounts); i++ {
|
||||||
|
accounts[i].UpdatedUnixTime = time.Now().Unix()
|
||||||
|
}
|
||||||
|
|
||||||
|
return s.UserDataDB(uid).DoTransaction(func(sess *xorm.Session) error {
|
||||||
|
for i := 0; i < len(accounts); i++ {
|
||||||
|
account := accounts[i]
|
||||||
|
_, err := sess.Cols("display_order", "updated_unix_time").Where("account_id=? AND uid=? AND deleted=?", account.AccountId, account.Uid, false).Update(account)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func (s *AccountService) DeleteAccounts(uid int64, ids []int64) error {
|
func (s *AccountService) DeleteAccounts(uid int64, ids []int64) error {
|
||||||
if uid <= 0 {
|
if uid <= 0 {
|
||||||
return errs.ErrUserIdInvalid
|
return errs.ErrUserIdInvalid
|
||||||
|
|||||||
@@ -18,6 +18,9 @@ export default {
|
|||||||
theme: 'ios',
|
theme: 'ios',
|
||||||
autoDarkTheme: self.$settings.isEnableAutoDarkMode(),
|
autoDarkTheme: self.$settings.isEnableAutoDarkMode(),
|
||||||
routes: routes,
|
routes: routes,
|
||||||
|
touch: {
|
||||||
|
tapHold: true
|
||||||
|
},
|
||||||
sheet: {
|
sheet: {
|
||||||
backdrop: true,
|
backdrop: true,
|
||||||
closeOnEscape: true
|
closeOnEscape: true
|
||||||
|
|||||||
@@ -174,6 +174,11 @@ export default {
|
|||||||
subAccounts
|
subAccounts
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
moveAccount: ({ newDisplayOrders }) => {
|
||||||
|
return axios.post('v1/accounts/move.json', {
|
||||||
|
newDisplayOrders,
|
||||||
|
});
|
||||||
|
},
|
||||||
deleteAccount: ({ id }) => {
|
deleteAccount: ({ id }) => {
|
||||||
return axios.post('v1/accounts/delete.json', {
|
return axios.post('v1/accounts/delete.json', {
|
||||||
id
|
id
|
||||||
|
|||||||
@@ -43,6 +43,24 @@ function getCategorizedAccounts(allAccounts) {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getAccountByAccountId(categorizedAccounts, accountId) {
|
||||||
|
for (let category in categorizedAccounts) {
|
||||||
|
if (!Object.prototype.hasOwnProperty.call(categorizedAccounts, category)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const accountList = categorizedAccounts[category];
|
||||||
|
|
||||||
|
for (let i = 0; i < accountList.length; i++) {
|
||||||
|
if (accountList[i].id === accountId) {
|
||||||
|
return accountList[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
isFunction,
|
isFunction,
|
||||||
isObject,
|
isObject,
|
||||||
@@ -51,4 +69,5 @@ export default {
|
|||||||
isNumber,
|
isNumber,
|
||||||
isBoolean,
|
isBoolean,
|
||||||
getCategorizedAccounts,
|
getCategorizedAccounts,
|
||||||
|
getAccountByAccountId,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -323,6 +323,7 @@ export default {
|
|||||||
'Account currency cannot be empty': 'Account currency cannot be empty',
|
'Account currency cannot be empty': 'Account currency cannot be empty',
|
||||||
'You have added a new account': 'You have added a new account',
|
'You have added a new account': 'You have added a new account',
|
||||||
'Unable to add account': 'Unable to add account',
|
'Unable to add account': 'Unable to add account',
|
||||||
|
'Unable to move account': 'Unable to move account',
|
||||||
'Are you sure you want to delete this account?': 'Are you sure you want to delete this account?',
|
'Are you sure you want to delete this account?': 'Are you sure you want to delete this account?',
|
||||||
'Unable to delete this account': 'Unable to delete this account',
|
'Unable to delete this account': 'Unable to delete this account',
|
||||||
'User Profile': 'User Profile',
|
'User Profile': 'User Profile',
|
||||||
|
|||||||
@@ -323,6 +323,7 @@ export default {
|
|||||||
'Account currency cannot be empty': '账户货币不能为空',
|
'Account currency cannot be empty': '账户货币不能为空',
|
||||||
'You have added a new account': '您已经添加新账户',
|
'You have added a new account': '您已经添加新账户',
|
||||||
'Unable to add account': '无法添加账户',
|
'Unable to add account': '无法添加账户',
|
||||||
|
'Unable to move account': '无法移动账户',
|
||||||
'Are you sure you want to delete this account?': '您确定要删除该账户吗?',
|
'Are you sure you want to delete this account?': '您确定要删除该账户吗?',
|
||||||
'Unable to delete this account': '无法删除该账户',
|
'Unable to delete this account': '无法删除该账户',
|
||||||
'User Profile': '用户信息',
|
'User Profile': '用户信息',
|
||||||
|
|||||||
@@ -4,7 +4,8 @@
|
|||||||
<f7-nav-left :back-link="$t('Back')"></f7-nav-left>
|
<f7-nav-left :back-link="$t('Back')"></f7-nav-left>
|
||||||
<f7-nav-title :title="$t('Account List')"></f7-nav-title>
|
<f7-nav-title :title="$t('Account List')"></f7-nav-title>
|
||||||
<f7-nav-right>
|
<f7-nav-right>
|
||||||
<f7-link href="/account/add" icon-f7="plus"></f7-link>
|
<f7-link href="/account/add" icon-f7="plus" v-if="!sortable"></f7-link>
|
||||||
|
<f7-link :text="$t('Done')" :class="{ 'disabled': savingSort }" @click="saveSortResult" v-else-if="sortable"></f7-link>
|
||||||
</f7-nav-right>
|
</f7-nav-right>
|
||||||
</f7-navbar>
|
</f7-navbar>
|
||||||
|
|
||||||
@@ -40,11 +41,11 @@
|
|||||||
<f7-card v-for="accountCategory in usedAccountCategories" :key="accountCategory.id">
|
<f7-card v-for="accountCategory in usedAccountCategories" :key="accountCategory.id">
|
||||||
<f7-card-header>{{ $t(accountCategory.name) }}</f7-card-header>
|
<f7-card-header>{{ $t(accountCategory.name) }}</f7-card-header>
|
||||||
<f7-card-content :padding="false">
|
<f7-card-content :padding="false">
|
||||||
<f7-list>
|
<f7-list sortable sortable-tap-hold :sortable-enabled="sortable" @sortable:sort="onSort">
|
||||||
<f7-list-item v-for="account in accounts[accountCategory.id]"
|
<f7-list-item v-for="account in accounts[accountCategory.id]"
|
||||||
:key="account.id" :id="account | accountDomId"
|
:key="account.id" :id="account | accountDomId"
|
||||||
:title="account.name" :after="account.balance | currency(account.currency)"
|
:title="account.name" :after="account.balance | currency(account.currency)"
|
||||||
link="#" swipeout
|
link="#" swipeout @taphold.native="setSortable()"
|
||||||
>
|
>
|
||||||
<f7-swipeout-actions right>
|
<f7-swipeout-actions right>
|
||||||
<f7-swipeout-button color="orange" :text="$t('Edit')" @click="edit(account)"></f7-swipeout-button>
|
<f7-swipeout-button color="orange" :text="$t('Edit')" @click="edit(account)"></f7-swipeout-button>
|
||||||
@@ -64,7 +65,9 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
accounts: {},
|
accounts: {},
|
||||||
loading: true
|
loading: true,
|
||||||
|
sortable: false,
|
||||||
|
savingSort: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -140,6 +143,74 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
setSortable() {
|
||||||
|
this.sortable = true;
|
||||||
|
},
|
||||||
|
onSort(event) {
|
||||||
|
if (!event || !event.el || !event.el.id || event.el.id.indexOf('account_') !== 0) {
|
||||||
|
this.$toast('Unable to move account');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const id = event.el.id.substr(8);
|
||||||
|
const account = this.$utilities.getAccountByAccountId(this.accounts, id);
|
||||||
|
|
||||||
|
if (!account || !this.accounts[account.category] || !this.accounts[account.category][event.to]) {
|
||||||
|
this.$toast('Unable to move account');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const accountList = this.accounts[account.category];
|
||||||
|
accountList.splice(event.to, 0, accountList.splice(event.from, 1)[0]);
|
||||||
|
},
|
||||||
|
saveSortResult() {
|
||||||
|
const self = this;
|
||||||
|
const newDisplayOrders = [];
|
||||||
|
|
||||||
|
self.savingSort = true;
|
||||||
|
|
||||||
|
for (let category in self.accounts) {
|
||||||
|
if (!Object.prototype.hasOwnProperty.call(self.accounts, category)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const accountList = self.accounts[category];
|
||||||
|
|
||||||
|
for (let i = 0; i < accountList.length; i++) {
|
||||||
|
newDisplayOrders.push({
|
||||||
|
id: accountList[i].id,
|
||||||
|
displayOrder: i + 1
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
self.$showLoading();
|
||||||
|
|
||||||
|
self.$services.moveAccount({
|
||||||
|
newDisplayOrders: newDisplayOrders
|
||||||
|
}).then(response => {
|
||||||
|
self.savingSort = false;
|
||||||
|
self.$hideLoading();
|
||||||
|
|
||||||
|
const data = response.data;
|
||||||
|
|
||||||
|
if (!data || !data.success || !data.result) {
|
||||||
|
self.$alert('Unable to move account');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.sortable = false;
|
||||||
|
}).catch(error => {
|
||||||
|
self.savingSort = false;
|
||||||
|
self.$hideLoading();
|
||||||
|
|
||||||
|
if (error.response && error.response.data && error.response.data.errorMessage) {
|
||||||
|
self.$alert({ error: error.response.data });
|
||||||
|
} else if (!error.processed) {
|
||||||
|
self.$alert('Unable to move account');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
edit() {
|
edit() {
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -174,7 +245,7 @@ export default {
|
|||||||
self.$hideLoading();
|
self.$hideLoading();
|
||||||
|
|
||||||
if (error.response && error.response.data && error.response.data.errorMessage) {
|
if (error.response && error.response.data && error.response.data.errorMessage) {
|
||||||
self.$alert({error: error.response.data});
|
self.$alert({ error: error.response.data });
|
||||||
} else if (!error.processed) {
|
} else if (!error.processed) {
|
||||||
self.$alert('Unable to delete this account');
|
self.$alert('Unable to delete this account');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user