-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'developing/2.0.0' of https://github.com/sunnydanu/godev…
….run into feat(new-tool)-microphone-tester Merge branch 'developing/2.0.0' of https://github.com/sunnydanu/godev.run into feat(new-tool)-microphone-tester
- Loading branch information
Showing
7 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
declare module 'countries-db'{ | ||
export interface CountryInfo { | ||
id: string | ||
name: string | ||
officialName: string | ||
emoji: string | ||
emojiUnicode: string | ||
iso2: string | ||
iso3: string | ||
isoNumeric: string | ||
geonameId: number | ||
continentId: string | ||
population: number | ||
elevation: number | ||
areaSqKm: number | ||
coordinates: { | ||
latitude: number | ||
longitude: number | ||
}, | ||
timezones: Array<string> | ||
domain: string | ||
currencyCode: string | ||
currencyName: string | ||
postalCodeFormat: string | ||
postalCodeRegex: string | ||
phoneCode: string | ||
neighborCountryIds: Array<string> | ||
languages: Array<string> | ||
locales: Array<string> | ||
} | ||
|
||
export function getAllCountries(): {[id:string]: CountryInfo}; | ||
export function getCountry(id: string, property: string): string | Array<string> | number; | ||
export function getCountry(id: string): CountryInfo; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Flag } from '@vicons/tabler'; | ||
import { defineTool } from '../tool'; | ||
|
||
export const tool = defineTool({ | ||
name: 'ISO 3166 Country Codes Searcher', | ||
path: '/iso-3166-searcher', | ||
description: 'Allow searching for Country Code (ISO 3166) and info', | ||
keywords: ['iso', 'iso2', 'iso3', 'phone', 'currency', 'timezones', 'domain', 'lang', 'iso3166', 'country', 'ccltd', 'searcher'], | ||
component: () => import('./iso-3166-searcher.vue'), | ||
icon: Flag, | ||
createdAt: new Date('2024-04-20'), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<script setup lang="ts"> | ||
import CountriesDB from 'countries-db'; | ||
import ISO6391 from 'iso-639-1'; | ||
import { useFuzzySearch } from '@/composable/fuzzySearch'; | ||
import useDebouncedRef from '@/composable/debouncedref'; | ||
const searchQuery = useDebouncedRef('', 500); | ||
const countriesSearchData = Object.entries(CountriesDB.getAllCountries()).map(([_, info]) => { | ||
return { | ||
iso2: info.iso2, | ||
iso3: info.iso3, | ||
domain: info.domain, | ||
name: `${info.name} ${info.officialName}`, | ||
info, | ||
}; | ||
}); | ||
const { searchResult } = useFuzzySearch({ | ||
search: searchQuery, | ||
data: countriesSearchData, | ||
options: { | ||
keys: ['name', { name: 'iso3', weight: 3 }, { name: 'iso2', weight: 2 }, 'domain'], | ||
threshold: 0.3, | ||
isCaseSensitive: false, | ||
useExtendedSearch: true, | ||
}, | ||
}); | ||
function langToName(code: string) { | ||
const name = ISO6391.getName(code); | ||
if (!name) { | ||
return code; | ||
} | ||
return `${code} (${name})`; | ||
} | ||
</script> | ||
|
||
<template> | ||
<div mx-auto max-w-2400px important:flex-1> | ||
<div flex items-center gap-3> | ||
<c-input-text | ||
v-model:value="searchQuery" | ||
placeholder="Search Countries by name, iso2, iso3..." | ||
mx-auto max-w-600px | ||
> | ||
<template #prefix> | ||
<icon-mdi-search mr-6px color-black op-70 dark:color-white /> | ||
</template> | ||
</c-input-text> | ||
</div> | ||
|
||
<div v-if="searchQuery.trim().length > 0"> | ||
<div | ||
v-if="searchResult.length === 0" | ||
mt-4 | ||
text-20px | ||
font-bold | ||
> | ||
No results | ||
</div> | ||
|
||
<div v-else> | ||
<div mt-4 text-20px font-bold> | ||
Search result | ||
</div> | ||
|
||
<n-table> | ||
<thead> | ||
<th>Iso2/Iso3</th> | ||
<th>Name and Info</th> | ||
</thead> | ||
<tbody> | ||
<tr v-for="(result, ix) in searchResult" :key="ix"> | ||
<td style="vertical-align: top"> | ||
<input-copyable :value="result.iso2" /> | ||
<input-copyable :value="result.iso3" /> | ||
</td> | ||
<td> | ||
<input-copyable label-width="150px" label="Name" label-position="left" :value="result.name" mb-1 /> | ||
<input-copyable label-width="150px" label="Official Name" label-position="left" :value="result.info.officialName" mb-1 /> | ||
<input-copyable label-width="150px" label="Domain" label-position="left" :value="result.info.domain" mb-1 /> | ||
<input-copyable label-width="150px" label="Emoji" label-position="left" :value="`${result.info.emoji} (${result.info.emojiUnicode})`" mb-1 /> | ||
<input-copyable label-width="150px" label="ISO Num" label-position="left" :value="result.info.isoNumeric" mb-1 /> | ||
<input-copyable label-width="150px" label="Continent" label-position="left" :value="result.info.continentId" mb-1 /> | ||
<input-copyable label-width="150px" label="Elevation (m)" label-position="left" :value="result.info.elevation" mb-1 /> | ||
<input-copyable label-width="150px" label="Population" label-position="left" :value="result.info.population" mb-1 /> | ||
<input-copyable label-width="150px" label="Area (km²)" label-position="left" :value="result.info.areaSqKm" mb-1 /> | ||
<input-copyable label-width="150px" label="Timezones" label-position="left" :value="result.info.timezones.join('\n')" mb-1 /> | ||
<input-copyable label-width="150px" label="Currency" label-position="left" :value="`${result.info.currencyCode} / ${result.info.currencyName}`" mb-1 /> | ||
<input-copyable label-width="150px" label="Postal Code" label-position="left" :value="`${result.info.postalCodeFormat} / ${result.info.postalCodeRegex}`" mb-1 /> | ||
<input-copyable label-width="150px" label="Phone Code" label-position="left" :value="result.info.phoneCode" mb-1 /> | ||
<input-copyable label-width="150px" label="Neighbor Countries" label-position="left" :value="result.info.neighborCountryIds.map(id => CountriesDB.getCountry(id, 'name')?.toString() || id).join(', ')" mb-1 /> | ||
<input-copyable label-width="150px" label="Languages" label-position="left" :value="result.info.languages.map(langToName).join(', ')" mb-1 /> | ||
<input-copyable label-width="150px" label="Locales" label-position="left" :value="result.info.locales.map(langToName).join(', ')" mb-1 /> | ||
<!-- //NOSONAR --><n-a :href="`https://www.openstreetmap.org/#map=5/${result.info.coordinates.latitude}/${result.info.coordinates.longitude}`" target="_blank"> | ||
> See on OpenStreetMap | ||
</n-a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</n-table> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |