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

Add support v1, nil, max #172

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
uses: bavix/.github/.github/workflows/compile-assets.yml@0.3.2
secrets: inherit
with:
nodejs: 21.x
nodejs: 22.x
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ on:
jobs:
test:
uses: bavix/.github/.github/workflows/npm-test.yml@0.3.2
with:
nodejs: 22.x
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion public/assets/bundle-BpvKsHyx.js.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/assets/bundle-Dc_XYQh-.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@

gtag('config', 'G-0E805HG8JN');
</script>
<script src="assets/bundle-BpvKsHyx.js"></script>
<script src="assets/bundle-Dc_XYQh-.js"></script>
</body>
</html>
89 changes: 70 additions & 19 deletions src/nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ import React from 'react';
import "@theme-toggles/react/css/Expand.css"
import { Expand } from "@theme-toggles/react"
import { Helmet, HelmetProvider } from 'react-helmet-async';
import { v4, v6, v7 } from 'uuid';
import { v1, v4, v6, v7, NIL, MAX } from 'uuid';
import { Notify } from 'notiflix/build/notiflix-notify-aio';

// Array of UUID types
const uuidTypes = ['v1','v4', 'v6', 'v7', 'nil', 'max'];

export default class NavComponent extends React.Component {
/**
* Constructor for the NavComponent.
Expand All @@ -18,31 +21,75 @@ export default class NavComponent extends React.Component {
}

/**
* Generates a new UUID and copies it to the clipboard.
* Generates a new UUID of the specified type and copies it to the clipboard.
*
* @param {string} type - The type of UUID to generate. Can be 'v4', 'v6', or 'v7'.
* @param {string} type - The type of UUID to generate. Can be one of the following:
* - 'v1' for a time-based UUID
* - 'v4' for a random UUID
* - 'v6' for a UUID using the SHA-256 hash function
* - 'v7' for a UUID using the SHA-1 hash function
* - 'nil' for a nil UUID
* - 'max' for the maximum UUID
* @param {function} setUuid - A function to set the UUID state.
* @return {void}
*/
generateUuid = (type, setUuid) => {
// Check if the specified type is valid
if (!uuidTypes.includes(type)) {
// Display an error message if the type is invalid
Notify.failure(`Invalid type: ${type}`);
return;
}

// Generate a new UUID based on the specified type
const uuid = type === 'v4' ? v4() : type === 'v6' ? v6() : v7();
const uuid = {
'v1': v1(), // Generate a time-based UUID
'v4': v4(), // Generate a random UUID
'v6': v6(), // Generate a UUID using the SHA-256 hash function
'v7': v7(), // Generate a UUID using the SHA-1 hash function
'nil': NIL, // Generate a nil UUID
'max': MAX // Generate the maximum UUID
}[type];

// Copy the generated UUID to the clipboard
navigator.clipboard.writeText(uuid)
.then(() => {
// Display a success message with the copied UUID
Notify.success('Text ' + uuid + ' copied');
// Display a success message if the copy operation is successful
Notify.success(`Text ${uuid} copied`);
})
.catch((error) => {
.catch(error => {
// Display an error message if the copy operation fails
Notify.failure('Error copying text: ' + error);
Notify.failure(`Error copying text: ${error}`);
});

// Update the UUID state with the generated UUID
setUuid(uuid);
}

/**
* Saves the UUID type to localStorage.
*
* @param {string} type - The UUID type to save.
* @return {void}
*/
saveSelectedUuidType = (type) => {
// Save the UUID type to localStorage
localStorage.setItem('uuidType', type);
}

/**
* Retrieves the UUID type from localStorage.
*
* @return {string} The UUID type from localStorage or 'v4' if it is not found.
*/
getStoredUuidType = () => {
// Retrieve the UUID type from localStorage
let type = localStorage.getItem('uuidType');

// Return the UUID type or 'v4' if it is not found
return type ? type : 'v4';
}

/**
* Render method for the NavComponent.
*
Expand All @@ -53,14 +100,11 @@ export default class NavComponent extends React.Component {
* @returns {JSX.Element} The rendered NavComponent.
*/
render() {
// Array of UUID types
const uuidTypes = ['v4', 'v6', 'v7'];

// State to store the selected UUID type
const [uuidType, setUuidType] = React.useState('v4');
const [selectedUuidType, setSelectedUuidType] = React.useState(this.getStoredUuidType());

// State to store the generated UUID
const [uuid, setUuid] = React.useState('');
const [generatedUuid, setGeneratedUuid] = React.useState('');

/**
* Destructures the isToggled and setToggle props from the NavComponent's props.
Expand All @@ -73,6 +117,7 @@ export default class NavComponent extends React.Component {
// Helmet to update the theme class in the html tag
return (
<HelmetProvider>
{/* Navigation panel */}
<nav
className={isToggled ? "navbar is-dark" : "navbar is-light"}
role="navigation"
Expand All @@ -87,25 +132,31 @@ export default class NavComponent extends React.Component {
<div className="navbar-brand">
{/* Link to homepage */}
<a className="navbar-item" href="./">
<img src="./android-chrome-192x192.png" /> {/* Image for brand */}
{/* Image for brand */}
<img src="./android-chrome-192x192.png" />
</a>
</div>
{/* Menu */}
<div className="navbar-menu">
<div className="navbar-start">
{/* Link to homepage */}
<a className="navbar-item" href="./">
UUIDConv UI {/* Menu item */}
{/* Menu item */}
UUIDConv UI
</a>
{/* Online UUID Generator */}
<div className='navbar-item'>
{/* Select to choose the UUID type */}
<div className="field has-addons">
<p className="control">
<span className="select is-link is-small">
<select onChange={(e) => setUuidType(e.target.value)}>
{/* Dropdown menu for UUID types */}
<select onChange={(e) => {
setSelectedUuidType(e.target.value);
this.saveSelectedUuidType(e.target.value);
}}>
{uuidTypes.map(type => (
<option key={type} value={type} checked={uuidType === type}>
<option key={type} value={type} selected={selectedUuidType === type}>
{type}
</option>
))}
Expand All @@ -119,14 +170,14 @@ export default class NavComponent extends React.Component {
size={40}
className="input is-link is-small"
type="text"
value={uuid}
value={generatedUuid}
placeholder="Online UUID Generator"
/>
</p>
{/* Generate button */}
<p className="control">
<button className="button is-link is-small"
onClick={() => this.generateUuid(uuidType, setUuid)}>Generate</button>
onClick={() => this.generateUuid(selectedUuidType, setGeneratedUuid)}>Generate</button>
</p>
</div>
</div>
Expand Down