File size: 12,206 Bytes
1e92f2d |
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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 |
import { ThemeOverride } from '@adminjs/design-system'
import type { TransformOptions as BabelConfig } from 'babel-core'
import AdminJS from './adminjs.js'
import BaseResource from './backend/adapters/resource/base-resource.js'
import BaseDatabase from './backend/adapters/database/base-database.js'
import { PageContext } from './backend/actions/action.interface.js'
import { ResourceOptions } from './backend/decorators/resource/resource-options.interface.js'
import { Locale } from './locale/config.js'
import { CurrentAdmin } from './current-admin.interface.js'
import { CoreScripts } from './core-scripts.interface.js'
import { ComponentLoader } from './backend/utils/component-loader.js'
/**
* AdminJSOptions
*
* This is the heart of entire AdminJS - all options resides here.
*
* ### Usage with regular javascript
*
* ```javascript
* const AdminJS = require('adminjs')
* //...
* const adminJS = new AdminJS({
* rootPath: '/xyz-admin',
* logoutPath: '/xyz-admin/exit',
* loginPath: '/xyz-admin/sign-in',
* databases: [mongooseConnection],
* resources: [{ resource: ArticleModel, options: {...}}],
* branding: {
* companyName: 'XYZ c.o.',
* },
* })
* ```
*
* ### TypeScript
*
* ```
* import { AdminJSOptions } from 'adminjs'
*
* const options: AdminJSOptions = {
* rootPath: '/xyz-admin',
* logoutPath: '/xyz-admin/exit',
* loginPath: '/xyz-admin/sign-in',
* databases: [mongooseConnection],
* resources: [{ resource: ArticleModel, options: {...}}],
* branding: {
* companyName: 'XYZ c.o.',
* },
* }
*
* const adminJs = new AdminJS(options)
* ```
*/
export interface AdminJSOptions {
/**
* path, under which, AdminJS will be available. Default to `/admin`
*
*/
rootPath?: string;
/**
* url to a logout action, default to `/admin/logout`
*/
logoutPath?: string;
/**
* url to a login page, default to `/admin/login`
*/
loginPath?: string;
/**
* Array of all Databases which are supported by AdminJS via adapters
*/
databases?: Array<any>;
componentLoader?: ComponentLoader;
/**
* List of custom pages which will be visible below all resources
* @example
* pages: {
* customPage: {
* label: "Custom page",
* handler: async (request, response, context) => {
* return {
* text: 'I am fetched from the backend',
* }
* },
* component: 'CustomPage',
* },
* anotherPage: {
* label: "TypeScript page",
* component: 'TestComponent',
* },
* },
*/
pages?: AdminPages;
/**
* Array of all Resources which are supported by AdminJS via adapters.
* You can pass either resource or resource with an options and thus modify it.
* @property {any} resources[].resource
* @property {ResourceOptions} resources[].options
* @property {Array<FeatureType>} resources[].features
*
* @see ResourceOptions
*/
resources?: Array<ResourceWithOptions | any>;
/**
* Option to modify the dashboard
*/
dashboard?: {
/**
* Handler function which can be triggered using {@link ApiClient#getDashboard}.
*/
handler?: PageHandler;
/**
* Bundled component name which should be rendered when user opens the dashboard
*/
component?: string;
};
/**
* Flag which indicates if version number should be visible on the UI
*/
version?: VersionSettings;
/**
* Options which are related to the branding.
*/
branding?: BrandingOptions | BrandingOptionsFunction;
/**
* Custom assets you want to pass to AdminJS
*/
assets?: Assets | AssetsFunction;
/**
* Indicates is bundled by AdminJS files like:
* - components.bundle.js
* - global.bundle.js
* - design-system.bundle.js
* - app.bundle.js
* should be taken from the same server as other AdminJS routes (default)
* or should be taken from an external CDN.
*
* If set - bundles will go from given CDN if unset - from the same server.
*
* When you can use this option? So let's say you want to deploy the app on
* serverless environment like Firebase Cloud Functions. In that case you don't
* want to serve static files with the same app because your function will be
* invoked every time frontend asks for static assets.
*
* Solution would be to:
* - create `public` folder in your app
* - generate `bundle.js` file to `.adminjs/` folder by using {@link AdminJS#initialize}
* function (with process.env.NODE_ENV set to 'production').
* - copy the before mentioned file to `public` folder and rename it to
* components.bundle.js
* - copy
* './node_modules/adminjs/lib/frontend/assets/scripts/app-bundle.production.js' to
* './public/app.bundle.js',
* - copy
* './node_modules/adminjs/lib/frontend/assets/scripts/global-bundle.production.js' to
* './public/global.bundle.js'
* * - copy
* './node_modules/adminjs/node_modules/@adminjs/design-system/bundle.production.js' to
* './public/design-system.bundle.js'
* - host entire public folder under some domain (if you use firebase - you can host them
* with firebase hosting)
* - point {@link AdminJS.assetsCDN} to this domain
*/
assetsCDN?: string;
/**
* Environmental variables passed to the frontend.
*
* So let say you want to pass some _GOOGLE_MAP_API_TOKEN_ to the frontend.
* You can do this by adding it here:
*
* ```javascript
* new AdminJS({env: {
* GOOGLE_MAP_API_TOKEN: 'my-token',
* }})
* ```
*
* and this token will be available on the frontend by using:
*
* ```javascript
* AdminJS.env.GOOGLE_MAP_API_TOKEN
* ```
*/
env?: Record<string, string>;
/**
* Translations
*
* Change it in order to:
* - localize admin panel
* - change any arbitrary text in the UI
*
* This is the example for changing name of a couple of resources along with some
* properties to Polish. You can also use this technic to change any text even in english.
* So to change button label of a "new action" from default "Create new" to "Create new Comment"
* only for Comment resource, place it in action section.
*
* ```javascript
* {
* locale: {
* translations: {
* pl: {
* labels: {
* Comments: "Komentarze",
* },
* resources: {
* Comments: {
* properties: {
* name: "Nazwa Komentarza",
* content: "Zawartość",
* },
* actions: {
* new: 'Create new Comment'
* }
* }
* }
* }
* }
* }
*}
* ```
*
* Check out the [i18n tutorial]{@tutorial i18n} to see how
* internationalization in AdminJS works.
*/
locale?: Locale | ((admin?: CurrentAdmin) => Locale | Promise<Locale>);
/**
* rollup bundle options;
*/
bundler?: BundlerOptions;
/**
* Additional settings.
*/
settings?: Partial<AdminJSSettings>;
/**
* List of available themes, for example exports of the `@adminjs/themes` npm package.
*/
availableThemes?: ThemeConfig[];
/**
* ID of the default theme. If not provided, the first theme from the `availableThemes`
* list will be used.
*/
defaultTheme?: string;
}
export type ThemeConfig = {
id: string,
name: string,
overrides: Partial<ThemeOverride>;
bundlePath?: string;
stylePath?: string;
}
export type AdminJSSettings = {
defaultPerPage: number;
};
/* cspell: enable */
/**
* @memberof AdminJSOptions
* @alias Assets
*
* Optional assets (stylesheets, and javascript libraries) which can be
* appended to the HEAD of the page.
*
* you can also pass {@link AssetsFunction} instead.
*/
export type Assets = {
/**
* List to urls of custom stylesheets. You can pass your font - icons here (as an example)
*/
styles?: Array<string>;
/**
* List of urls to custom scripts. If you use some particular js
* library - you can pass its url here.
*/
scripts?: Array<string>;
/**
* Mapping of core scripts in case you want to version your assets
*/
coreScripts?: CoreScripts;
};
/**
* @alias AssetsFunction
* @name AssetsFunction
* @memberof AdminJSOptions
* @returns {Assets | Promise<Assets>}
* @description
* Function returning {@link Assets}
*/
export type AssetsFunction = (admin?: CurrentAdmin) => Assets | Promise<Assets>;
/**
* Version Props
* @alias VersionProps
* @memberof AdminJSOptions
*/
export type VersionSettings = {
/**
* if set to true - current admin version will be visible
*/
admin?: boolean;
/**
* Here you can pass any arbitrary version text which will be seen in the US.
* You can pass here your current API version.
*/
app?: string;
};
export type VersionProps = {
admin?: string;
app?: string;
};
/**
* Branding Options
*
* You can use them to change how AdminJS looks. For instance to change name and
* colors (dark theme) run:
*
* ```javascript
* new AdminJS({
* branding: {
* companyName: 'John Doe Family Business',
* theme,
* }
* })
* ```
*
* @alias BrandingOptions
* @memberof AdminJSOptions
*/
export type BrandingOptions = {
/**
* URL to a logo, or `false` if you want to hide the default one.
*/
logo?: string | false;
/**
* Name of your company, which will replace "AdminJS".
*/
companyName?: string;
/**
* CSS theme.
*/
theme?: Partial<ThemeOverride>;
/**
* Flag indicates if "made with love" tiny heart icon
* should be visible on the bottom sidebar and login page.
* @new since 6.0.0
*/
withMadeWithLove?: boolean;
/**
* URL to a favicon
*/
favicon?: string;
};
/**
* Branding Options Function
*
* function returning BrandingOptions.
*
* @alias BrandingOptionsFunction
* @memberof AdminJSOptions
* @returns {BrandingOptions | Promise<BrandingOptions>}
*/
export type BrandingOptionsFunction = (
admin?: CurrentAdmin,
) => BrandingOptions | Promise<BrandingOptions>;
/**
* Object describing regular page in AdminJS
*
* @alias AdminPage
* @memberof AdminJSOptions
*/
export type AdminPage = {
/**
* Handler function
*/
handler?: PageHandler;
/**
* Component defined by using {@link ComponentLoader}
*/
component: string;
/**
* Page icon
*/
icon?: string;
};
/**
* Object describing map of regular pages in AdminJS
*
* @alias AdminPages
* @memberof AdminJSOptions
*/
export type AdminPages = Record<string, AdminPage>;
/**
* Default way of passing Options with a Resource
* @alias ResourceWithOptions
* @memberof AdminJSOptions
*/
export type ResourceWithOptions = {
resource: any;
options: ResourceOptions;
features?: Array<FeatureType>;
};
/**
* Function taking {@link ResourceOptions} and merging it with all other options
*
* @alias FeatureType
* @type function
* @returns {ResourceOptions}
* @memberof AdminJSOptions
*/
export type FeatureType = (
/**
* AdminJS instance
*/
admin: AdminJS,
/**
* Options returned by the feature added before
*/
options: ResourceOptions,
) => ResourceOptions;
/**
* Function which is invoked when user enters given AdminPage
*
* @alias PageHandler
* @memberof AdminJSOptions
*/
export type PageHandler = (request: any, response: any, context: PageContext) => Promise<any>;
/**
* Bundle options
*
* @alias BundlerOptions
* @memberof AdminJSOptions
* @example
* const adminJS = new AdminJS({
resources: [],
rootPath: '/admin',
babelConfig: './.adminJS.babelrc'
})
*/
export type BundlerOptions = {
/**
* The file path to babel config file or json object of babel config.
*/
babelConfig?: BabelConfig | string;
};
export interface AdminJSOptionsWithDefault extends AdminJSOptions {
rootPath: string;
logoutPath: string;
loginPath: string;
refreshTokenPath: string;
databases?: Array<BaseDatabase>;
resources?: Array<
| BaseResource
| {
resource: BaseResource;
options: ResourceOptions;
}
>;
dashboard: {
handler?: PageHandler;
component?: string;
};
bundler: BundlerOptions;
pages: AdminJSOptions['pages'];
}
|