Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: refactor settings, make extensible #100

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 139 additions & 0 deletions js/src/admin/components/PollsSettingsPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
import app from 'flarum/admin/app';
import ExtensionPage from 'flarum/admin/components/ExtensionPage';
import ItemList from 'flarum/common/utils/ItemList';
import Mithril from 'mithril';

export default class PollsSettingsPage extends ExtensionPage {
content() {
return (
<div className="PollsSettingsPage">
<div className="container">
<div className="PollsSettingsTabPage PollsSettingsPage--settings">
<div className="Form">
{this.settingsItems().toArray()}
<div className="Form-group">{this.submitButton()}</div>
</div>
</div>
</div>
</div>
);
}

settingsItems(): ItemList<Mithril.Children> {
const items = new ItemList<Mithril.Children>();

items.add(
'general',
<div className="Section">
<h3>{app.translator.trans('fof-polls.admin.settings.general.heading')}</h3>
<p className="helpText">{app.translator.trans('fof-polls.admin.settings.general.help')}</p>
{this.generalItems().toArray()}
</div>
);

items.add(
'globalPolls',
<div className="Section">
<h3>{app.translator.trans('fof-polls.admin.settings.global_polls.heading')}</h3>
<p className="helpText">{app.translator.trans('fof-polls.admin.settings.global_polls.help')}</p>
{this.globalPollsItems().toArray()}
</div>
);

items.add(
'image',
<div className="Section">
<h3>{app.translator.trans('fof-polls.admin.settings.image.heading')}</h3>
<p className="helpText">{app.translator.trans('fof-polls.admin.settings.image.help')}</p>
{this.imageItems().toArray()}
</div>
);

return items;
}

generalItems(): ItemList<Mithril.Children> {
const items = new ItemList<Mithril.Children>();

items.add(
'colorBlend',
this.buildSettingComponent({
setting: 'fof-polls.optionsColorBlend',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.options_color_blend'),
help: app.translator.trans('fof-polls.admin.settings.options_color_blend_help'),
})
);

items.add(
'maxOptions',
this.buildSettingComponent({
setting: 'fof-polls.maxOptions',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.max_options'),
min: 2,
})
);

return items;
}

globalPollsItems(): ItemList<Mithril.Children> {
const items = new ItemList<Mithril.Children>();

items.add(
'enableGlobalPolls',
this.buildSettingComponent({
setting: 'fof-polls.enableGlobalPolls',
type: 'boolean',
label: app.translator.trans('fof-polls.admin.settings.enable_global_polls'),
help: app.translator.trans('fof-polls.admin.settings.enable_global_polls_help'),
})
);

return items;
}

imageItems(): ItemList<Mithril.Children> {
const items = new ItemList<Mithril.Children>();

items.add(
'allowOptionImage',
this.buildSettingComponent({
setting: 'fof-polls.allowOptionImage',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.allow_option_image'),
})
);

items.add(
'allowImageUploads',
this.buildSettingComponent({
setting: 'fof-polls.allowImageUploads',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.allow_image_uploads'),
help: app.translator.trans('fof-polls.admin.settings.allow_image_uploads_help'),
})
);

items.add(
'imageHeight',
this.buildSettingComponent({
setting: 'fof-polls.image_height',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.image_height'),
})
);

items.add(
'imageWidth',
this.buildSettingComponent({
setting: 'fof-polls.image_width',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.image_width'),
})
);

return items;
}
}
5 changes: 5 additions & 0 deletions js/src/admin/components/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import PollsSettingsPage from './PollsSettingsPage';

export const components = {
PollsSettingsPage,
};
43 changes: 4 additions & 39 deletions js/src/admin/index.ts
Original file line number Diff line number Diff line change
@@ -1,47 +1,12 @@
import app from 'flarum/admin/app';
import PollsSettingsPage from './components/PollsSettingsPage';

export * from './components';

app.initializers.add('fof/polls', () => {
app.extensionData
.for('fof-polls')
.registerSetting({
setting: 'fof-polls.allowOptionImage',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.allow_option_image'),
})
.registerSetting({
setting: 'fof-polls.optionsColorBlend',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.options_color_blend'),
help: app.translator.trans('fof-polls.admin.settings.options_color_blend_help'),
})
.registerSetting({
setting: 'fof-polls.maxOptions',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.max_options'),
min: 2,
})
.registerSetting({
setting: 'fof-polls.allowImageUploads',
type: 'switch',
label: app.translator.trans('fof-polls.admin.settings.allow_image_uploads'),
help: app.translator.trans('fof-polls.admin.settings.allow_image_uploads_help'),
})
.registerSetting({
setting: 'fof-polls.enableGlobalPolls',
type: 'boolean',
label: app.translator.trans('fof-polls.admin.settings.enable_global_polls'),
help: app.translator.trans('fof-polls.admin.settings.enable_global_polls_help'),
})
.registerSetting({
setting: 'fof-polls.image_height',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.image_height'),
})
.registerSetting({
setting: 'fof-polls.image_width',
type: 'number',
label: app.translator.trans('fof-polls.admin.settings.image_width'),
})
.registerPage(PollsSettingsPage)
.registerPermission(
{
icon: 'fas fa-poll',
Expand Down
50 changes: 50 additions & 0 deletions resources/less/admin.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
.PollsSettingsPage {
padding-top: 20px;

.Button {
margin-right: 10px;
margin-bottom: 10px;
}

.PollsSettingsTabPage {
background: @control-bg; // Use control background for coherence
padding: 20px;
border-radius: @border-radius; // Consistent border radius
box-shadow: 0 2px 4px @shadow-color; // Subtle shadow for depth

h3 {
color: @primary-color; // Primary color for headings
margin-bottom: 10px;
}

.Section {
background: @body-bg; // Contrast with the section background
border-radius: @border-radius;
box-shadow: 0 1px 3px @shadow-color;
padding: 15px;
margin-bottom: 20px;
}

.Form {
.control {
background: @body-bg;
border: 1px solid @muted-color; // Defines the input fields
color: @text-color;
padding: 6px 12px;
border-radius: @border-radius;
}
input {
max-width: 300px;
}
}
}

&--settings {
//max-width: 720px;
margin: 0 auto; // Center align for better presentation

@media @desktop-up {
margin: 0;
}
}
}
9 changes: 9 additions & 0 deletions resources/locale/en.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
fof-polls:
admin:
settings:
general:
heading: General Settings
help: These settings control the basic features of the Polls extension.
global_polls:
heading: Global Polls
help: These settings control the global polls feature.
image:
heading: Image Settings
help: These settings control the image settings for polls.
allow_option_image: Allow an image URL to be provided for each poll option
allow_image_uploads: Allow image uploads for polls and their options
allow_image_uploads_help: If enabled, users will be able to upload images alongside also providing an image URL (if enabled for options, always enabled for the poll itself).
Expand Down
Loading