import Client, { AccountInfo, BasicMapInfo, ChangeHistory, ImportMapInfo, Label, MapInfo, NewUser, Permission } from '..'; import { LocaleCode, localeFromStr } from '../../app-i18n'; class MockClient implements Client { private maps: MapInfo[] = []; private labels: Label[] = []; private permissionsByMap: Map = new Map(); constructor() { // Remove, just for develop .... function createMapInfo( id: number, starred: boolean, title: string, labels: number[], creator: string, creationTime: string, modifiedByUser: string, modifiedTime: string, description: string, isPublic: boolean, role: 'owner' | 'viewer' | 'editor' ): MapInfo { return { id, title, labels, createdBy: creator, creationTime, lastModificationBy: modifiedByUser, lastModificationTime: modifiedTime, starred, description, isPublic, role }; } this.maps = [ createMapInfo(1, true, "El Mapa", [], "Paulo", "2008-06-02T00:00:00Z", "Berna", "2008-06-02T00:00:00Z", "", true, 'owner'), createMapInfo(11, false, "El Mapa3", [1, 2, 3], "Paulo3", "2008-06-02T00:00:00Z", "Berna", "2008-06-02T00:00:00Z", "", false, 'editor'), createMapInfo(12, false, "El Mapa3", [1, 2, 3], "Paulo3", "2008-06-02T00:00:00Z", "Berna", "2008-06-02T00:00:00Z", "", false, 'editor') ]; this.labels = [ { id: 1, title: "Red Label", iconName: "", color: 'red' }, { id: 2, title: "Blue Label", iconName: "", color: 'blue' } ]; } deleteMapPermission(id: number, email: string): Promise { let perm = this.permissionsByMap.get(id) || []; perm = perm.filter(p=>p.email!=email) this.permissionsByMap.set(id, perm); return Promise.resolve(); } addMapPermissions(id: number, message: string, permissions: Permission[]): Promise { let perm = this.permissionsByMap.get(id) || []; perm = perm.concat(permissions); this.permissionsByMap.set(id, perm); console.log(`Message ${message}`) return Promise.resolve(); } fetchMapPermissions(id: number): Promise { let perm = this.permissionsByMap.get(id); if (!perm) { perm = [{ name: 'Cosme Editor', email: 'pepe@example.com', role: 'editor' }, { name: 'Cosme Owner', email: 'pepe2@example.com', role: 'owner' }, { name: 'Cosme Viewer', email: 'pepe3@example.com', role: 'viewer' }]; this.permissionsByMap.set(id, perm); } return Promise.resolve(perm); } deleteAccount(): Promise { return Promise.resolve(); } updateAccountInfo(firstname: string, lastname: string): Promise { console.log("firstname:" + firstname, +lastname) return Promise.resolve(); } updateAccountPassword(pasword: string): Promise { console.log("password:" + pasword) return Promise.resolve(); } updateAccountLanguage(locale: LocaleCode): Promise { localStorage.setItem('locale', locale); return Promise.resolve(); } importMap(model: ImportMapInfo): Promise { console.log("model:" + model); return Promise.resolve(10); } fetchAccountInfo(): Promise { console.log('Fetch account info ...') const locale: LocaleCode | null = localStorage.getItem('locale') as LocaleCode; return Promise.resolve({ firstname: 'Costme', lastname: 'Fulanito', email: 'test@example.com', locale: localeFromStr(locale) }); } deleteMaps(ids: number[]): Promise { ids.forEach(id => this.deleteMap(id)); return Promise.resolve(); } revertHistory(id: number, cid: number): Promise { console.log("model:" + id + cid); return Promise.resolve(); } createMap(map: BasicMapInfo): Promise { throw new Error("Method not implemented." + map); } fetchLabels(): Promise { console.log("Fetching labels from server") return Promise.resolve(this.labels); } updateMapToPublic(id: number, isPublic: boolean): Promise { const mapInfo = this.maps.find(m => m.id == id); if (mapInfo) { mapInfo.isPublic = isPublic; } return Promise.resolve(); } updateStarred(id: number, starred: boolean): Promise { const mapInfo = this.maps.find(m => m.id == id); if (!mapInfo) { console.log(`Could not find the map iwth id ${id}`); return Promise.reject(); } mapInfo.starred = starred; return Promise.resolve(); } renameMap(id: number, basicInfo: BasicMapInfo): Promise { const exists = this.maps.find(m => m.title == basicInfo.title) != undefined; if (!exists) { this.maps = this.maps.map(m => { const result = m; if (m.id == id) { result.description = basicInfo.description ? basicInfo.description : ''; result.title = basicInfo.title; } return result; }) return Promise.resolve(); } else { const fieldErrors: Map = new Map(); fieldErrors.set('name', 'name already exists ') return Promise.reject({ msg: 'Map already exists ...' + basicInfo.title, fields: fieldErrors }) } } fetchHistory(id: number): Promise { console.log(`Fetching history for ${id}`) const result = [{ id: 1, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' }, { id: 2, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' } , { id: 3, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' }, { id: 4, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' }, { id: 5, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' }, { id: 6, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' }, { id: 7, lastModificationBy: 'Paulo', lastModificationTime: '2008-06-02T00:00:00Z' } ] return Promise.resolve(result); } duplicateMap(id: number, basicInfo: BasicMapInfo): Promise { const exists = this.maps.find(m => m.title == basicInfo.title) != undefined; if (!exists) { const newMap: MapInfo = { id: Math.random() * 1000, description: String(basicInfo.description), title: basicInfo.title, starred: false, createdBy: "current user", labels: [], lastModificationTime: "2008-06-02T00:00:00Z", lastModificationBy: "Berna", creationTime: "2008-06-02T00:00:00Z", isPublic: false, role: 'owner' }; this.maps.push(newMap); return Promise.resolve(newMap.id); } else { const fieldErrors: Map = new Map(); fieldErrors.set('name', 'name already exists ') return Promise.reject({ msg: 'Maps name must be unique:' + basicInfo.title, fields: fieldErrors }) } } deleteLabel(id: number): Promise { this.labels = this.labels.filter(l => l.id != id); console.log("Label delete:" + this.labels); return Promise.resolve(); } deleteMap(id: number): Promise { this.maps = this.maps.filter(m => m.id != id); return Promise.resolve(); } registerNewUser(user: NewUser): Promise { console.log("user:" + user) return Promise.resolve(); } fetchAllMaps(): Promise { console.log("Fetching maps from server") return Promise.resolve(this.maps); } resetPassword(email: string): Promise { console.log("email:" + email) return Promise.resolve(); } } export default MockClient;