diff --git a/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html b/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html index 442a8d3b..cc4a53ce 100644 --- a/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html +++ b/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html @@ -104,8 +104,7 @@ from your backend API if needed.

- Since Javascript cannot read or write HTTPOnly cookies, refresh tokens can only be accessed and set via the requests and responses by - your backend implementation. Basically, the refresh token implementation needs to be done in your backend, there is nothing that can be done in Fuse or + The refresh token implementation needs to be done in your backend, there is nothing that can be done in Fuse or in Javascript.

diff --git a/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html b/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html index 836bca30..075f8ac0 100644 --- a/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html +++ b/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html @@ -54,7 +54,7 @@

Translating the navigation

Since FuseNavigation supports runtime data swapping, you can replace the navigation data either partially or completely when the language changes. - The LanguageComponent is a suitable place to do this and it's located at src/app/layout/common/language. + The LanguageComponent is a suitable place to do this and it's located at src/app/layout/common/languages.

Removing Transloco

@@ -63,11 +63,10 @@ the Transloco from Fuse:

    -
  1. Navigate to src/app/core/core.module.ts file and remove imports of TranslocoCoreModule
  2. +
  3. Navigate to src/app.config.ts file and remove the lines marked with the comment // Transloco Config
  4. Remove the src/app/core/transloco directory
  5. Do a project wide search for <languages></languages> and remove all instances
  6. -
  7. Do a project wide search for LanguageModule and remove all imports
  8. -
  9. Remove the src/app/layout/common/language directory
  10. +
  11. Remove the src/app/layout/common/languages directory
  12. Finally navigate to the package.json file, remove the "@ngneat/transloco" from dependencies list and run npm install command
diff --git a/src/app/modules/admin/docs/guides/customization/splash-screen/splash-screen.html b/src/app/modules/admin/docs/guides/customization/splash-screen/splash-screen.html index d89e1926..35af4fb4 100644 --- a/src/app/modules/admin/docs/guides/customization/splash-screen/splash-screen.html +++ b/src/app/modules/admin/docs/guides/customization/splash-screen/splash-screen.html @@ -63,7 +63,7 @@ This element is not an actual Angular component, it's just a simple wrapper to hold everything you may want to show on the splash screen.

- Splash screen styles are located in src/assets/styles/splash-screen.css file. + Splash screen styles are located in public/styles/splash-screen.css file.

You can change the styles to modify the look of the splash screen and put anything you want into the fuse-splash-screen element to show on the @@ -88,7 +88,7 @@ ... @@ -96,7 +96,7 @@ Fuse logo

diff --git a/src/app/modules/admin/docs/guides/customization/theme-layouts/theme-layouts.html b/src/app/modules/admin/docs/guides/customization/theme-layouts/theme-layouts.html index 8c77dadb..a8038ba0 100644 --- a/src/app/modules/admin/docs/guides/customization/theme-layouts/theme-layouts.html +++ b/src/app/modules/admin/docs/guides/customization/theme-layouts/theme-layouts.html @@ -44,8 +44,7 @@

By default, layouts are applied automatically via the LayoutComponent. The default layout is set by the app.config.ts file from - app/core/config/ directory. This configuration file is supplied as the default configuration to the FuseConfigService which is a custom - made configuration service to store, write and read application wide configurations. + src/app/ directory and it's available via FuseConfigService.

Setting the default theme

By default, the "default" theme will be used as the default theme for your application. If for some reason, you want to have more than - one themes and choose something other than the "default", you can do so by setting the default theme via app/core/config/app.config.ts file. + one themes and choose something other than the "default", you can do so by setting the default theme via src/app.config.ts file. You can also change the theme runtime using the FuseConfigService.

@@ -344,7 +344,7 @@ change to a "dark" mode without losing your theme or setting up a separate "dark" theme.

- You can set the default scheme via app/core/config/app.config.ts file. You can also change the scheme runtime using the + You can set the default scheme via src/app.config.ts file. You can also change the scheme runtime using the FuseConfigService.

diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html index 25a50eae..c106f713 100644 --- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html +++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html @@ -98,7 +98,12 @@

-

@fuse/

+

/public

+

+ Default folder for static assets like images, fonts, static styles and etc. +

