Skip to content

Why does useFilesystem Exists? #53

Open
@hheimerd

Description

@hheimerd

Why do I need this hook? Why are you not satisfied with accessing these functions directly?
All functions from this hook are static and have no initialization stage, functions have no state, available features do not change. These are literally static functions wrapped in useCallback, which are already memoized and never change.

And this is the only hook that is described in the documentation

Activity

hheimerd

hheimerd commented on Jun 5, 2023

@hheimerd
Author

I have come up with a new hook for you, you can use. If necessary, I can make a pull request.

type RoundOptions = number

type MathResult = {
    random(): number,
    round(options: RoundOptions): number,
    isAvailable: boolean
}

export function useMath(): MathResult {
    const random = useCallback(() => {
        const result = Math.random();
        return result;
    }, []);

    const round = useCallback((options: RoundOptions) => {
        const result = Math.round(options);
        return result;
    }, []);

    return {
        random,
        round,
        isAvailable: true,
    };
}
changed the title Why useFilesystem Exists? Why does useFilesystem Exists? on Jun 5, 2023
oliveryasuna

oliveryasuna commented on Nov 5, 2023

@oliveryasuna

This is rude and should be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

      Participants

      @oliveryasuna@hheimerd

      Issue actions

        Why does useFilesystem Exists? · Issue #53 · capacitor-community/react-hooks