Merge branch 'try_send_url' into 'master'
customizable url to try send after a download See merge request timvisee/send!28
This commit is contained in:
commit
b2f87fe3ca
4 changed files with 9 additions and 1 deletions
|
@ -2,6 +2,7 @@ const html = require('choo/html');
|
||||||
const assets = require('../../common/assets');
|
const assets = require('../../common/assets');
|
||||||
|
|
||||||
module.exports = function(state) {
|
module.exports = function(state) {
|
||||||
|
const WEB_UI = state.WEB_UI;
|
||||||
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
|
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
|
||||||
return html`
|
return html`
|
||||||
<div
|
<div
|
||||||
|
@ -23,7 +24,7 @@ module.exports = function(state) {
|
||||||
${state.translate('trySendDescription')}
|
${state.translate('trySendDescription')}
|
||||||
</p>
|
</p>
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<a href="/" class="btn rounded-lg flex items-center mt-4" role="button"
|
<a href="${WEB_UI.TRY_SEND_URL}" class="btn rounded-lg flex items-center mt-4" role="button"
|
||||||
>${state.translate(btnText)}</a
|
>${state.translate(btnText)}</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -100,6 +100,7 @@ See the table below for the variables and their default values.
|
||||||
| UI_CUSTOM_CSS | | Allows you to define a custom CSS file for custom styling |
|
| UI_CUSTOM_CSS | | Allows you to define a custom CSS file for custom styling |
|
||||||
| CUSTOM_FOOTER_TEXT | | Allows you to define a custom footer |
|
| CUSTOM_FOOTER_TEXT | | Allows you to define a custom footer |
|
||||||
| CUSTOM_FOOTER_URL | | Allows you to define a custom URL in your footer |
|
| CUSTOM_FOOTER_URL | | Allows you to define a custom URL in your footer |
|
||||||
|
| TRY_SEND_URL | | Allows you to define a custom URL to link to after a successful download |
|
||||||
|
|
||||||
Side note: If you define a custom URL and a custom footer, only the footer text will display, but will be hyperlinked to the URL.
|
Side note: If you define a custom URL and a custom footer, only the footer text will display, but will be hyperlinked to the URL.
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ module.exports = {
|
||||||
FOOTER_SOURCE_URL: config.footer_source_url,
|
FOOTER_SOURCE_URL: config.footer_source_url,
|
||||||
CUSTOM_FOOTER_TEXT: config.custom_footer_text,
|
CUSTOM_FOOTER_TEXT: config.custom_footer_text,
|
||||||
CUSTOM_FOOTER_URL: config.custom_footer_url,
|
CUSTOM_FOOTER_URL: config.custom_footer_url,
|
||||||
|
TRY_SEND_URL: config.try_send_url,
|
||||||
COLORS: {
|
COLORS: {
|
||||||
PRIMARY: config.ui_color_primary,
|
PRIMARY: config.ui_color_primary,
|
||||||
ACCENT: config.ui_color_accent
|
ACCENT: config.ui_color_accent
|
||||||
|
|
|
@ -263,6 +263,11 @@ const conf = convict({
|
||||||
default: '',
|
default: '',
|
||||||
env: 'CUSTOM_FOOTER_URL'
|
env: 'CUSTOM_FOOTER_URL'
|
||||||
},
|
},
|
||||||
|
try_send_url: {
|
||||||
|
format: String,
|
||||||
|
default: '/',
|
||||||
|
env: 'TRY_SEND_URL'
|
||||||
|
},
|
||||||
ui_color_primary: {
|
ui_color_primary: {
|
||||||
format: String,
|
format: String,
|
||||||
default: '#0a84ff',
|
default: '#0a84ff',
|
||||||
|
|
Loading…
Reference in a new issue