Use dummy themes for now

This commit is contained in:
Jiiks 2018-08-06 21:37:15 +03:00
parent 7b1f36cb9c
commit 6b3fc39a1d
2 changed files with 38 additions and 3 deletions

View File

@ -32,7 +32,14 @@
font-weight: 700;
.bd-remoteCard-info {
line-height: 14px;
display: flex;
font-size: 14px;
line-height: 16px;
.bd-material-design-icon {
display: flex;
fill: $colbdgreen;
}
}
}
}

View File

@ -74,8 +74,36 @@
async refreshOnline() {
this.loadingOnline = true;
try {
const getThemes = await BdWebApi.themes.get();
this.onlineThemes = JSON.parse(getThemes);
// const getThemes = await BdWebApi.themes.get();
// this.onlineThemes = JSON.parse(getThemes);
const dummies = [];
for (let i = 0; i < 10; i++) {
dummies.push({
id: `theme${i}`,
name: `Dummy ${i}`,
tags: ['tag1', 'tag2', 'tag3', 'tag4', 'tag5'],
installs: Math.floor(Math.random() * 10000),
updated: '2018-07-21T14:51:32.057Z',
rating: Math.floor(Math.random() * 1000),
activeUsers: Math.floor(Math.random() * 1000),
rated: Math.random() > .5,
version: '1.0.0',
repository: {
name: 'ExampleRepository',
baseUri: 'https://github.com/Jiiks/ExampleRepository',
rawUri: 'https://github.com/Jiiks/ExampleRepository/raw/master'
},
files: {
readme: 'Example/readme.md',
previews: [{
large: 'Example/preview1-big.png',
thumb: 'Example/preview1-small.png'
}]
},
author: 'Jiiks'
});
}
this.onlineThemes = { docs: dummies };
} catch (err) {
Logger.err('ThemesView', err);
} finally {