mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +03:00
95 lines
1.8 KiB
TypeScript
95 lines
1.8 KiB
TypeScript
|
|
import { Path, Patp, Poke, resourceAsPath } from "../lib";
|
|
import {
|
|
Contact,
|
|
ContactUpdateAdd,
|
|
ContactUpdateEdit,
|
|
ContactUpdateRemove,
|
|
ContactEditField,
|
|
ContactShare,
|
|
ContactUpdate,
|
|
ContactUpdateAllowShips,
|
|
ContactUpdateAllowGroup,
|
|
ContactUpdateSetPublic,
|
|
} from "./types";
|
|
|
|
const storeAction = <T extends ContactUpdate>(data: T): Poke<T> => ({
|
|
app: "contact-store",
|
|
mark: "contact-action",
|
|
json: data,
|
|
});
|
|
|
|
export { storeAction as contactStoreAction };
|
|
|
|
export const addContact = (ship: Patp, contact: Contact): Poke<ContactUpdateAdd> => {
|
|
contact["last-updated"] = Date.now();
|
|
|
|
return storeAction({
|
|
add: { ship, contact },
|
|
});
|
|
};
|
|
|
|
export const removeContact = (ship: Patp): Poke<ContactUpdateRemove> =>
|
|
storeAction({
|
|
remove: { ship },
|
|
});
|
|
|
|
export const share = (recipient: Patp): Poke<ContactShare> => ({
|
|
app: "contact-push-hook",
|
|
mark: "contact-action",
|
|
json: { share: recipient },
|
|
});
|
|
|
|
export const editContact = (
|
|
ship: Patp,
|
|
editField: ContactEditField
|
|
): Poke<ContactUpdateEdit> =>
|
|
storeAction({
|
|
edit: {
|
|
ship,
|
|
"edit-field": editField,
|
|
timestamp: Date.now(),
|
|
},
|
|
});
|
|
|
|
export const allowShips = (
|
|
ships: Patp[]
|
|
): Poke<ContactUpdateAllowShips> => storeAction({
|
|
allow: {
|
|
ships
|
|
}
|
|
});
|
|
|
|
export const allowGroup = (
|
|
ship: string,
|
|
name: string
|
|
): Poke<ContactUpdateAllowGroup> => storeAction({
|
|
allow: {
|
|
group: resourceAsPath({ ship, name })
|
|
}
|
|
});
|
|
|
|
export const setPublic = (
|
|
setPublic: any
|
|
): Poke<ContactUpdateSetPublic> => {
|
|
return storeAction({
|
|
'set-public': setPublic
|
|
});
|
|
}
|
|
|
|
export const retrieve = (
|
|
ship: string
|
|
) => {
|
|
const resource = { ship, name: '' };
|
|
return {
|
|
app: 'contact-pull-hook',
|
|
mark: 'pull-hook-action',
|
|
json: {
|
|
add: {
|
|
resource,
|
|
ship
|
|
}
|
|
}
|
|
};
|
|
}
|