Discussion on Fuse - Angular Admin Template

Discussion on Fuse - Angular Admin Template

By
Cart 25,871 sales
Recently Updated
Well Documented

srcn does not currently provide support for this item.

1571 comments found.

“warn – No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration. warn – https://tailwindcss.com/docs/content-configuration. ” No Style CSS loaded while runing

After running ‘npm install,’ I received the following warnings: ‘warn – No utility classes were detected in your source files. If this is unexpected, double-check the content option in your Tailwind CSS configuration.’ The application is running, but the styles are not loading correctly, similar to the behavior observed in your demo.

You are clearly not capable of being able to use Fuse. I suggest you to request a refund and look for other solutions.

Spamming comments like this will not solve your problems.

Cheers

We downloaded the demo version of the application and followed your guidelines, but unfortunately, we encountered numerous errors. This aligns with our previous feedback about the challenges in using your product. We appreciate clarity on how to effectively utilize your products without encountering these issues. It seems that the issues persist even after following the recommended steps. We suggest providing clear guidelines and steps for users to follow when releasing new versions to ensure a smooth experience. Currently, only some versions are loading properly without any additional changes. It would be beneficial to address these concerns to enhance user experience and avoid any compatibility issues. Your feedback is valuable for improving the overall usability of the product

Hi Does Fuse support RTL at the moment like Arabic language ?

Hello,

It currently doesn’t support RTL

Cheers

is this using Angular 17?

nevermind i saw the changelog

Does it Support SSR?

Not yet, it’s in our todo list.

Hello, I have a simple question. I’m trying to replace the mock API with my backend. When attempting an HTTP request like `this.http.post(url, credentials)`, the resulting URL is `http://localhost:4200/url`. It seems to be intercepted and modified. (Great template by the way!)

Hello,

Fuse doesn’t alter urls in anyway.

Please open a support ticket at https://withinpixels.ticksy.com and share the code within the ticket and we will get back to you.

Cheers

Is fuse using webpack or vite?

It uses AngularCLI which uses Vite in the newest version.

Hi,

I just saw the new version with V17 upgrade.

It doesn’t use new control flow which angular introduces in v17.

May i know when you will support that ?

The new control flow is in developer preview. We don’t introduce anything that is not marked as stable by Angular team.

Once it becomes stable, you can expect Fuse to be updated.

This is a suggestions for all that are looking for a role based implementation. This is what i did:

Step 1 app/core/user/user.type.ts just add another field – role?: string; to the User model/type

obviously, the backend/api must return the jwt token with this data inside, namely role: “value”

Step 2 create a new guard in app/core/auth/guards/role.guard.ts with following content

import { inject } from ’@angular/core’; import { CanActivateChildFn, CanActivateFn, Router } from ’@angular/router’; import { UserService } from ‘app/core/user/user.service’; import { of, switchMap } from ‘rxjs’;

export const RoleGuard: CanActivateChildFn = (route, state) => { const router: Router = inject(Router); return inject(UserService).user$.pipe( switchMap((user) => { if (route.data.roles.some((role) => user.role === role)) { return of(true); } else { return of(router.parseUrl(’/’)); } }) ); };

Step 3 in app/app.routes.ts wherever you need role based auth, then add the RoleGuard and the data to specify which roles are allowed to access the route; example:

// Admin routes
{
    path: '',
    canActivate: [AuthGuard],
    canActivateChild: [AuthGuard, RoleGuard],
    component: LayoutComponent,
    resolve: {
        initialData: initialDataResolver,
    },
    children: [
        {
            path: 'forms',
            data: {
                roles: ['Super Operator', 'Operator'],
            },
            loadChildren: () =>
                import('app/modules/admin/forms/forms.routes'),
        },
    ],
},

Hope this helps. Suggestions are welcomed ;)

Role based authentification, i mean

It’s come with angular 16 + Angular material and ngx language for i18 (multilanguage)?

Hello,

Angular and Angular Material v16. We don’t use ngx-translate, we use Transloco for the multi language setup.

when can I expect the next code update on this ?

I’m planning to start a new project from this angular starter template. So if the newer version is planning in next 10 days or so, I can wait and start my project with that new code.

Please let me know if you have any ETA.

Thanks in advance.

Hello,

Next update will be after Angular v17 release. Most likely sometime around first half of the December.

Can’t get access to your github repo. I keep getting the error that my purchase code was already used, but I still can’t see the repo invite in my github account. Please help. I can no longer open a ticket because my support time has expired.

Send a message to us from our profile here and include your purchase code. We will look into it.

Cheers

Is there any plan to support rtl in theme

We don’t have any immediate plans for it.

Cheers

I also wanted to use this theme with nx.dev

@haipham22—were you able to use it successfully.?

hi, please can u also provide as a bonus the front page to this project..i actually bought it becos of the very first landing page

It’s our landing page, it is normal for Themeforest templates. It’s there so you can easily find other related things like documentation, change log and etc.

The landing page is not built with Angular.

ok can u give it to me? whatever its built with….give me as a gift..the person i bought this for said he needs it

Sorry, that’s not possible.

Hello, how do I change the color of components with disabled property? Currently the color is white in the background and a very low gray

Hello,

Please open a support ticket at https://withinpixels.ticksy.com with screenshots so we can see the issue.

Cheers

Does it support RTL ?

Hello,

Fuse Angular does not support RTL at the moment.

Dear All, Will they have a date for when they will integrate the calendar application again? It is crucial for my project and I had to disable it when they removed it.

Stay tuned

Could you tell me which library you used to add it for the meantime?

We used FullCalendar in the past and will probably use that one again when we add the app.

Please, if you could put it on the short-term roadmap, I would greatly appreciate it, it is a great topic and it won’t take long to have everything.

​Hi, How to use fuse-navigation without service? Im using fuse angular. How to use fuse-navigation without any service including mock service? I just wanted to manage routes in data.json. You have mentioned in documentation but I couldn’t find it? Is there any proper way to remove all related navigation services? ​ Sorry my support is expired. Thanks

Hello,

fuse-navigation component already works with an input. You don’t have to use the service at all.

If you need further help, please use our support ticket system at https://withinpixels.ticksy.com

Cheers

help me, I need support fast

I don’t see any ticket from you.

Please open a ticket at https://withinpixels.ticksy.com

Please i need help..having an issue..when i move to live server..it takes a little time for the entire site to load..but after it loads it works fine

any suggestions

Hello,

Please open a support ticket at https://withinpixels.ticksy.com and tell us the address of your live server so we can take a closer look.

Cheers

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey