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

Added option to change URL on the button after download. #161

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion app/ui/downloadCompleted.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const html = require('choo/html');
const assets = require('../../common/assets');

module.exports = function(state) {
const WEB_UI = state.WEB_UI;
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
return html`
<div
Expand All @@ -23,7 +24,7 @@ module.exports = function(state) {
${state.translate('trySendDescription')}
</p>
<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
>
</p>
Expand Down
1 change: 1 addition & 0 deletions docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,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 |
| CUSTOM_FOOTER_TEXT | | Allows you to define a custom 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.

Expand Down
1 change: 1 addition & 0 deletions server/clientConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = {
FOOTER_SOURCE_URL: config.footer_source_url,
CUSTOM_FOOTER_TEXT: config.custom_footer_text,
CUSTOM_FOOTER_URL: config.custom_footer_url,
TRY_SEND_URL: config.try_send_url,
COLORS: {
PRIMARY: config.ui_color_primary,
ACCENT: config.ui_color_accent
Expand Down
5 changes: 5 additions & 0 deletions server/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,11 @@ const conf = convict({
default: '',
env: 'CUSTOM_FOOTER_URL'
},
try_send_url: {
format: String,
default: '/',
env: 'TRY_SEND_URL'
},
ui_color_primary: {
format: String,
default: '#0a84ff',
Expand Down