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 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | <template> <v-row class="mb-4" align="center" justify="space-between"> <v-col cols="auto"> <h1>{{ t('ui.page.profile.address.root.title') }}</h1> </v-col> <v-col cols="auto"> <AppButton role="add" class="mt-4" @click="openModal" > {{ t('ui.verb.add') }} </AppButton> </v-col> </v-row> <AddressFormModal v-model="showModal" :purpose-options="addressPurposeOptions" :editing-address="editingAddress" @submitted="onReloadAddress" @update:modelValue="onModalModelUpdate" /> <AppConfirmModal v-model="showDeleteModal" :title="deleteDialogTitle" :message="deleteDialogMessage" :confirm-text="t('ui.verb.delete')" :cancel-text="t('ui.verb.cancel')" :loading="deleteLoading" :error="deleteError" @confirm="onConfirmDelete" @cancel="onCancelDelete" /> <!-- 住所一覧のテーブル --> <v-row class="mb-6"> <v-col cols="12"> <!-- 検索(必要なら) --> <v-select v-model="searchPurposeId" :items="addressPurposeOptions" item-title="label" item-value="id" :label="t('domain.userAddress.purposeId.label')" clearable class="mb-3" @update:modelValue="onChangeSearchPurpose" > <template #item="{ props, item }"> <v-list-item v-bind="props" :title="t(item.raw.label)" /> </template> <template #selection="{ item }"> {{ t(item.raw.label) }} </template> </v-select> <v-data-table-server :headers="addressHeaders" :items="addressItems" :items-length="addressTotal" :loading="addressLoading" :items-per-page="addressOptions.itemsPerPage" :page="addressOptions.page" :sort-by="addressOptions.sortBy" :items-per-page-options="perPageOptions" item-value="id" class="elevation-1 brand-data-table" @update:options="onUpdateAddressOptions" > <template #item.purposeId="{ item }"> {{ t(item.purpose) }} </template> <template #item.addressLine1="{ item }"> {{ formatFullAddress(item) }} </template> <template #item.createdAt="{ item }"> {{ new Date(item.createdAt).toLocaleString() }} </template> <template #item.action="{ item }"> <AppButton role="edit" class="my-2 mr-2" @click="openEdit(item)" > {{ t('ui.verb.edit') }} </AppButton> <AppButton role="delete" class="my-2" @click="openDelete(item)" > {{ t('ui.verb.delete') }} </AppButton> </template> <!-- 他のカラムをカスタマイズしたければ slot を追加 --> </v-data-table-server> </v-col> </v-row> </template> <script setup lang="ts"> // region import // 各種ライブラリ・DI対象・ローカルコンポーネント・型の import をまとめる import {computed, onMounted, ref} from 'vue' import {useSchemaLogger} from '@/libs/logger/logger' import { useI18n } from 'vue-i18n' import { useApi } from '@/composables/useApi' import AddressFormModal from '@/components/organisms/profile/AddressFormModal.vue' import { debounce } from 'lodash-es' import { withLoading } from '@/libs/loading' import { toSnakeKeys, toSnake, normalizeError, joinNonEmpty, translateOrFallback } from '@/utils' import { usePerPageOptions } from '@/composables/usePerPageOptions' import type { AddressResponse, AddressListResponse } from '@/types/models/address' import type { AddressPurposeOption, AddressPurposeApiResponse } from '@/types/models/addressPurpose' import type { DataTableOptions } from '@/types/globals/datatables' import AppButton from '@/components/atoms/AppButton.vue' import AppConfirmModal from '@/components/organisms/common/AppConfirmModal.vue' // endregion import // region type // このファイル内でのみ使う型定義(interface, type alias など) // endregion type // region i18n // useI18n などを初期化し、t() / d() を取り出す const { t } = useI18n() // endregion i18n // region router // useRouter / useRoute など、画面遷移やクエリ取得に関する処理 // endregion router // region store // Pinia の useXxxStore を読み込み、状態/アクションを利用 // endregion store // region props // defineProps による外部から受け取る値の定義 // endregion props // region emits // defineEmits による親へ送るイベント定義 // endregion emits // region slots // スロットの型情報や利用(useSlots / defineSlots) // endregion slots // region constant // このコンポーネント専用の定数/enum/テーブルなど(不変の値) const api = useApi() const logger = useSchemaLogger({ module: 'profile:address' }) const { perPageOptions } = usePerPageOptions() const addressHeaders = [ { title: t('domain.userAddress.purposeId.label'), key: 'purposeId' }, { title: t('domain.userAddress.postalCode.label'), key: 'postalCode' }, { title: t('domain.userAddress.administrativeArea.label'), key: 'administrativeArea' }, { title: t('domain.userAddress.locality.label'), key: 'locality' }, { title: t('domain.userAddress.addressLine1.label'), key: 'addressLine1' },// dependentLocality, addressLine2, addressLine3 // { title: t('domain.userAddress.addressLine2.label'), key: 'addressLine2', sortable: false }, { title: t('domain.userAddress.createdAt.label'), key: 'createdAt' }, { title: "", key: 'action', sortable: false}, ] // 住所の表示用フォーマッタ(null/空文字をまとめてよしなに結合) const formatFullAddress = (item: AddressResponse): string => joinNonEmpty([ item.dependentLocality, item.addressLine1, item.addressLine2, item.addressLine3, ]) const onModalModelUpdate = (value: boolean) => { showModal.value = value if (!value) { // モーダルが閉じられたタイミング(×/背景クリック/ESC 含む) editingAddress.value = null } } const showDeleteModal = ref(false) const deleteTargetAddressId = ref<number | null>(null) const deleteLoading = ref(false) const deleteError = ref<string | null>(null) // endregion constant // region state // ref / reactive / useForm など、変化する状態を定義 const showModal = ref(false) const addressItems = ref<AddressResponse[]>([]) const addressTotal = ref(0) const addressLoading = ref(false) const addressSearch = ref('') const addressOptions = ref<DataTableOptions>({ page: 1, itemsPerPage: 10, // 初期値。usePerPageOptions のデフォルトに合わせてもOK sortBy: [{ key: 'purposeId', order: 'asc' }], }) const addressPurposeOptions = ref<AddressPurposeOption[]>([]) const searchPurposeId = ref<number | null>(null) // 編集対象 const editingAddress = ref<AddressResponse | null>(null) // endregion state // region computed // 派生状態(computed)をまとめる const deleteDialogTitle = computed(() => t('ui.action.confirm.with', { label: t('domain.userAddress.entity.label'), action: t('ui.verb.delete') }) ) const deleteDialogMessage = computed(() => t('ui.common.irreversible') ) // endregion computed // region validation // Zod / Yup / Vee-Validate 等のスキーマ・ルール・フォーム設定 // endregion validation // region watcher // watch / watchEffect など、状態の変化に応じた処理 // endregion watcher // region effect // watcher 以外の副作用(外部ライブラリ初期化・setInterval 等) // endregion effect // region permission // 権限による UI/操作の可否を判定するロジック(isEditable など) // endregion permission // region api // Axios クライアントを使った通信処理(fetchXxx / updateXxx など) const fetchAddressList = async () => { addressLoading.value = true try { // Vuetify は camelCase の key を返す → デフォルトも camel に合わせる const rawSortKey = addressOptions.value.sortBy?.[0]?.key ?? 'createdAt' const sortKey = toSnake(rawSortKey) const order = addressOptions.value.sortBy?.[0]?.order ?? 'desc' const qSan = (addressSearch.value ?? '').trim() const qParam = qSan !== '' ? qSan : undefined const purposeIdParam = searchPurposeId.value ?? undefined const params = toSnakeKeys({ q: qParam, page: addressOptions.value.page, perPage: addressOptions.value.itemsPerPage, sort: sortKey, order, purposeId: purposeIdParam, }) const { data } = await api.get<AddressListResponse>('/fl/address/', { params }) addressItems.value = data.items ?? [] addressTotal.value = data.total ?? 0 addressOptions.value.page = data.page ?? addressOptions.value.page addressOptions.value.itemsPerPage = data.perPage ?? addressOptions.value.itemsPerPage } catch (e) { logger.error('fetchAddressList error', normalizeError(e)) addressItems.value = [] addressTotal.value = 0 } finally { addressLoading.value = false } } const fetchAddressPurposeOptions = async () => { try { const { data } = await api.get<AddressPurposeApiResponse>('/option/address/purpose') // data.options のまま AddressPurposeOption[] になっている想定 addressPurposeOptions.value = data.items ?? [] } catch (e) { logger.error('fetchAddressPurposeOptions error', normalizeError(e)) addressPurposeOptions.value = [] } } const deleteAddress = async (addressId: number) => { return api.delete(`/fl/address/${addressId}`) } // endregion api // region handler // ボタン押下・フォーム送信など UI から呼ばれるイベントハンドラ const onUpdateAddressOptions = (opts: DataTableOptions) => { addressOptions.value = opts fetchAddressList() } const debouncedAddressSearch = debounce(() => { addressOptions.value.page = 1 fetchAddressList() }, 400) const onReloadAddress = async () => { await withLoading(fetchAddressList, 'profile:address:reload') } const openModal = () => { editingAddress.value = null showModal.value = true } const onChangeSearchPurpose = () => { addressOptions.value.page = 1 fetchAddressList() } const openEdit = (item: AddressResponse) => { console.log(JSON.stringify(item)) editingAddress.value = item showModal.value = true } const openDelete = (item: AddressResponse) => { deleteTargetAddressId.value = item.id deleteError.value = null showDeleteModal.value = true } const onCancelDelete = () => { // キャンセル時は API 実行なし・一覧再取得なし deleteError.value = null deleteTargetAddressId.value = null } const onConfirmDelete = async () => { if (!deleteTargetAddressId.value) return deleteLoading.value = true deleteError.value = null try { const res = await deleteAddress(deleteTargetAddressId.value) if (res.status === 204) { // 成功:モーダルを閉じて一覧を再取得 showDeleteModal.value = false deleteTargetAddressId.value = null await onReloadAddress() return } // 204 以外は失敗扱い(モーダルは閉じない) deleteError.value = translateOrFallback(t, 'ui.page.profile.address.deleteConfirm.error', '削除に失敗しました。') } catch (e: any) { logger.error('deleteAddress error', normalizeError(e)) const msg = e?.response?.data?.message ?? e?.response?.data?.error ?? translateOrFallback(t, 'ui.page.profile.address.deleteConfirm.error', '削除中にエラーが発生しました。') deleteError.value = String(msg) } finally { deleteLoading.value = false } } // endregion handler // region lifecycle // onMounted / onUnmounted / onBeforeRouteLeave などのライフサイクル処理 onMounted(async () => { await withLoading(async () => { await Promise.all([ fetchAddressPurposeOptions(), fetchAddressList(), ]) }, 'profile:address:init') }) // 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> |