mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-04-14 07:31:13 +02:00
Add bulma-checkradio for prettier checkboxes
This commit is contained in:
parent
f1cdce8350
commit
09a545eb5d
5 changed files with 83 additions and 80 deletions
|
@ -45,6 +45,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"bulma": "^0.6.2",
|
"bulma": "^0.6.2",
|
||||||
|
"bulma-checkradio": "^1.0.1",
|
||||||
"dexie": "^2.0.1",
|
"dexie": "^2.0.1",
|
||||||
"font-awesome": "^4.7.0",
|
"font-awesome": "^4.7.0",
|
||||||
"inferno": "^4.0.4",
|
"inferno": "^4.0.4",
|
||||||
|
|
|
@ -30,51 +30,53 @@ export class MyAccount extends Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div className="columns">
|
<div className='columns'>
|
||||||
|
|
||||||
<div className="column">
|
<div className='column'>
|
||||||
<h2 className="title">Account Details</h2>
|
<h2 className='title'>Account Details</h2>
|
||||||
<div className="control">
|
<div className='control'>
|
||||||
<strong>Email:</strong> <span>{this.state.email}</span>
|
<strong>Email:</strong> <span>{this.state.email}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="control">
|
<div className='control'>
|
||||||
<strong>Username:</strong> <span>{this.state.username}</span>
|
<strong>Username:</strong> <span>{this.state.username}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="field">
|
<div className='field'>
|
||||||
<label className="label">
|
<label className='label'>
|
||||||
<span>Public Name:</span>
|
<span>Public Name:</span>
|
||||||
</label>
|
</label>
|
||||||
<div className="control">
|
<div className='control'>
|
||||||
<input className="input" type="text" value={this.state.publicName}
|
<input className='input' type='text' value={this.state.publicName}
|
||||||
onInput={(event) => {this.setState({publicName: event.target.value})}} />
|
onInput={(event) => {this.setState({publicName: event.target.value})}} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="field">
|
<div className='field'>
|
||||||
<div className="control">
|
<div className='control'>
|
||||||
<label className="label checkbox">
|
<input className='is-checkradio is-rtl' type='checkbox' id='allowEmails'
|
||||||
<input type="checkbox" checked={this.state.allowEmails ? 'checked' : null}
|
checked={this.state.allowEmails ? 'checked' : false}
|
||||||
onChange={(event) => { this.setState({ allowEmails: event.target.checked }) }} />
|
onChange={(event) => { this.setState({ allowEmails: !this.state.allowEmails }) }} />
|
||||||
<span>Allow Emails</span>
|
<label className='label is-unselectable' htmlFor='allowEmails'>
|
||||||
|
Allow Emails
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="field">
|
<div className='field'>
|
||||||
<label className="label checkbox">
|
<input className='is-checkradio is-rtl' type='checkbox' id='useIPAPronunciation'
|
||||||
<input type="checkbox" checked={this.state.useIPAPronunciation ? 'checked' : null}
|
checked={this.state.useIPAPronunciation ? 'checked' : false}
|
||||||
onChange={(event) => { this.setState({ useIPAPronunciation: event.target.checked }) }} />
|
onChange={(event) => { this.setState({ useIPAPronunciation: !this.state.useIPAPronunciation }) }} />
|
||||||
<span>Use IPA in Pronunciation Fields</span>
|
<label className='label is-unselectable' htmlFor='useIPAPronunciation'>
|
||||||
|
Use IPA in Pronunciation Fields
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="column">
|
<div className='column'>
|
||||||
<h2 className="title">Account Actions</h2>
|
<h2 className='title'>Account Actions</h2>
|
||||||
<div className="field">
|
<div className='field'>
|
||||||
<label className="label">
|
<label className='label is-unselectable'>
|
||||||
<span>Change Dictionary</span>
|
<span>Change Dictionary</span>
|
||||||
</label>
|
</label>
|
||||||
<div className="control">
|
<div className='control'>
|
||||||
<div className="select">
|
<div className='select'>
|
||||||
<select>
|
<select>
|
||||||
{this.props.userDictionaries.map(item => {
|
{this.props.userDictionaries.map(item => {
|
||||||
return <option value={item.id}>{item.name}</option>;
|
return <option value={item.id}>{item.name}</option>;
|
||||||
|
|
|
@ -30,17 +30,16 @@ export const EditSettingsForm = (props) => {
|
||||||
|
|
||||||
<div className='field'>
|
<div className='field'>
|
||||||
<div className='control'>
|
<div className='control'>
|
||||||
<label className='checkbox'>
|
<input className='is-checkradio is-rtl' type='checkbox' id='allowDuplicates'
|
||||||
|
defaultChecked={ allowDuplicates }
|
||||||
|
onChange={ (event) => {
|
||||||
|
editDictionaryModal.setState({
|
||||||
|
allowDuplicates: event.target.checked,
|
||||||
|
hasChanged: event.target.checked != editDictionaryModal.props.allowDuplicates,
|
||||||
|
});
|
||||||
|
}} />
|
||||||
|
<label class='label is-unselectable' htmlFor='allowDuplicates'>
|
||||||
Allow Duplicate Words
|
Allow Duplicate Words
|
||||||
{ ' ' }
|
|
||||||
<input type='checkbox'
|
|
||||||
defaultChecked={ allowDuplicates }
|
|
||||||
onChange={ (event) => {
|
|
||||||
editDictionaryModal.setState({
|
|
||||||
allowDuplicates: event.target.checked,
|
|
||||||
hasChanged: event.target.checked != editDictionaryModal.props.allowDuplicates,
|
|
||||||
});
|
|
||||||
}} />
|
|
||||||
</label>
|
</label>
|
||||||
<div className='help'>
|
<div className='help'>
|
||||||
Checking this box will allow any number of the exact same spelling of a word to be added
|
Checking this box will allow any number of the exact same spelling of a word to be added
|
||||||
|
@ -50,20 +49,19 @@ export const EditSettingsForm = (props) => {
|
||||||
|
|
||||||
<div className='field'>
|
<div className='field'>
|
||||||
<div className='control'>
|
<div className='control'>
|
||||||
<label className='checkbox'
|
<input className='is-checkradio is-rtl' type='checkbox' id='caseSensitive'
|
||||||
Disabled={ allowDuplicates ? 'disabled' : null }
|
defaultChecked={ caseSensitive }
|
||||||
title={ allowDuplicates ? 'Disabled because allowing duplicates makes this unnecessary' : null}>
|
disabled={ allowDuplicates }
|
||||||
|
onChange={ (event) => {
|
||||||
|
editDictionaryModal.setState({
|
||||||
|
caseSensitive: event.target.checked,
|
||||||
|
hasChanged: event.target.checked != editDictionaryModal.props.caseSensitive,
|
||||||
|
});
|
||||||
|
}} />
|
||||||
|
<label className='label is-unselectable' htmlFor='caseSensitive'
|
||||||
|
Disabled={allowDuplicates ? 'disabled' : null}
|
||||||
|
title={allowDuplicates ? 'Disabled because allowing duplicates makes this unnecessary' : null}>
|
||||||
Words are Case-Sensitive
|
Words are Case-Sensitive
|
||||||
{ ' ' }
|
|
||||||
<input type='checkbox'
|
|
||||||
defaultChecked={ caseSensitive }
|
|
||||||
disabled={ allowDuplicates }
|
|
||||||
onChange={ (event) => {
|
|
||||||
editDictionaryModal.setState({
|
|
||||||
caseSensitive: event.target.checked,
|
|
||||||
hasChanged: event.target.checked != editDictionaryModal.props.caseSensitive,
|
|
||||||
});
|
|
||||||
}} />
|
|
||||||
</label>
|
</label>
|
||||||
<div className='help'>
|
<div className='help'>
|
||||||
Checking this box will allow any words spelled the same but with different capitalization to be added.
|
Checking this box will allow any words spelled the same but with different capitalization to be added.
|
||||||
|
@ -73,17 +71,16 @@ export const EditSettingsForm = (props) => {
|
||||||
|
|
||||||
<div className='field'>
|
<div className='field'>
|
||||||
<div className='control'>
|
<div className='control'>
|
||||||
<label className='checkbox'>
|
<input className='is-checkradio is-rtl' type='checkbox' id='sortByDefinition'
|
||||||
|
defaultChecked={ sortByDefinition }
|
||||||
|
onChange={ (event) => {
|
||||||
|
editDictionaryModal.setState({
|
||||||
|
sortByDefinition: event.target.checked,
|
||||||
|
hasChanged: event.target.checked != editDictionaryModal.props.sortByDefinition,
|
||||||
|
});
|
||||||
|
}} />
|
||||||
|
<label className='label is-unselectable' htmlFor='sortByDefinition'>
|
||||||
Sort by Definition
|
Sort by Definition
|
||||||
{ ' ' }
|
|
||||||
<input type='checkbox'
|
|
||||||
defaultChecked={ sortByDefinition }
|
|
||||||
onChange={ (event) => {
|
|
||||||
editDictionaryModal.setState({
|
|
||||||
sortByDefinition: event.target.checked,
|
|
||||||
hasChanged: event.target.checked != editDictionaryModal.props.sortByDefinition,
|
|
||||||
});
|
|
||||||
}} />
|
|
||||||
</label>
|
</label>
|
||||||
<div className='help'>
|
<div className='help'>
|
||||||
Checking this box will sort the words in alphabetical order based on the Definition instead of the Word.
|
Checking this box will sort the words in alphabetical order based on the Definition instead of the Word.
|
||||||
|
@ -93,20 +90,19 @@ export const EditSettingsForm = (props) => {
|
||||||
|
|
||||||
<div className='field'>
|
<div className='field'>
|
||||||
<div className='control'>
|
<div className='control'>
|
||||||
<label className='checkbox'>
|
<input className='is-checkradio is-rtl' type='checkbox' id='isComplete'
|
||||||
|
defaultChecked={ isComplete }
|
||||||
|
onChange={ (event) => {
|
||||||
|
editDictionaryModal.setState({
|
||||||
|
isComplete: event.target.checked,
|
||||||
|
hasChanged: event.target.checked != editDictionaryModal.props.isComplete,
|
||||||
|
});
|
||||||
|
}} />
|
||||||
|
<label className='label is-unselectable' htmlFor='isComplete'>
|
||||||
Mark Complete
|
Mark Complete
|
||||||
{ ' ' }
|
|
||||||
<input type='checkbox'
|
|
||||||
defaultChecked={ isComplete }
|
|
||||||
onChange={ (event) => {
|
|
||||||
editDictionaryModal.setState({
|
|
||||||
isComplete: event.target.checked,
|
|
||||||
hasChanged: event.target.checked != editDictionaryModal.props.isComplete,
|
|
||||||
});
|
|
||||||
}} />
|
|
||||||
</label>
|
</label>
|
||||||
<div className='help'>
|
<div className='help'>
|
||||||
Checking this box will mark your { specification } as "complete" and prevent any changes from being made.
|
Checking this box will mark your { specification } as 'complete' and prevent any changes from being made.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -115,17 +111,16 @@ export const EditSettingsForm = (props) => {
|
||||||
&& (
|
&& (
|
||||||
<div className='field'>
|
<div className='field'>
|
||||||
<div className='control'>
|
<div className='control'>
|
||||||
<label className='checkbox'>
|
<input className='is-checkradio is-rtl' type='checkbox' id='isPublic'
|
||||||
|
defaultChecked={ isPublic }
|
||||||
|
onChange={ (event) => {
|
||||||
|
editDictionaryModal.setState({
|
||||||
|
isPublic: event.target.checked,
|
||||||
|
hasChanged: event.target.checked != editDictionaryModal.props.isPublic,
|
||||||
|
});
|
||||||
|
}} />
|
||||||
|
<label className='label is-unselectable' htmlFor='isPublic'>
|
||||||
Make Public
|
Make Public
|
||||||
{ ' ' }
|
|
||||||
<input type='checkbox'
|
|
||||||
defaultChecked={ isPublic }
|
|
||||||
onChange={ (event) => {
|
|
||||||
editDictionaryModal.setState({
|
|
||||||
isPublic: event.target.checked,
|
|
||||||
hasChanged: event.target.checked != editDictionaryModal.props.isPublic,
|
|
||||||
});
|
|
||||||
}} />
|
|
||||||
</label>
|
</label>
|
||||||
<div className='help'>
|
<div className='help'>
|
||||||
Checking this box will make your { specification } as public.
|
Checking this box will make your { specification } as public.
|
||||||
|
|
|
@ -5,6 +5,7 @@ $fa-font-path: "~font-awesome/fonts/";
|
||||||
|
|
||||||
@import 'bulma-overrides';
|
@import 'bulma-overrides';
|
||||||
@import '../../node_modules/bulma/bulma';
|
@import '../../node_modules/bulma/bulma';
|
||||||
|
@import '../../node_modules/bulma-checkradio/dist/bulma-checkradio';
|
||||||
|
|
||||||
@import '../../node_modules/sweetalert2/dist/sweetalert2';
|
@import '../../node_modules/sweetalert2/dist/sweetalert2';
|
||||||
|
|
||||||
|
|
|
@ -1002,6 +1002,10 @@ builtin-status-codes@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
||||||
|
|
||||||
|
bulma-checkradio@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/bulma-checkradio/-/bulma-checkradio-1.0.1.tgz#21674a9aee65c48e4028594bd0f22e5b52ea5346"
|
||||||
|
|
||||||
bulma@^0.6.2:
|
bulma@^0.6.2:
|
||||||
version "0.6.2"
|
version "0.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.6.2.tgz#f4b1d11d5acc51a79644eb0a2b0b10649d3d71f5"
|
resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.6.2.tgz#f4b1d11d5acc51a79644eb0a2b0b10649d3d71f5"
|
||||||
|
|
Loading…
Add table
Reference in a new issue