Update README for lib/jellyfin-apiclient

This commit is contained in:
Bill Thornton
2025-04-22 09:53:46 -04:00
parent 953073cd28
commit 608434fd51

View File

@@ -81,28 +81,29 @@ Jellyfin Web is the frontend used for most of the clients available for end user
. .
└── src └── src
├── apps ├── apps
│   ├── dashboard # Admin dashboard app │   ├── dashboard # Admin dashboard app
│   ├── experimental # New experimental app │   ├── experimental # New experimental app
│   ├── stable # Classic (stable) app │   ├── stable # Classic (stable) app
│   └── wizard # Startup wizard app │   └── wizard # Startup wizard app
├── assets # Static assets ├── assets # Static assets
├── components # Higher order visual components and React components ├── components # Higher order visual components and React components
├── constants # Common constant values ├── constants # Common constant values
├── controllers # Legacy page views and controllers 🧹 ❌ ├── controllers # Legacy page views and controllers 🧹 ❌
├── elements # Basic webcomponents and React equivalents 🧹 ├── elements # Basic webcomponents and React equivalents 🧹
├── hooks # Custom React hooks ├── hooks # Custom React hooks
├── lib # Reusable libraries ├── lib # Reusable libraries
│   ├── globalize # Custom localization library │   ├── globalize # Custom localization library
│   ├── legacy # Polyfills for legacy browsers │   ├── jellyfin-apiclient # Supporting code for the deprecated apiclient package
│   ├── navdrawer # Navigation drawer library for classic layout │   ├── legacy # Polyfills for legacy browsers
│   ── scroller # Content scrolling library │   ── navdrawer # Navigation drawer library for classic layout
├── plugins # Client plugins (features dynamically loaded at runtime) │   └── scroller # Content scrolling library
├── scripts # Random assortment of visual components and utilities 🐉 ❌ ├── plugins # Client plugins (features dynamically loaded at runtime)
├── strings # Translation files (only commit changes to en-us.json) ├── scripts # Random assortment of visual components and utilities 🐉 ❌
├── styles # Common app Sass stylesheets ├── strings # Translation files (only commit changes to en-us.json)
├── themes # Sass and MUI themes ├── styles # Common app Sass stylesheets
├── types # Common TypeScript interfaces/types ├── themes # Sass and MUI themes
── utils # Utility functions ── types # Common TypeScript interfaces/types
└── utils # Utility functions
``` ```
- ❌ — Deprecated, do **not** create new files here - ❌ — Deprecated, do **not** create new files here