All files / src/composables useProfileTodos.ts

100% Statements 189/189
83.33% Branches 35/42
100% Functions 5/5
100% Lines 189/189

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  1x 1x 1x 1x                                                                                                                     2x     2x 2x 2x 2x 2x 2x 2x       2x 2x 2x 2x 2x 2x       2x   1x   2x   2x   2x   2x   2x   2x   2x 2x 2x         1x 5x 5x 5x   5x   5x     5x 5x 3x 2x 2x 2x 2x 1x 5x 1x 1x     5x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x     5x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x     5x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x     5x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     5x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     5x 2x 2x     2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x     5x 3x 3x     3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x     4x 4x             1x 3x 3x 3x 3x 3x   3x 2x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 2x   3x 2x 1x 1x 1x 1x 1x 1x 2x   3x 3x 3x 3x 3x 3x 3x 3x  
// region Dependency Injection
import {ref} from 'vue'
import {useRouter} from "vue-router";
import api from '@/libs/axios'
import { useI18n } from 'vue-i18n'
// endregion Dependency Injection
 
// region Component Import
// endregion Component Import
 
// region interface
 
export type ProfileStatus = {
  // Note: 基本情報
  hasPersonal: boolean
  // Note: 住所
  hasAddress: boolean
  // Note: 連絡先(メールなど)
  hasContact: boolean
  // Note: 学歴(これは必須化するか要検討)
  hasEducation: boolean
  // Note: スキル
  hasSkill: boolean
  // Note: 職歴
  hasExperience: boolean
  // Note: 資格(これは必須化するか要検討)
  hasLicence: boolean
}
 
export type TodoItem = {
  id: string
  title: string
  subtitle?: string
  icon?: string
  routeName?: string
  onClick?: () => void
}
// endregion interface
 
// region constants
// const api = useApi()
// endregion constants
 
// region props
// endregion props
 
// region variable
// endregion variable
 
// region properties
// endregion properties
 
// region emits
// endregion emits
 
// region validator
// endregion validator
 
// region methods
/**
 * APIからプロフィール状態を取得
 * 将来モック → 実装切替しやすいよう export しておく
 */
export async function fetchStatus(): Promise<ProfileStatus> {
 
  // ▼ モック
  await new Promise((r) => setTimeout(r, 400))
  const [
    basicP,
    addressP, // 住所有無
    educationP,
    skillP,
    contactP,
    // employmentP,
    // bankP,
    // emergencyP,
  ] = await Promise.allSettled([
    api.get('/fl/personal/exists'),
    api.get('/fl/address/exists'),
    api.get('/fl/education/exists'),
    api.get('/fl/skill/exists'),
    api.get('/fl/contact/exists'),
    // api.get('/api/profile/employment/status'),
    // api.get('/api/profile/bank/status'),
    // api.get('/api/profile/emergency/status'),
  ])
 
  return {
    // Note: 基本情報
    hasPersonal: basicP.status === 'fulfilled' ? Boolean(basicP.value?.data?.exists) : false, // 失敗時は未完扱いにフォールバック
    // Note: 住所
    hasAddress: addressP.status === 'fulfilled' ? Boolean(addressP.value?.data?.exists) : false, // 失敗時は未完扱いにフォールバック
    // Note: 連絡先(メールなど)
    hasContact: contactP.status === 'fulfilled' ? Boolean(contactP.value?.data?.exists) : false,
    // Note: 学歴(これは必須化するか要検討)
    hasEducation: educationP.status === 'fulfilled' ? Boolean(educationP.value?.data?.exists) : false,
    // Note: スキル
    hasSkill: skillP.status === 'fulfilled' ? Boolean(skillP.value?.data?.exists) : false,
    // Note: 職歴
    hasExperience: false,
    // Note: 資格(これは必須化するか要検討)
    hasLicence: false,
  }
}
 
/**
 * 状態からTODO配列を構築(他所でも使い回せるよう外出し)
 */
export function buildTodosFromStatus(
  t: (key: string, params?: Record<string, unknown>) => string,
  s?: ProfileStatus | null
): TodoItem[] {
 
  if (!s) return []
 
  const list: TodoItem[] = []
 
  // --- A: 全て揃っている(= todo なし) ---
  if (
    s.hasPersonal &&
    s.hasAddress &&
    s.hasContact &&
    s.hasEducation &&
    s.hasSkill &&
    s.hasExperience &&
    s.hasLicence
  ) {
    return []
  }
 
  // Note: 基本情報
  if (!s.hasPersonal) {
    list.push({
      id: 'basic_profile',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.profile.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.profile.root.description'),
      icon: 'mdi-account-outline',
      routeName: 'Profile',
    })
  }
 
  // Note: 住所
  if (!s.hasAddress) {
    list.push({
      id: 'user_address',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.profile.address.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.profile.address.root.description'),
      icon: 'mdi-map-marker-outline',
      routeName: 'ProfileAddress',
    })
  }
 
  // Note: 連絡先(メールなど)
  if (!s.hasContact) {
    list.push({
      id: 'contact_info',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.profile.contact.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.profile.contact.root.description'),
      icon: 'mdi-phone-outline',
      routeName: 'ProfileContact',
    })
  }
 
  // Note: 学歴(これは必須化するか要検討)
  if (!s.hasEducation) {
    list.push({
      id: 'education_history',
      // title: '職歴を登録',
      // subtitle: '現在の所属・これまでの経験',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.education.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.education.root.description'),
      icon: 'mdi-school-outline',
      routeName: 'Educations',
    })
  }
 
  // Note: スキル
  if (!s.hasSkill) {
    list.push({
      id: 'skill_list',
      // title: '職歴を登録',
      // subtitle: '現在の所属・これまでの経験',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.skill.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.skill.root.description'),
      icon: 'mdi-star-outline',
      routeName: 'Skills',
    })
  }
 
  // Note: 職歴
  if (!s.hasExperience) {
    list.push({
      id: 'employment_history',
      // title: '職歴を登録',
      // subtitle: '現在の所属・これまでの経験',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.experience.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.experience.root.description'),
      icon: 'mdi-briefcase-outline',
      routeName: 'Experiences',
    })
  }
 
  // Note: 資格(これは必須化するか要検討)
  if (!s.hasLicence) {
    list.push({
      id: 'licence_list',
      // title: '職歴を登録',
      // subtitle: '現在の所属・これまでの経験',
      title: t(
        'ui.component.atom.button.with',
        {
          field: t('ui.page.license.root.title'),
          action: t('ui.verb.register'),
        }
      ),
      subtitle: t('ui.page.license.root.description'),
      icon: 'mdi-card-account-details-outline',
      routeName: 'Licenses',
    })
  }
 
 
  return list
}
// endregion methods
 
// region export
/**
 * プロフィールのTODOリストを管理するコンポーザブル
 */
export const useProfileTodos = () => {
  const loading = ref(false)
  const errorMessage = ref<string | null>(null)
  const todos = ref<TodoItem[]>([])
  const router = useRouter()
  const { t } = useI18n()
 
  const refresh = async (): Promise<void> => {
    loading.value = true
    errorMessage.value = null
    try {
      const s = await fetchStatus()
      todos.value = buildTodosFromStatus(t, s)
    } catch (e: unknown) {
      errorMessage.value = e instanceof Error ? e.message : '読み込みに失敗しました'
      todos.value = []
    } finally {
      loading.value = false
    }
  }
 
  const onAction = (t: TodoItem): void => {
    if (t.onClick) {
      t.onClick()
      return
    }
    if (t.routeName) {
      router.push({ name: t.routeName })
    }
  }
 
  return {
    loading,
    errorMessage,
    todos,
    refresh,
    onAction,
  }
}// endregion export