@reskit/location
v1.3.1
Published
A kit to extract location
Downloads
13
Maintainers
Readme
Install
Install @reskit/location
by pnpm
pnpm add @reskit/location
Run A Demo
We don't have built in data.
You should set locations by updateLocations
at first.
import { updateLocations, extractLocation } from "@reskit/location";
updateLocations([
{
name: "A",
items: [
{
name: "B",
items: [
{
name: "C",
items: [{ name: "Suzhou", alias: "Gusu" }],
},
{ name: "Mars", alias: ["Martis", "Huoxing"] },
],
},
],
},
]);
import { extractLocation, updateLocations } from "@reskit/location";
console.warn(extractLocation("Let's have a meeting at Gusu tomorrow"));
console.warn(extractLocation("Let's have a meeting at Martis tomorrow"));
The output will be
["A/B/C/Suzhou"]
["A/B/Mars"]
Apply to you project
Create a company that have two buildings Headquarters
and Affiliate
.
const building1 = [
{
name: "2F",
items: [
{ name: "Agora", alias: "shengwang" },
"Stonehenge",
{
name: "East",
items: [{ name: "Colosseum", alias: ["theatre", "great theatre"] }],
},
],
},
{
name: "3F",
items: [{ name: "Suzhou", alias: "Gusu" }, "Hangzhou"],
},
];
const building2 = [
{
name: "1F",
items: [
{ name: "MountHuang", alias: "Mount-Huang" },
{ name: "Chizhou" },
"Great Wall",
"Google",
],
},
];
const buildings = [
{ name: "Headquarters", items: building1 },
{ name: "Affiliate", items: building2 },
];
Update locations
import { updateLocations } from "@reskit/location";
updateLocations(buildings);
Extract location from text
import { extractLocation, updateLocations } from "@reskit/location";
console.warn(extractLocation("Let's have a meeting at the great theatre tonight."));
The console will output
["Headquarters/2F/East/Colosseum"]
Functions
Custom divider
import { extractLocation, updateLocations, updateDivider } from "@reskit/location";
updateDivider("-");
console.warn(extractLocation("Let's have a meeting at Gusu tonight."));
The console will output
["Headquarters-3F-Suzhou"]
Output all the same locations
import { extractLocation, updateLocations, updateDivider } from "@reskit/location";
console.warn(extractLocation("Let's have a meeting at Chizhou! (Chizhou not Hangzhou!).", false));
The console will output
[
"Affiliate-1F-Chizhou",
"Affiliate-1F-Chizhou",
"Headquarters-3F-Hangzhou"
]
Others
Welcome to create PR and make reskit/location better!