feat: 턴 선택기에 복합 커맨드 선택 적용 (#199)

- vue-multiselect 기반
- 초성 검색
- 이득, 불리 표기
- 불가 표기
- 선택후 단축 표기

Reviewed-on: https://storage.hided.net/gitea/devsam/core/pulls/199
Co-authored-by: hide_d <hided62@gmail.com>
Co-committed-by: hide_d <hided62@gmail.com>
This commit was merged in pull request #199.
This commit is contained in:
2021-12-05 23:02:27 +09:00
parent d46d281dcf
commit 2f62d2bc14
14 changed files with 719 additions and 67 deletions
+4 -2
View File
@@ -475,10 +475,12 @@ function getCommandTable(General $general){
if (!$commandObj->canDisplay()) {
continue;
}
$subList[Util::getClassNameFromObj($commandObj)] = [
'compansation'=>$commandObj->getCompensationStyle(),
$subList[] = [
'value'=>Util::getClassNameFromObj($commandObj),
'compensation'=>$commandObj->getCompensationStyle(),
'possible'=>$commandObj->hasMinConditionMet(),
'title'=>$commandObj->getCommandDetailTitle(),
'simpleName'=>$commandObj->getName(),
'reqArg'=>$commandObj::$reqArg,
];
}