+ +

/src/@fuse/

This is the core directory of the Fuse. It includes components, directives, services, pipes, custom validators, animations, base styles and much more.

@@ -107,7 +112,7 @@ directory and its content will make the updating process complex and time consuming.

-

app/

+

src/app/

This directory contains all application related codes. This is where you put your code.

@@ -158,7 +163,7 @@ -

app/core/

+

src/app/core/

This directory is designed to contain your application's core; Singleton services, default configurations, default states and likes. It's NOT recommended to put any components, directives, pipes or simply anything has a template or related to templates in here. @@ -191,7 +196,7 @@

and etc...

-

app/mock-api/

+

src/app/mock-api/

This directory is designed to contain data services for custom made MockAPI library. Detailed information about this directory and the MockAPI library can be found in the @@ -199,7 +204,7 @@ section of this documentation.

-

app/layout/

+

src/app/layout/

This directory designed to contain everything related to the layout of your app. By default, Fuse provides variety of different layout options for you to use.

@@ -224,7 +229,7 @@ layouts, you can put them inside the common folder.

-

app/modules/

+

src/app/modules/

This directory is designed to contain your application's feature modules.

@@ -236,12 +241,7 @@ If you use SSR (Server Side Rendering) you can even include your landing page as one of the modules and keep everything in a single app.

-

assets/

-

- Default Angular assets folder. -

- -

styles/

+

src/styles/

This folder contains 4 different scss files:

diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts index 021647ed..e10f81d0 100644 --- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts +++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts @@ -110,14 +110,27 @@ export class DirectoryStructureComponent implements OnInit {name: 'app.component.html'}, {name: 'app.component.scss'}, {name: 'app.component.ts'}, + {name: 'app.config.ts'}, {name: 'app.resolvers.ts'}, - {name: 'app.routing.ts'}, + {name: 'app.routes.ts'}, ], }, ]; // General dir this.generalDir = [ + { + name : 'public', + children: [ + {name: 'fonts/'}, + {name: 'i18n/'}, + {name: 'icons/'}, + {name: 'images/'}, + {name: 'styles/'}, + {name: 'favicon-16x16.png'}, + {name: 'favicon-32x32.png'}, + ], + }, { name : 'src/', children: [ @@ -139,16 +152,6 @@ export class DirectoryStructureComponent implements OnInit ], }, this.appDir[0], - { - name : 'assets/', - children: [ - {name: 'fonts/'}, - {name: 'i18n/'}, - {name: 'icons/'}, - {name: 'images/'}, - {name: 'styles/'}, - ], - }, { name : 'styles/', children: [ @@ -157,8 +160,6 @@ export class DirectoryStructureComponent implements OnInit {name: 'vendors.scss'}, ], }, - {name: 'favicon-16x16.png'}, - {name: 'favicon-32x32.png'}, {name: 'index.html'}, {name: 'main.ts'}, ], @@ -205,9 +206,9 @@ export class DirectoryStructureComponent implements OnInit } }); - // Expand the first item + // Expand the tree nodes this.appTree.treeControl.expand(this.appTree.treeControl.dataNodes[0]); - this.generalTree.treeControl.expand(this.generalTree.treeControl.dataNodes[0]); + this.generalTree.treeControl.expand(this.generalTree.treeControl.dataNodes[8]); } // ----------------------------------------------------------------------------------------------------- diff --git a/src/app/modules/admin/ui/fuse-components/services/config/config.component.html b/src/app/modules/admin/ui/fuse-components/services/config/config.component.html index bb8aaf29..2a3a459b 100644 --- a/src/app/modules/admin/ui/fuse-components/services/config/config.component.html +++ b/src/app/modules/admin/ui/fuse-components/services/config/config.component.html @@ -52,100 +52,55 @@

Default configuration

- By default, the application wide configuration is stored in src/app/core/config/app.config.ts file and it includes the layout style as + By default, the application wide configuration is stored in src/app.config.ts file and it includes the layout style as well as the color theme configurations:

- The default configuration is supplied to the FuseConfigService using the FuseConfigModule.forRoot() in AppModule: + The default configuration is supplied to the FuseConfigService automatically:

- - -

Methods