Merge pull request #262 from pawelmalak/feature

Version 2.2.0
This commit is contained in:
pawelmalak 2021-12-17 13:41:29 +01:00 committed by GitHub
commit 6d8ce5361a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 77 additions and 27 deletions

View file

@ -2,4 +2,5 @@ node_modules
.github .github
public public
k8s k8s
skaffold.yaml skaffold.yaml
data

2
.env
View file

@ -1,5 +1,5 @@
PORT=5005 PORT=5005
NODE_ENV=development NODE_ENV=development
VERSION=2.1.1 VERSION=2.2.0
PASSWORD=flame_password PASSWORD=flame_password
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b

View file

@ -1,3 +1,7 @@
### v2.2.0 (2021-12-17)
- Added option to set custom description for apps ([#201](https://github.com/pawelmalak/flame/issues/201))
- Fixed fatal error while deploying Flame to cluster ([#242](https://github.com/pawelmalak/flame/issues/242))
### v2.1.1 (2021-12-02) ### v2.1.1 (2021-12-02)
- Added support for Docker secrets ([#189](https://github.com/pawelmalak/flame/issues/189)) - Added support for Docker secrets ([#189](https://github.com/pawelmalak/flame/issues/189))
- Changed some messages and buttons to make it easier to open bookmarks editor ([#239](https://github.com/pawelmalak/flame/issues/239)) - Changed some messages and buttons to make it easier to open bookmarks editor ([#239](https://github.com/pawelmalak/flame/issues/239))

View file

@ -35,7 +35,7 @@ docker pull pawelmalak/flame:2.0.0
```sh ```sh
# run container # run container
docker run -p 5005:5005 -v /path/to/data:/app/data -e PASSWORD=flame_password flame docker run -p 5005:5005 -v /path/to/data:/app/data -e PASSWORD=flame_password pawelmalak/flame
``` ```
#### Building images #### Building images

View file

@ -1 +1 @@
REACT_APP_VERSION=2.1.1 REACT_APP_VERSION=2.2.0

View file

@ -8,16 +8,15 @@ import { State } from '../../../store/reducers';
interface Props { interface Props {
app: App; app: App;
pinHandler?: Function;
} }
export const AppCard = (props: Props): JSX.Element => { export const AppCard = ({ app }: Props): JSX.Element => {
const { config } = useSelector((state: State) => state.config); const { config } = useSelector((state: State) => state.config);
const [displayUrl, redirectUrl] = urlParser(props.app.url); const [displayUrl, redirectUrl] = urlParser(app.url);
let iconEl: JSX.Element; let iconEl: JSX.Element;
const { icon } = props.app; const { icon } = app;
if (isImage(icon)) { if (isImage(icon)) {
const source = isUrl(icon) ? icon : `/uploads/${icon}`; const source = isUrl(icon) ? icon : `/uploads/${icon}`;
@ -25,7 +24,7 @@ export const AppCard = (props: Props): JSX.Element => {
iconEl = ( iconEl = (
<img <img
src={source} src={source}
alt={`${props.app.name} icon`} alt={`${app.name} icon`}
className={classes.CustomIcon} className={classes.CustomIcon}
/> />
); );
@ -54,8 +53,8 @@ export const AppCard = (props: Props): JSX.Element => {
> >
<div className={classes.AppCardIcon}>{iconEl}</div> <div className={classes.AppCardIcon}>{iconEl}</div>
<div className={classes.AppCardDetails}> <div className={classes.AppCardDetails}>
<h5>{props.app.name}</h5> <h5>{app.name}</h5>
<span>{displayUrl}</span> <span>{!app.description.length ? displayUrl : app.description}</span>
</div> </div>
</a> </a>
); );

View file

@ -96,7 +96,7 @@ export const AppForm = ({ modalHandler }: Props): JSX.Element => {
<ModalForm modalHandler={modalHandler} formHandler={formSubmitHandler}> <ModalForm modalHandler={modalHandler} formHandler={formSubmitHandler}>
{/* NAME */} {/* NAME */}
<InputGroup> <InputGroup>
<label htmlFor="name">App Name</label> <label htmlFor="name">App name</label>
<input <input
type="text" type="text"
name="name" name="name"
@ -122,11 +122,27 @@ export const AppForm = ({ modalHandler }: Props): JSX.Element => {
/> />
</InputGroup> </InputGroup>
{/* DESCRIPTION */}
<InputGroup>
<label htmlFor="description">App description</label>
<input
type="text"
name="description"
id="description"
placeholder="My self-hosted app"
value={formData.description}
onChange={(e) => inputChangeHandler(e)}
/>
<span>
Optional - If description is not set, app URL will be displayed
</span>
</InputGroup>
{/* ICON */} {/* ICON */}
{!useCustomIcon ? ( {!useCustomIcon ? (
// use mdi icon // use mdi icon
<InputGroup> <InputGroup>
<label htmlFor="icon">App Icon</label> <label htmlFor="icon">App icon</label>
<input <input
type="text" type="text"
name="icon" name="icon"

View file

@ -5,6 +5,7 @@ export interface NewApp {
url: string; url: string;
icon: string; icon: string;
isPublic: boolean; isPublic: boolean;
description: string;
} }
export interface App extends Model, NewApp { export interface App extends Model, NewApp {

View file

@ -5,6 +5,7 @@ export const newAppTemplate: NewApp = {
url: '', url: '',
icon: '', icon: '',
isPublic: true, isPublic: true,
description: '',
}; };
export const appTemplate: App = { export const appTemplate: App = {

View file

@ -0,0 +1,19 @@
const { DataTypes } = require('sequelize');
const { STRING } = DataTypes;
const up = async (query) => {
await query.addColumn('apps', 'description', {
type: STRING,
allowNull: false,
defaultValue: '',
});
};
const down = async (query) => {
await query.removeColumn('apps', 'description');
};
module.exports = {
up,
down,
};

View file

@ -31,6 +31,11 @@ const App = sequelize.define(
allowNull: true, allowNull: true,
defaultValue: 1, defaultValue: 1,
}, },
description: {
type: DataTypes.STRING,
allowNull: false,
defaultValue: '',
},
}, },
{ {
tableName: 'apps', tableName: 'apps',

16
package-lock.json generated
View file

@ -13,7 +13,7 @@
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"axios": "^0.24.0", "axios": "^0.24.0",
"concurrently": "^6.3.0", "concurrently": "^6.3.0",
"docker-secret": "^1.2.3", "docker-secret": "^1.2.4",
"dotenv": "^10.0.0", "dotenv": "^10.0.0",
"express": "^4.17.1", "express": "^4.17.1",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",
@ -1191,9 +1191,9 @@
"integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="
}, },
"node_modules/docker-secret": { "node_modules/docker-secret": {
"version": "1.2.3", "version": "1.2.4",
"resolved": "https://registry.npmjs.org/docker-secret/-/docker-secret-1.2.3.tgz", "resolved": "https://registry.npmjs.org/docker-secret/-/docker-secret-1.2.4.tgz",
"integrity": "sha512-JFUGiZEiNO0Hi9YzZAdCc5MwUpgQOjz0OeZkkcEv+lH6ZBkXNK97w2gcBQCsg5WRsT+Cj9eKFhuYyDxT8j56+A==", "integrity": "sha512-aH3truzfxV8TikMa0wJES8h0v2FAwhuQZYk116ZVOHFZ1vnDTGutgCOvXmBPyLBG1Lo7yv93FdHVRTvhFFaC/g==",
"engines": { "engines": {
"node": ">= 6" "node": ">= 6"
} }
@ -5335,9 +5335,9 @@
} }
}, },
"docker-secret": { "docker-secret": {
"version": "1.2.3", "version": "1.2.4",
"resolved": "https://registry.npmjs.org/docker-secret/-/docker-secret-1.2.3.tgz", "resolved": "https://registry.npmjs.org/docker-secret/-/docker-secret-1.2.4.tgz",
"integrity": "sha512-JFUGiZEiNO0Hi9YzZAdCc5MwUpgQOjz0OeZkkcEv+lH6ZBkXNK97w2gcBQCsg5WRsT+Cj9eKFhuYyDxT8j56+A==" "integrity": "sha512-aH3truzfxV8TikMa0wJES8h0v2FAwhuQZYk116ZVOHFZ1vnDTGutgCOvXmBPyLBG1Lo7yv93FdHVRTvhFFaC/g=="
}, },
"dot-prop": { "dot-prop": {
"version": "5.3.0", "version": "5.3.0",
@ -7754,4 +7754,4 @@
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
} }
} }
} }

View file

@ -21,7 +21,7 @@
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"axios": "^0.24.0", "axios": "^0.24.0",
"concurrently": "^6.3.0", "concurrently": "^6.3.0",
"docker-secret": "^1.2.3", "docker-secret": "^1.2.4",
"dotenv": "^10.0.0", "dotenv": "^10.0.0",
"express": "^4.17.1", "express": "^4.17.1",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",

View file

@ -3,14 +3,18 @@ const Logger = require('../Logger');
const logger = new Logger(); const logger = new Logger();
const initDockerSecrets = () => { const initDockerSecrets = () => {
const secrets = getSecrets(); try {
const secrets = getSecrets();
for (const property in secrets) { for (const property in secrets) {
const upperProperty = property.toUpperCase(); const upperProperty = property.toUpperCase();
process.env[upperProperty] = secrets[property]; process.env[upperProperty] = secrets[property];
logger.log(`${upperProperty} was overwritten with docker secret value`); logger.log(`${upperProperty} was overwritten with docker secret value`);
}
} catch (e) {
logger.log(`Failed to initialize docker secrets. Error: ${e}`, 'ERROR');
} }
}; };