chore: run prettier, refactor translations

This commit is contained in:
David Ralph
2023-03-14 23:53:05 +00:00
parent 0990774b41
commit ad39f4a732
11 changed files with 114 additions and 151 deletions

View File

@@ -1,25 +1,25 @@
{
"name": "Example Photos",
"description": "This is an example.",
"type": "photos",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"photos": [
{
"photographer": "Example photographer",
"location": "Example location",
"url": {
"default": "https://github.com/mue/mue/raw/main/assets/screenshot.webp"
}
},
{
"photographer": "Example photographer 2",
"location": "Example location 2",
"url": {
"default": "https://github.com/mue/mue/raw/main/assets/screenshot2.webp"
}
}
]
}
"name": "Example Photos",
"description": "This is an example.",
"type": "photos",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"photos": [
{
"photographer": "Example photographer",
"location": "Example location",
"url": {
"default": "https://github.com/mue/mue/raw/main/assets/screenshot.webp"
}
},
{
"photographer": "Example photographer 2",
"location": "Example location 2",
"url": {
"default": "https://github.com/mue/mue/raw/main/assets/screenshot2.webp"
}
}
]
}

View File

@@ -1,20 +1,20 @@
{
"name": "Example Quotes",
"description": "This is an example.",
"type": "quotes",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"language": "en",
"quotes": [
{
"quote": "This is an example quote.",
"author": "Example 1"
},
{
"quote": "This is another example quote.",
"author": "Example 2"
}
]
}
"name": "Example Quotes",
"description": "This is an example.",
"type": "quotes",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"language": "en",
"quotes": [
{
"quote": "This is an example quote.",
"author": "Example 1"
},
{
"quote": "This is another example quote.",
"author": "Example 2"
}
]
}

View File

@@ -1,13 +1,13 @@
{
"name": "Example Settings",
"description": "This is an example.",
"type": "settings",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"settings": {
"searchBar": false,
"weather": true
}
}
"name": "Example Settings",
"description": "This is an example.",
"type": "settings",
"version": "1.0.0",
"author": "Mue",
"icon_url": "https://raw.githubusercontent.com/mue/branding/main/logo/logo_square.png",
"screenshot_url": "https://github.com/mue/mue/raw/main/assets/screenshot.webp",
"settings": {
"searchBar": false,
"weather": true
}
}

View File

@@ -226,7 +226,14 @@ export default class Create extends PureComponent {
) || 'marketplace'}
</span>
</div>
<button onClick={() => saveFile(this.state.addonMetadata.type, `mue-marketplace-${this.state.addonMetadata.type}.json`)}>
<button
onClick={() =>
saveFile(
this.state.addonMetadata.type,
`mue-marketplace-${this.state.addonMetadata.type}.json`,
)
}
>
{variables.getMessage('modals.main.addons.create.metadata.example')}
<MdDownload />
</button>

View File

