Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCheck
design
Commits
c73738db
Commit
c73738db
authored
Jul 14, 2021
by
Takatoshi Miura
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.4.0_miura_ソート、カテゴリ、検索結果の保持
parent
f8816789
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
5 deletions
+47
-5
app/script/check-foriOS.js
+5
-0
app/script/check.js
+42
-5
No files found.
app/script/check-foriOS.js
View file @
c73738db
...
...
@@ -57,4 +57,8 @@ CHK_iOS.searchOperationList = function (searchKeyword, searchStartDate, searchEn
})
);
};
CHK_iOS
.
getSortType
=
function
()
{
return
parseInt
(
callNativeApp
(
NATIVE_KEY_IOS
.
getSortType
,
{}));
}
\ No newline at end of file
app/script/check.js
View file @
c73738db
...
...
@@ -173,7 +173,8 @@ const NATIVE_KEY_IOS = {
getOperationGroupMasterListJson
:
"getOperationGroupMasterListJson"
,
getOperationGroupMasterRelationListJson
:
"getOperationGroupMasterRelationListJson"
,
getPushMessageListJson
:
"getPushMessageListJson"
,
searchOperationList
:
"searchOperationList"
searchOperationList
:
"searchOperationList"
,
getSortType
:
"getSortType"
};
// レポートファイル保存タイプ
CHK
.
REPORT_SAVE_TYPE
=
{
...
...
@@ -2793,6 +2794,26 @@ CHK.createCategory = function(operationGroupMasterList) {
};
/**
* 保存したsortTypeから作業一覧を描画
*/
CHK
.
createOperationListBySavedSortType
=
function
()
{
let
sortIndex
=
CHK_CONSTANT
.
SORT_TYPE
.
START_DATE_ASC
;
if
(
CHK
.
isIOS
)
{
sortIndex
=
CHK_iOS
.
getSortType
();
}
else
if
(
CHK
.
isAndroid
)
{
// TODO: 端末に保存したsortTypeを取得
}
let
sortType
=
document
.
getElementsByClassName
(
"sort-type"
)[
sortIndex
];
CHK
.
changeSortType
(
sortType
);
}
CHK
.
changeSortType
=
function
(
sortType
)
{
$
(
".sort-type"
).
removeClass
(
"active"
);
$
(
sortType
).
addClass
(
"active"
);
CHK
.
createOperationList
(
CHK
.
operation
.
operationList
,
true
);
}
/**
* 作業一覧描画
*/
CHK
.
createOperationList
=
function
(
operationList
,
isSearched
=
false
)
{
...
...
@@ -2802,6 +2823,13 @@ CHK.createOperationList = function(operationList, isSearched = false) {
}
if
(
operationList
.
length
>
1
)
{
var
sortType
=
$
(
".sort-type.active"
).
data
(
"sort"
);
if
(
isSearched
)
{
if
(
CHK
.
isIOS
)
{
webkit
.
messageHandlers
.
saveSortType
.
postMessage
(
sortType
);
}
else
if
(
CHK
.
isAndroid
)
{
// TODO: sortTypeを端末に保存
}
}
switch
(
sortType
)
{
case
CHK_CONSTANT
.
SORT_TYPE
.
NAME
:
console
.
log
(
sortType
);
...
...
@@ -2871,18 +2899,27 @@ CHK.search = function() {
CHK
.
isSearched
=
true
;
CHK
.
operation
.
searchOperationList
=
searchResult
.
operationList
;
CHK
.
createOperationList
(
searchResult
.
operationList
);
// TODO: カテゴリの保存
}
else
if
(
CHK
.
isIOS
)
{
searchResult
=
CHK_iOS
.
searchOperationList
(
searchKeyword
,
searchStartDate
,
searchEndDate
,
CHK
.
operationGroupMasterId
);
CHK
.
isSearched
=
true
;
CHK
.
operation
.
searchOperationList
=
searchResult
.
operationList
;
CHK
.
createOperationList
(
searchResult
.
operationList
);
webkit
.
messageHandlers
.
saveOperationGroupMaster
.
postMessage
(
CHK
.
operationGroupMasterId
);
let
searchButtonTaped
=
searchKeyword
!=
""
||
searchStartDate
!=
""
||
searchEndDate
!=
""
;
if
(
searchButtonTaped
)
{
webkit
.
messageHandlers
.
showSearchResultToast
.
postMessage
(
searchResult
.
operationList
.
length
);
}
}
};
CHK
.
changeSortType
=
function
(
sortType
)
{
$
(
".sort-type"
).
removeClass
(
"active"
);
$
(
sortType
).
addClass
(
"active"
);
CHK
.
createOperationList
(
CHK
.
operation
.
operationList
,
true
);
/**
* 検索条件をセット
*/
CHK
.
setSearchInfo
=
function
(
taskName
,
startDate
,
endDate
)
{
$
(
"#searchTaskName"
).
val
(
taskName
);
$
(
"#searchStartDate"
).
val
(
startDate
);
$
(
"#searchEndDate"
).
val
(
endDate
);
}
// カテゴリーのドロワーメニュー開閉
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment