mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import { getSetting, registerComponent, Components } from 'meteor/vulcan:core';
|
|
|
|
const renderSetting = key => (
|
|
<tr key={key}>
|
|
<td><code>{key}</code></td>
|
|
<td>{JSON.stringify(getSetting(key))}</td>
|
|
</tr>
|
|
);
|
|
|
|
const Settings = props => {
|
|
|
|
const publicSettings = Meteor.settings.public;
|
|
|
|
return (
|
|
<Components.ShowIf check={user => user && user.isAdmin} failureComponent={<FormattedMessage id="app.noPermission" />}>
|
|
<div className="settings">
|
|
|
|
<h1>Public settings</h1>
|
|
|
|
<div>To access your private settings, have a look at your <code>settings.json</code> file.</div>
|
|
|
|
<div>More info about settings <a href="http://nova-docs.telescopeapp.org/settings.html">in the docs</a></div>
|
|
|
|
<div className="settings-wrapper">
|
|
|
|
<table className="table">
|
|
<thead>
|
|
<tr>
|
|
<td>Name</td>
|
|
<td>Value</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{Object.keys(publicSettings).filter(key => !Array.isArray(publicSettings[key])).map(renderSetting)}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</Components.ShowIf>
|
|
);
|
|
}
|
|
|
|
registerComponent('Settings', Settings);
|