feat:ボタンをスペースに配置
This commit is contained in:
@@ -218,6 +218,8 @@ def deoployappfromkintone(app:str,revision:str,c:config.KINTONE_ENV):
|
|||||||
r = httpx.post(url,headers=headers,data=json.dumps(data))
|
r = httpx.post(url,headers=headers,data=json.dumps(data))
|
||||||
return r.json
|
return r.json
|
||||||
|
|
||||||
|
# 既定項目に含めるアプリのフィールドのみ取得する
|
||||||
|
# スペース、枠線、ラベルを含まない
|
||||||
def getfieldsfromkintone(app:str,c:config.KINTONE_ENV):
|
def getfieldsfromkintone(app:str,c:config.KINTONE_ENV):
|
||||||
headers={config.API_V1_AUTH_KEY:c.API_V1_AUTH_VALUE}
|
headers={config.API_V1_AUTH_KEY:c.API_V1_AUTH_VALUE}
|
||||||
params = {"app":app}
|
params = {"app":app}
|
||||||
@@ -225,6 +227,44 @@ def getfieldsfromkintone(app:str,c:config.KINTONE_ENV):
|
|||||||
r = httpx.get(url,headers=headers,params=params)
|
r = httpx.get(url,headers=headers,params=params)
|
||||||
return r.json()
|
return r.json()
|
||||||
|
|
||||||
|
# フォームに配置するフィールドのみ取得する
|
||||||
|
# スペース、枠線、ラベルも含める
|
||||||
|
def getformfromkintone(app:str,c:config.KINTONE_ENV):
|
||||||
|
headers={config.API_V1_AUTH_KEY:c.API_V1_AUTH_VALUE}
|
||||||
|
params = {"app":app}
|
||||||
|
url = f"{c.BASE_URL}{config.API_V1_STR}/form.json"
|
||||||
|
r = httpx.get(url,headers=headers,params=params)
|
||||||
|
return r.json()
|
||||||
|
|
||||||
|
|
||||||
|
def merge_kintone_fields(fields_response: dict, form_response: dict) -> dict:
|
||||||
|
fields_properties = fields_response.get('properties', {})
|
||||||
|
form_properties = form_response.get('properties', [])
|
||||||
|
|
||||||
|
merged_properties = {k: v for k, v in fields_properties.items()}
|
||||||
|
|
||||||
|
for index, form_field in enumerate(form_properties):
|
||||||
|
code = form_field.get('code')
|
||||||
|
if code:
|
||||||
|
if code and code not in merged_properties:
|
||||||
|
merged_properties[code] = form_field
|
||||||
|
else:
|
||||||
|
element_id = form_field.get('elementId')
|
||||||
|
if element_id:
|
||||||
|
key = element_id
|
||||||
|
form_field['code']=element_id
|
||||||
|
form_field['label']=form_field.get('type')
|
||||||
|
# else:
|
||||||
|
# key = f"{form_field.get('type')}_{index}"
|
||||||
|
merged_properties[key] = form_field
|
||||||
|
|
||||||
|
merged_response = {
|
||||||
|
'revision': fields_response.get('revision', ''),
|
||||||
|
'properties': merged_properties
|
||||||
|
}
|
||||||
|
|
||||||
|
return merged_response
|
||||||
|
|
||||||
def analysefields(excel,kintone):
|
def analysefields(excel,kintone):
|
||||||
updatefields={}
|
updatefields={}
|
||||||
addfields={}
|
addfields={}
|
||||||
@@ -482,6 +522,15 @@ async def appfields(request:Request,app:str,env = Depends(getkintoneenv)):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise APIException('kintone:appfields',request.url._url, f"Error occurred while get app fileds({env.DOMAIN_NAM}->{app}):",e)
|
raise APIException('kintone:appfields',request.url._url, f"Error occurred while get app fileds({env.DOMAIN_NAM}->{app}):",e)
|
||||||
|
|
||||||
|
@r.get("/allfields")
|
||||||
|
async def allfields(request:Request,app:str,env = Depends(getkintoneenv)):
|
||||||
|
try:
|
||||||
|
field_resp = getfieldsfromkintone(app,env)
|
||||||
|
form_resp = getformfromkintone(app,env)
|
||||||
|
return merge_kintone_fields(field_resp,form_resp)
|
||||||
|
except Exception as e:
|
||||||
|
raise APIException('kintone:allfields',request.url._url, f"Error occurred while get form fileds({env.DOMAIN_NAM}->{app}):",e)
|
||||||
|
|
||||||
@r.get("/appprocess")
|
@r.get("/appprocess")
|
||||||
async def appprocess(request:Request,app:str,env = Depends(getkintoneenv)):
|
async def appprocess(request:Request,app:str,env = Depends(getkintoneenv)):
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -25,3 +25,7 @@ python -m venv env
|
|||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
```
|
```
|
||||||
|
4. backend 起動
|
||||||
|
```bash
|
||||||
|
uvicorn app.main:app --reload
|
||||||
|
```
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
KAB_BACKEND_URL="https://kab-backend.azurewebsites.net/"
|
#KAB_BACKEND_URL="https://kab-backend.azurewebsites.net/"
|
||||||
#KAB_BACKEND_URL="http://127.0.0.1:8000/"
|
KAB_BACKEND_URL="http://127.0.0.1:8000/"
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
import { ref, onMounted, reactive, watchEffect } from 'vue'
|
import { ref, onMounted, reactive, watchEffect } from 'vue'
|
||||||
import { api } from 'boot/axios';
|
import { api } from 'boot/axios';
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'fieldSelect',
|
name: 'fieldSelect',
|
||||||
props: {
|
props: {
|
||||||
@@ -28,8 +29,9 @@ export default {
|
|||||||
type:Array,
|
type:Array,
|
||||||
default:()=>[]
|
default:()=>[]
|
||||||
},
|
},
|
||||||
updateSelects: {
|
fieldTypes:{
|
||||||
type: Function
|
type:Array,
|
||||||
|
default:()=>[]
|
||||||
},
|
},
|
||||||
filter: String,
|
filter: String,
|
||||||
},
|
},
|
||||||
@@ -43,29 +45,26 @@ export default {
|
|||||||
const pageSetting = ref({
|
const pageSetting = ref({
|
||||||
sortBy: 'desc',
|
sortBy: 'desc',
|
||||||
descending: false,
|
descending: false,
|
||||||
page: 2,
|
page: 1,
|
||||||
rowsPerPage: props.not_page ? 0 : 5
|
rowsPerPage: props.not_page ? 0 : 5
|
||||||
// rowsNumber: xx if getting data from a server
|
// rowsNumber: xx if getting data from a server
|
||||||
});
|
});
|
||||||
const rows = reactive([]);
|
const rows = reactive([]);
|
||||||
const selected = ref(props.selectedFields && props.selectedFields.length>0?props.selectedFields:[]);
|
const selected = ref(props.selectedFields && props.selectedFields.length>0?props.selectedFields:[]);
|
||||||
|
|
||||||
watchEffect(() => {
|
|
||||||
props.updateSelects(selected);
|
|
||||||
});
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const res = await api.get('api/v1/appfields', {
|
const url = props.fieldTypes.includes('SPACER')?'api/v1/allfields':'api/v1/appfields';
|
||||||
|
const res = await api.get(url, {
|
||||||
params: {
|
params: {
|
||||||
app: props.appId
|
app: props.appId
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let fields = res.data.properties;
|
let fields = res.data.properties;
|
||||||
console.log(fields);
|
|
||||||
Object.keys(fields).forEach((key) => {
|
Object.keys(fields).forEach((key) => {
|
||||||
const fld = fields[key];
|
const fld = fields[key];
|
||||||
// rows.push({name:fields[key].label,code:fields[key].code,type:fields[key].type});
|
if(props.fieldTypes.length===0 || props.fieldTypes.includes(fld.type)){
|
||||||
rows.push({ name: fld.label, ...fld });
|
rows.push({ name: fld.code, ...fld });
|
||||||
|
}
|
||||||
});
|
});
|
||||||
isLoaded.value = true;
|
isLoaded.value = true;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<field-select ref="fieldDlg" name="フィールド" :type="selectType" :updateSelects="updateItems"
|
<field-select ref="fieldDlg" name="フィールド" :type="selectType"
|
||||||
:appId="selectedField.app?.id" not_page :filter="fieldFilter" :selectedFields="selectedField.fields"></field-select>
|
:appId="selectedField.app?.id" not_page :filter="fieldFilter" :selectedFields="selectedField.fields"></field-select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -99,9 +99,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</q-input>
|
</q-input>
|
||||||
</template>
|
</template>
|
||||||
|
<AppSelect ref="appDlg" name="アプリ" type="single" :filter="filter" :fieldTypes="fieldTypes"></AppSelect>
|
||||||
<AppSelect ref="appDlg" name="アプリ" type="single" :filter="filter"
|
|
||||||
:updateExternalSelectAppInfo="updateExternalSelectAppInfo"></AppSelect>
|
|
||||||
</show-dialog>
|
</show-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -154,6 +152,10 @@ export default defineComponent({
|
|||||||
selectType:{
|
selectType:{
|
||||||
type:String,
|
type:String,
|
||||||
default:'single'
|
default:'single'
|
||||||
|
},
|
||||||
|
fieldTypes:{
|
||||||
|
type:Array,
|
||||||
|
default:()=>[]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setup(props, { emit }) {
|
setup(props, { emit }) {
|
||||||
@@ -197,13 +199,6 @@ export default defineComponent({
|
|||||||
selectedField.value.fields = fieldDlg.value.selected;
|
selectedField.value.fields = fieldDlg.value.selected;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const updateExternalSelectAppInfo = (newAppinfo:IApp) => {
|
|
||||||
// selectedField.value.app = newAppinfo
|
|
||||||
}
|
|
||||||
|
|
||||||
const updateItems = (newFields:IField[]) => {
|
|
||||||
// selectedField.value.fields = newFields
|
|
||||||
}
|
|
||||||
|
|
||||||
const removeField=(index:number)=>{
|
const removeField=(index:number)=>{
|
||||||
selectedField.value.fields.splice(index,1);
|
selectedField.value.fields.splice(index,1);
|
||||||
@@ -223,9 +218,7 @@ export default defineComponent({
|
|||||||
selectedField,
|
selectedField,
|
||||||
showSelectApp,
|
showSelectApp,
|
||||||
isSelected,
|
isSelected,
|
||||||
updateExternalSelectAppInfo,
|
|
||||||
filter: ref(),
|
filter: ref(),
|
||||||
updateItems,
|
|
||||||
clear,
|
clear,
|
||||||
fieldFilter: ref(),
|
fieldFilter: ref(),
|
||||||
removeField
|
removeField
|
||||||
|
|||||||
@@ -7,9 +7,6 @@
|
|||||||
{{ selectedField.name }}
|
{{ selectedField.name }}
|
||||||
</q-chip>
|
</q-chip>
|
||||||
</template>
|
</template>
|
||||||
<!-- <template v-slot:hint v-if="isSelected">
|
|
||||||
<div> 項目コード:<q-chip size="sm" outline color="secondary" text-color="white">{{selectedField.code}}</q-chip></div>
|
|
||||||
</template> -->
|
|
||||||
<template v-slot:hint v-if="!isSelected">
|
<template v-slot:hint v-if="!isSelected">
|
||||||
{{ placeholder }}
|
{{ placeholder }}
|
||||||
</template>
|
</template>
|
||||||
@@ -19,7 +16,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</q-field>
|
</q-field>
|
||||||
<show-dialog v-model:visible="show" name="フィールド一覧" @close="closeDg" widht="400px">
|
<show-dialog v-model:visible="show" name="フィールド一覧" @close="closeDg" widht="400px">
|
||||||
<field-select ref="appDg" name="フィールド" type="single" :appId="store.appInfo?.appId"></field-select>
|
<field-select ref="appDg" name="フィールド" :type="selectType" :appId="store.appInfo?.appId" :fieldTypes="fieldTypes"></field-select>
|
||||||
</show-dialog>
|
</show-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -54,6 +51,14 @@ export default defineComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
selectType:{
|
||||||
|
type:String,
|
||||||
|
default:'single'
|
||||||
|
},
|
||||||
|
fieldTypes:{
|
||||||
|
type:Array,
|
||||||
|
default:()=>[]
|
||||||
|
},
|
||||||
hint: {
|
hint: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ export default defineComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
fieldTypes:{
|
||||||
|
type:Array,
|
||||||
|
default:()=>[]
|
||||||
|
},
|
||||||
hint: {
|
hint: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
|
|||||||
24
plugin/kintone-addins/src/actions/button-add.css
Normal file
24
plugin/kintone-addins/src/actions/button-add.css
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
.alc-button-normal {
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0 16px;
|
||||||
|
margin-left: 16px;
|
||||||
|
margin-top: 8px;
|
||||||
|
min-width: 100px;
|
||||||
|
outline: none;
|
||||||
|
border: 1px solid #e3e7e8;
|
||||||
|
background-color: #f7f9fa;
|
||||||
|
box-shadow: 1px 1px 1px #fff inset;
|
||||||
|
color: #3498db;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 32px;
|
||||||
|
}
|
||||||
|
.alc-button-normal:hover {
|
||||||
|
background-color: #c8d6dd;
|
||||||
|
box-shadow: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.alc-button-normal:active {
|
||||||
|
color: #f7f9fa;
|
||||||
|
background-color: #54b8eb;
|
||||||
|
}
|
||||||
@@ -8,12 +8,18 @@ import { IAction, IActionProperty, IActionNode, IActionResult } from "../types/A
|
|||||||
interface IButtonAddProps {
|
interface IButtonAddProps {
|
||||||
//ボタン表示名
|
//ボタン表示名
|
||||||
buttonName: string;
|
buttonName: string;
|
||||||
|
space?:ISpace;
|
||||||
//配置位置
|
//配置位置
|
||||||
position: string;
|
position: string;
|
||||||
//イベント名
|
//イベント名
|
||||||
eventName:string
|
eventName:string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ISpace{
|
||||||
|
type:string,
|
||||||
|
elementId:string
|
||||||
|
}
|
||||||
|
|
||||||
export class ButtonAddAction implements IAction {
|
export class ButtonAddAction implements IAction {
|
||||||
name: string;
|
name: string;
|
||||||
actionProps: IActionProperty[];
|
actionProps: IActionProperty[];
|
||||||
@@ -47,43 +53,19 @@ export class ButtonAddAction implements IAction {
|
|||||||
}
|
}
|
||||||
this.props = actionNode.ActionValue as IButtonAddProps;
|
this.props = actionNode.ActionValue as IButtonAddProps;
|
||||||
//ボタンを配置する
|
//ボタンを配置する
|
||||||
const menuSpace = kintone.app.record.getHeaderMenuSpaceElement();
|
let buttonSpace;
|
||||||
if(!menuSpace) return result;
|
if(this.props.space && this.props.space.elementId){
|
||||||
if($("style#alc-button-add").length===0){
|
buttonSpace = kintone.app.record.getSpaceElement(this.props.space.elementId);
|
||||||
const css=`
|
}else{
|
||||||
.alc-button-normal {
|
buttonSpace = kintone.app.record.getHeaderMenuSpaceElement();
|
||||||
display: inline-block;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 0 16px;
|
|
||||||
margin-left: 16px;
|
|
||||||
margin-top: 8px;
|
|
||||||
min-width: 100px;
|
|
||||||
outline: none;
|
|
||||||
border: 1px solid #e3e7e8;
|
|
||||||
background-color: #f7f9fa;
|
|
||||||
box-shadow: 1px 1px 1px #fff inset;
|
|
||||||
color: #3498db;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 32px;
|
|
||||||
}
|
|
||||||
.alc-button-normal:hover {
|
|
||||||
background-color: #c8d6dd;
|
|
||||||
box-shadow: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.alc-button-normal:active {
|
|
||||||
color: #f7f9fa;
|
|
||||||
background-color: #54b8eb;
|
|
||||||
}`;
|
|
||||||
const style = $("<style id='alc-button-add'>/<style>");
|
|
||||||
style.text(css);
|
|
||||||
$("head").append(style);
|
|
||||||
}
|
}
|
||||||
|
if(!buttonSpace) return result;
|
||||||
|
|
||||||
const button =$(`<button id='${this.props.eventName}' class='alc-button-normal' >${this.props.buttonName}</button>`);
|
const button =$(`<button id='${this.props.eventName}' class='alc-button-normal' >${this.props.buttonName}</button>`);
|
||||||
if(this.props.position==="一番左に追加する"){
|
if(this.props.position==="一番左に追加する"){
|
||||||
$(menuSpace).prepend(button);
|
$(buttonSpace).prepend(button);
|
||||||
}else{
|
}else{
|
||||||
$(menuSpace).append(button);
|
$(buttonSpace).append(button);
|
||||||
}
|
}
|
||||||
const clickEventName = `${event.type}.customButtonClick.${this.props.eventName}`;
|
const clickEventName = `${event.type}.customButtonClick.${this.props.eventName}`;
|
||||||
button.on("click",()=>{
|
button.on("click",()=>{
|
||||||
@@ -98,7 +80,6 @@ export class ButtonAddAction implements IAction {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
register(): void {
|
register(): void {
|
||||||
actionAddins[this.name] = this;
|
actionAddins[this.name] = this;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
// export const sum = (a: number, b: number) => {
|
|
||||||
// if ('development' === process.env.NODE_ENV) {
|
|
||||||
// console.log('boop');
|
|
||||||
// }
|
|
||||||
// return a + b;
|
|
||||||
// };
|
|
||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
import { ActionProcess } from './types/action-process';
|
import { ActionProcess } from './types/action-process';
|
||||||
import { ActionFlow } from './types/ActionTypes';
|
import { ActionFlow } from './types/ActionTypes';
|
||||||
|
|||||||
Reference in New Issue
Block a user