mirror of
https://github.com/flarum/core.git
synced 2025-10-11 15:04:25 +02:00
- Get rid of Bootstrap (except we still rely on some JS) - Use BEM class names - Rework variables/theme config - Fix various bugs, including some on mobile The CSS is still not ideal – it needs to be cleaned up some more. But that can be a focus for after beta.
32 lines
694 B
JavaScript
32 lines
694 B
JavaScript
import Component from 'flarum/Component';
|
|
import ItemList from 'flarum/utils/ItemList';
|
|
import listItems from 'flarum/helpers/listItems';
|
|
|
|
/**
|
|
* The `FooterPrimary` component displays primary footer controls, such as the
|
|
* forum statistics. On the default skin, these are shown on the left side of
|
|
* the footer.
|
|
*/
|
|
export default class FooterPrimary extends Component {
|
|
view() {
|
|
return (
|
|
<ul className="Footer-controls">
|
|
{listItems(this.items().toArray())}
|
|
</ul>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Build an item list for the controls.
|
|
*
|
|
* @return {ItemList}
|
|
*/
|
|
items() {
|
|
const items = new ItemList();
|
|
|
|
// TODO: add forum statistics
|
|
|
|
return items;
|
|
}
|
|
}
|