snp-batch-validation/frontend
HYOJIN b47b5050fd feat: 선박/회사 기본정보 UI 개선 및 국기 아이콘 표시 (#111)
- B안 2분할 레이아웃 적용 (좌: 핵심 식별정보, 우: 스펙/상세)
- 국가코드 → ISO2 변환 (tb_ship_country_cd JOIN) → 국기 이모지 표시
- 회사 모회사 셀프조인 (prnt_company_cd → 회사명, 없으면 UNKNOWN)
- Current Compliance 탭 분리 (Sanctions/Port Calls/STS/Suspicious)
- Compliance 예외 처리 (Parent Company null → No Parent, Overall 헤더 이동)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 09:23:21 +09:00
..
public feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
src feat: 선박/회사 기본정보 UI 개선 및 국기 아이콘 표시 (#111) 2026-03-31 09:23:21 +09:00
.gitignore feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
eslint.config.js feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
index.html feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
package-lock.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
package.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
README.md feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.app.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.node.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
vite.config.ts feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])