mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:13:08 +02:00
46 lines
575 B
JavaScript
46 lines
575 B
JavaScript
import uuid from './uuid';
|
|
|
|
const home = {
|
|
left: [
|
|
'profile',
|
|
'calendar',
|
|
'rss-reader',
|
|
'photo-stream',
|
|
'version'
|
|
],
|
|
right: [
|
|
'broadcast',
|
|
'notifications',
|
|
'user-recommendation',
|
|
'donation',
|
|
'nav',
|
|
'tips'
|
|
]
|
|
};
|
|
|
|
export default () => {
|
|
const homeData = [];
|
|
|
|
home.left.forEach(widget => {
|
|
homeData.push({
|
|
name: widget,
|
|
id: uuid(),
|
|
place: 'left'
|
|
});
|
|
});
|
|
|
|
home.right.forEach(widget => {
|
|
homeData.push({
|
|
name: widget,
|
|
id: uuid(),
|
|
place: 'right'
|
|
});
|
|
});
|
|
|
|
const data = {
|
|
cache: true,
|
|
home: homeData
|
|
};
|
|
|
|
return data;
|
|
};
|