-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat(frontend): complete a subscription #1942
Conversation
3239ba8
to
ea5e674
Compare
1c91d2b
to
7ad7e54
Compare
Please keep in mind that the cockpit layout will change over time (see drafts in Figma) It might be better to keep it separate from this one. |
"subtitle": "Upgrade auf Premium, um weitere Funktionen freizuschalten", | ||
"title": "Upgrade auf Premium" | ||
}, | ||
"sepaIban": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like how you perfectly adapt to the case conventions of this document... xD
fed9323
to
3e3432a
Compare
@@ -19,7 +19,7 @@ | |||
|
|||
@media #{map.get($display-breakpoints, 'md-and-up')} { | |||
.cockpit { | |||
grid-template-columns: 335px 335px; | |||
grid-template-columns: 380px 380px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just found it extremely narrow for tablet and up.
@@ -0,0 +1,101 @@ | |||
// source: https://github.com/derhuerst/sepa-payment-qr-code | |||
import IBAN from 'iban' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to contribute this back, as it's one of their issues: derhuerst/sepa-payment-qr-code#6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems good to show the direction.
I think that the new page payment
should be in an popup, but this should be defined by @Hardy-Hart-am-Start for a next sprint
frontend/src/locales/en.json
Outdated
"title": "Account details", | ||
"amount": "Amount in Euro", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"title": "Account details", | |
"amount": "Amount in Euro", | |
"title": "Account details", | |
"accountHolder": "Account owner", | |
"amount": "Amount in Euro", |
Motivation ---------- Who: Users What: Click on a button "Complete a subscription" to send money on a monthly basis to the company running "DreamMall". Why: Because I want to support the development of this wonderful piece of software as well as the hosting and administration of it. ----------- 1. Visit http://localhost:3000/cockpit 2. Click on "Upgrade to premium" 3. See instructions how to make a bank transfer You can change the amount and it will update the QR code. There is another refactoring which affects the cockpit as a whole: I removed the `narrow` property which is unnecessary. + Increased max width and height for the cockpit cards close #1030
by @Bettelstab and @dornhoeschen
3e3432a
to
5f9d7d3
Compare
Motivation
Who: Users
What: Click on a button "Complete a subscription" to send money on a monthly basis to the company running "DreamMall".
Why: Because I want to support the development of this wonderful piece of software as well as the hosting and administration of it.
You can change the amount and it will update the QR code.
There is another refactoring which affects the cockpit as a whole:
I removed the
narrow
property which is unnecessary.close #1030