@@ -51,14 +51,11 @@ function ExperimentalSettings() {
varient="outlined"
InputLabelProps={{ shrink: true }}
/>
<button className="uploadbg" onClick={() => EventBus.dispatch(eventType, eventName)}>
<button className="uploadbg" onClick={() => EventBus.dispatch(eventType, eventName)}>
Send
</button>
</SettingsItem>
<SettingsItem
title='Data'
final={true}
>
<SettingsItem title="Data" final={true}>
<button
className="reset"
style={{ marginLeft: '0px' }}

View File

@@ -25,14 +25,14 @@ function AddModal({ urlError, iconError, addLink, closeModal, edit, editData, ed
maxRows={1}
placeholder={variables.getMessage('widgets.quicklinks.name')}
value={name}
onChange={(e) => setName(e.target.value.replace(/(\r\n|\n|\r)/gm, ""))}
onChange={(e) => setName(e.target.value.replace(/(\r\n|\n|\r)/gm, ''))}
/>
<span className="dropdown-error" />
<TextareaAutosize
maxRows={10}
placeholder={variables.getMessage('widgets.quicklinks.url')}
value={url}
onChange={(e) => setUrl(e.target.value.replace(/(\r\n|\n|\r)/gm, ""))}
onChange={(e) => setUrl(e.target.value.replace(/(\r\n|\n|\r)/gm, ''))}
/>
<span className="dropdown-error">{urlError}</span>
<TextareaAutosize
@@ -40,7 +40,7 @@ function AddModal({ urlError, iconError, addLink, closeModal, edit, editData, ed
maxLines={1}
placeholder={variables.getMessage('widgets.quicklinks.icon')}
value={icon}
onChange={(e) => setIcon(e.target.value.replace(/(\r\n|\n|\r)/gm, ""))}
onChange={(e) => setIcon(e.target.value.replace(/(\r\n|\n|\r)/gm, ''))}
/>
<span className="dropdown-error">{iconError}</span>
{edit ? (

View File

@@ -215,7 +215,7 @@ function PhotoInformation({ info, url, api }) {
{photoMap()}
</div>
{showingPhotoMap ? (
<div className="concept-copyright">
<div className="copyright">
<a
href="https://www.mapbox.com/about/maps/"
target="_blank"
@@ -256,7 +256,7 @@ function PhotoInformation({ info, url, api }) {
{photo} {credit}
</span>
{info.views && info.downloads !== null ? (
<div className="concept-stats">
<div className="stats">
<div title={variables.getMessage('widgets.background.views')}>
<Views />
<span>{info.views.toLocaleString()}</span>
@@ -282,37 +282,25 @@ function PhotoInformation({ info, url, api }) {
{variables.getMessage('widgets.background.information')}
</span>
{info.location && info.location !== 'N/A' ? (
<div
className="concept-row"
title={variables.getMessage('widgets.background.location')}
>
<div className="row" title={variables.getMessage('widgets.background.location')}>
<MdLocationOn />
<span id="infoLocation">{info.location}</span>
</div>
) : null}
{info.camera && info.camera !== 'N/A' ? (
<div
className="concept-row"
title={variables.getMessage('widgets.background.camera')}
>
<div className="row" title={variables.getMessage('widgets.background.camera')}>
<MdPhotoCamera />
<span id="infoCamera">{info.camera}</span>
</div>
) : null}
<div
className="concept-row"
title={variables.getMessage('widgets.background.resolution')}
>
<div className="row" title={variables.getMessage('widgets.background.resolution')}>
<Resolution />
<span id="infoResolution">
{width}x{height}
</span>
</div>
{info.category ? (
<div
className="concept-row"
title={variables.getMessage('widgets.background.category')}
>
<div className="row" title={variables.getMessage('widgets.background.category')}>
<Category />
<span id="infoCategory">
{info.category[0].toUpperCase() + info.category.slice(1)}
@@ -320,10 +308,7 @@ function PhotoInformation({ info, url, api }) {
</div>
) : null}
{api ? (
<div
className="concept-row"
title={variables.getMessage('widgets.background.source')}
>
<div className="row" title={variables.getMessage('widgets.background.source')}>
<Source />
<span id="infoSource">
{info.photoURL ? (
@@ -349,7 +334,7 @@ function PhotoInformation({ info, url, api }) {
</div>
) : null}
</div>
<div className="concept-buttons">
<div className="buttons">
{!info.offline ? (
<Tooltip
title={variables.getMessage('widgets.quote.share')}

View File

@@ -13,7 +13,7 @@
align-items: flex-start;
flex-flow: column;
.concept-buttons {
.buttons {
padding: 30px 0 0;
display: flex;
}
@@ -25,7 +25,7 @@
transition: 0.8s;
}
.concept-stats {
.stats {
display: flex;
padding-top: 5px;
gap: 20px;
@@ -46,7 +46,7 @@
}
}
.concept-copyright {
.copyright {
display: flex;
margin-top: 10px;
gap: 10px;
@@ -124,7 +124,7 @@
}
}
+.photoInformation {
+ .photoInformation {
animation: none !important;
}
}
@@ -247,7 +247,7 @@
align-items: flex-start;
flex-flow: column;
.concept-buttons {
.buttons {
padding: 30px 0 0;
display: flex;
}
@@ -259,7 +259,7 @@
transition: 0.8s;
}
.concept-stats {
.stats {
display: flex;
gap: 15px;
@include themed {
@@ -279,7 +279,7 @@
}
}
.concept-copyright {
.copyright {
display: flex;
margin-top: 10px;
gap: 10px;
@@ -326,11 +326,11 @@
}
}
.concept-location {
.location {
font-size: 1.9em;
}
.concept-credit {
.credit {
font-size: 1.4em;
@include themed {
color: t($subColor);
@@ -374,7 +374,7 @@
width: 100%;
transition: 1s;
.concept-row {
.row {
display: flex;
align-items: center;
gap: 20px;
@@ -388,15 +388,15 @@
}
}
.concept-copyright {
.copyright {
display: none;
}
.concept-stats {
.stats {
display: none;
}
.concept-buttons {
.buttons {
align-items: center;
gap: 20px;
padding: 20px 20px 0 0;
@@ -428,7 +428,8 @@
}
}
.photoInformation:hover, .photoInformation-legacy +.photoInformation {
.photoInformation:hover,
.photoInformation-legacy + .photoInformation {
.photoMap {
height: auto !important;