Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ FEATURE ] Automate Lucide Icon additions #202

Open
stephendpmurphy opened this issue Aug 5, 2024 · 10 comments
Open

[ FEATURE ] Automate Lucide Icon additions #202

stephendpmurphy opened this issue Aug 5, 2024 · 10 comments
Labels
enhancement New feature or request

Comments

@stephendpmurphy
Copy link

stephendpmurphy commented Aug 5, 2024

Is your feature request related to a problem? Please describe.
To remove a bit of the leg work of adding a new icon it would nice if part of the CLI was essentially a helper that takes the Icon name and creates the necessary lib/icons/*.ts file with the wrapped export.

Describe the solution you'd like
Add a new icon command alongside add which takes Lucid icon names as an argument and creates the necessary .ts file.

Describe alternatives you've considered
Currently using a script like this to automate the creation

#!/bin/bash

if [ -z "$1" ]; then
  echo "Usage: addIcon.sh <iconName>"
  exit 1
fi

iconName=$1

# Create the new icon file under `lib/icons`
iconPath="src/lib/icons/${iconName}.ts"
touch $iconPath

# Write the icon content
echo "import {${iconName}} from 'lucide-react-native';" >> $iconPath
echo "import {iconWithClassName} from './iconWithClassName';" >> $iconPath
echo "iconWithClassName(${iconName});" >> $iconPath
echo "export {${iconName}};" >> $iconPath

Additional context
I've always been interested in creating a node based CLI script and would be happy to tackle this addition if that would be OK.

@stephendpmurphy stephendpmurphy added the enhancement New feature or request label Aug 5, 2024
@trevorpfiz
Copy link

This would be great! I am also having some troubles with auto imports from the icon exports, have you had any issues with that?

@RajeshPandey057
Copy link

RajeshPandey057 commented Aug 12, 2024

Check this out #198, replace lucide with iconify and only one export needed. Iconify includes lucide and so much more https://icon-sets.iconify.design/

@mrzachnugent
Copy link
Owner

I am open to this. It will need to be another command than "add" since there are some conflicts between the components and the lucide-icon names.

@helix-77
Copy link

helix-77 commented Sep 5, 2024

another suggestion: instead of creating separate files for each icons, create a single icons.tsx and increment the icons there. For example:

import {
  Home,
  Library,
  UserPlus,
  Layers,
  ListPlus,
} from 'lucide-react-native';
import { iconWithClassName } from './iconWithClassName';


iconWithClassName(Home);
iconWithClassName(Library);
iconWithClassName(UserPlus);
iconWithClassName(Layers);
iconWithClassName(ListPlus);

export {
  Home,
  Library,
  UserPlus,
  Layers,
  ListPlus,
};

after that just import { Home, Layers} from '../../lib/icons/icons';

This way the codebase will remain neat.

@mrzachnugent
Copy link
Owner

mrzachnugent commented Sep 5, 2024

@helix-77 That's how it was at first, the problem I faced was with the CLI when adding icons. It would need to parse the file to see if the icon is already there, add text in 3 places, and if the user manually changed something it could stop working so it was easier to add a file for each icon.

React-native-reusables is meant as a quick start for your projects and it is encouraged that you make any changes you need. So, by all means, modify your the icons in your codebase to look like your suggestion.

@RajeshPandey057
Copy link

We can maybe utilise component.json here by adding an 'icons' field and then on each run we can just check that key and regenerate whole file without needing to parse it.

@stephendpmurphy
Copy link
Author

I am open to this. It will need to be another command than "add" since there are some conflicts between the components and the lucide-icon names.

sorry for falling off the deep end @mrzachnugent. I'm still interested in tackling this and I'll start working something up.

@Dosbodoke
Copy link

I have gone with a different approach and it's working fine to me

I create a component named lucide-icon.tsx that allows me to use any lucide icon like <LucideIcon name="Check" className="size-4 text-accent-foreground" />

Notice that the name prop does have type safety

import { icons } from 'lucide-react-native';

import { iconWithClassName } from './iconWithClassName';

const LucideIcon = ({
  name,
  size,
  strokeWidth = 2,
  className,
}: {
  name: keyof typeof icons;
  size?: number;
  strokeWidth?: number;
  className?: string;
}) => {
  const Icon = icons[name];
  iconWithClassName(Icon);
  return <Icon size={size} strokeWidth={strokeWidth} className={className} />;
};

export { LucideIcon };

@mrzachnugent
Copy link
Owner

If using the generic approach, please take this warning into consideration: https://lucide.dev/guide/packages/lucide-react-native#one-generic-icon-component

I would also suggest rapping the LucideIcon with the iconWithClassName function. In the snippet above, the iconWithClassName function is called every time the component renders.

On another note, to fix allowing the icons to receive a class name, I've been thinking about adding a patch-package but haven't looked into it. That way, we could import directly from 'lucide-react-native' and we could get ride of the /icons folder.

@Dosbodoke
Copy link

Dosbodoke commented Feb 10, 2025

What do you mean by

I would also suggest rapping the LucideIcon with the iconWithClassName function. In the snippet above, the iconWithClassName function is called every time the component renders.

Tried it and didn't worked. I couldn't find any other way to do it besides the one that I commented.

And when I read #341 found that it can be way harder than I tough. What do you suggets for now?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

6 participants