Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | <template>
<form @submit.prevent="onSubmit">
<v-container>
<v-alert
v-if="serverGeneralError"
type="error"
closeable
class="mb-4"
@click:close="serverGeneralError = null"
>
{{ serverGeneralError }}
</v-alert>
<v-row dense>
<v-col cols="12">
<RequiredInput
v-bind="fDisplayName"
:label="L.displayName"
:placeholder="PH.displayName"
variant="underlined"
required
/>
</v-col>
<!-- :label-key="L.displayName"-->
<v-col cols="12">
<RequiredSelect
v-bind="fRelationshipTypeId"
:label="L.relationshipTypeId"
:placeholder="PH.relationshipTypeId"
component="v-select"
variant="underlined"
:items="relationshipTypeSelectItems"
item-title="label"
item-value="value"
required
/>
<!-- :label-key="L.relationshipTypeId"-->
</v-col>
<v-col cols="12">
<RequiredInput
v-bind="fEmail"
:label="L.email"
:placeholder="PH.email"
variant="underlined"
/>
<!-- :label-key="L.email"-->
</v-col>
<v-col cols="12">
<RequiredInput
v-bind="fPhone"
:label="L.phone"
:placeholder="PH.phone"
variant="underlined"
/>
<!-- :label-key="L.phone"-->
</v-col>
<v-col cols="12">
<RequiredInput
v-bind="fNote"
:label="L.note"
:placeholder="PH.note"
variant="underlined"
/>
<!-- :label-key="L.note"-->
</v-col>
</v-row>
<v-col cols="12" class="mt-2 app-dialog-actions">
<AppButton
role="save"
type="submit"
color="primary"
:loading="isSubmitting"
:disabled="isSubmitting"
>
{{ submitLabel }}
</AppButton>
<AppButton
role="cancel"
type="button"
:disabled="isSubmitting"
variant="outlined"
@click="resetForm()"
>
{{ t('ui.verb.reset') }}
</AppButton>
</v-col>
</v-container>
</form>
</template>
<script setup lang="ts">
// region import // 各種ライブラリ・DI対象・ローカルコンポーネント・型の import をまとめる
import { computed, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import { useApi } from '@/composables/useApi'
import logger from '@/libs/logger/logger'
import { withLoading } from '@/libs/loading'
import { makeFieldCatalog, type TFunc } from '@/libs/vee/fieldCatalog'
import { makeContactSchema, type ContactFields } from '@/validation/contactSchema'
import {
type Contact,
type RelationshipType,
} from '@/types/models'
import { useForm } from 'vee-validate'
import RequiredInput from '@/components/atoms/RequiredInput.vue'
import RequiredSelect from '@/components/atoms/RequiredSelect.vue'
import AppButton from '@/components/atoms/AppButton.vue'
import { useVuetifyField } from '@/libs/vee/bindV'
import {setErrorsFrom422} from '@/libs/vee/backendErrors'
// endregion import
// region type // このファイル内でのみ使う型定義(interface, type alias など)
type RelationshipTypeSelectItem = {label: string, value: number}
const CONTACT_FORM_MAP = [
'displayName',
'email',
'phone',
'note',
'relationshipTypeId'
] as const
type ContactFieldName = (typeof CONTACT_FORM_MAP)[number]
// endregion type
// region i18n // useI18n などを初期化し、t() / d() を取り出す
const { t, locale } = useI18n()
// endregion i18n
// region router // useRouter / useRoute など、画面遷移やクエリ取得に関する処理
// endregion router
// region store // Pinia の useXxxStore を読み込み、状態/アクションを利用
// endregion store
// region props // defineProps による外部から受け取る値の定義
const props = defineProps<{
relationshipTypeItems: RelationshipType[]
editingContact?: Contact | null
}>()
// endregion props
// region emits // defineEmits による親へ送るイベント定義
const emit = defineEmits<{
(e: 'submitted'): void
}>()
// endregion emits
// region slots // スロットの型情報や利用(useSlots / defineSlots)
// endregion slots
// region constant // このコンポーネント専用の定数/enum/テーブルなど(不変の値)
const api = useApi()
const tf: TFunc = (key, params) => t(key, params)
const { L, PH, resolveField, msgFromCode } = makeFieldCatalog<ContactFieldName>({
baseKey: 'domain.userContact',
names: CONTACT_FORM_MAP,
t: tf,
rulesDefaultBranch: 'string',
})
// endregion constant
// region state // ref / reactive / useForm など、変化する状態を定義
const serverGeneralError = ref<string | null>(null)
// endregion state
// region computed // 派生状態(computed)をまとめる
const relationshipTypeSelectItems = computed<RelationshipTypeSelectItem[]>(() =>
(props.relationshipTypeItems ?? []).map((o) =>({
label: t(o.label),
value: o.value,
})),
)
const submitLabel = computed(() =>
props.editingContact
? t('ui.verb.update')
: t('ui.verb.add')
)
// endregion computed
// region validation // Zod / Yup / Vee-Validate 等のスキーマ・ルール・フォーム設定
const schema = makeContactSchema(tf, L)
// endregion validation
// region permission // 権限による UI/操作の可否を判定するロジック(isEditable など)
// endregion permission
// region api // Axios クライアントを使った通信処理(fetchXxx / updateXxx など)
const {
handleSubmit,
resetForm,
setErrors,
submitCount,
isSubmitting,
setValues
} = useForm<ContactFields>(
{
validationSchema: schema,
initialValues: {
displayName: null,
email: null,
phone: null,
note: null,
relationshipTypeId: null,
}
}
)
// endregion api
// region watcher // watch / watchEffect など、状態の変化に応じた処理
watch(
() => props.editingContact,
async (con) => {
logger.debug('ContactForm: editingContact changed', con)
if (!con) {
resetForm(
{
values: {
displayName: null,
email: null,
phone: null,
note: null,
relationshipTypeId: null,
}
}
)
return
} else {
logger.debug('ContactForm: has editingContact')
}
setValues({
displayName: con.displayName,
email: con.email,
phone: con.phone,
note: con.note,
relationshipTypeId: con.relationshipTypeId,
})
},
{ immediate: true },
)
// endregion watcher
// region effect // watcher 以外の副作用(外部ライブラリ初期化・setInterval 等)
// endregion effect
// region handler // ボタン押下・フォーム送信など UI から呼ばれるイベントハンドラ
const fDisplayName = useVuetifyField<string>('displayName', submitCount)
const fEmail = useVuetifyField<string>('email', submitCount)
const fPhone = useVuetifyField<string>('phone', submitCount)
const fNote = useVuetifyField<string>('note', submitCount)
const fRelationshipTypeId = useVuetifyField<number>('relationshipTypeId', submitCount, {
emptyToNull: true,
toNumber: true,
})
const onSubmit = handleSubmit(async (values) => {
const payload: Record<string, unknown> = {
...values,
}
try {
const editing = props.editingContact
const res = editing && editing.id
? await withLoading(
() => api.patch(`/fl/contact/${editing.id}`, payload),
'contact:update',
)
: await withLoading(
() => api.post('/fl/contact/', payload),
'contact:create',
)
logger.debug('ContactForm: onSubmit', res)
emit('submitted')
resetForm()
} catch (e) {
if (e?.response?.status === 422) {
serverGeneralError.value = null
setErrorsFrom422(e, { setErrors, resolveField, msgFromCode })
return
}
serverGeneralError.value =
e?.response?.data?.message ??
e?.message ??
t('validation.unknown')
logger.error(`contact:onSubmit error : ${JSON.stringify(e)}`)
}
})
// endregion handler
// region lifecycle // onMounted / onUnmounted / onBeforeRouteLeave などのライフサイクル処理
// endregion lifecycle
// region provide-inject // コンポーネント間で共有する provide / inject の定義
// endregion provide-inject
// region expose // defineExpose により外部へ公開するメソッドやプロパティ
// endregion expose
// region devtool // 開発環境専用のログ出力・debug 情報など(import.meta.env.DEV)
// endregion devtool
// region test-id // data-testid 用の定数定義など(ユニット/E2E テスト向け)
// endregion test-id
</script>
<style scoped>
</style>
|