import AuthenticationPage from './AuthenticationPage'; function getSlug(path) { const m = path.match(/([^\/]+?)(\.[^\/\.]+)?$/); return m && m[1]; } export default class TestRepo { constructor(config) { this.config = config; if (window.repoFiles == null) { throw 'The TestRepo backend needs a "window.repoFiles" object.'; } } setUser() {} authComponent() { return AuthenticationPage; } authenticate(state) { return Promise.resolve({email: state.email}); } entries(collection) { const entries = []; const folder = collection.get('folder'); if (folder) { for (var path in window.repoFiles[folder]) { entries.push({ path: folder + '/' + path, slug: getSlug(path), raw: window.repoFiles[folder][path].content }); } } return Promise.resolve({ pagination: {}, entries }); } entry(collection, slug) { return this.entries(collection).then((response) => ( response.entries.filter((entry) => entry.slug === slug)[0] )); } persist(collection, entry, mediaFiles) { alert('This will be the persisted data:\n' + entry.raw); return Promise.resolve({collection, entry}); } }