Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
idatt2106_2024_02_frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IDATT2106 - Gruppe 2
idatt2106_2024_02_frontend
Commits
348bdfca
Commit
348bdfca
authored
11 months ago
by
Eline Evje
Browse files
Options
Downloads
Patches
Plain Diff
feat: implemented account number for config
parent
d6a7c4de
No related branches found
Branches containing commit
No related tags found
3 merge requests
!66
Final merge
,
!36
Enhancement/implement account number to config
,
!4
Pipeline fix
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/ConfigAccountNumberView.vue
+97
-0
97 additions, 0 deletions
src/views/ConfigAccountNumberView.vue
with
97 additions
and
0 deletions
src/views/ConfigAccountNumberView.vue
0 → 100644
+
97
−
0
View file @
348bdfca
<
template
>
<div
class=
"flex flex-col items-center justify-center min-h-screen text-center"
>
<h1
class=
"mb-8 lg:mb-12 text-4xl font-bold"
>
Legg til kontonummer for sparekonto og brukskonto
</h1>
<div
class=
"flex flex-col items-center justify-center bg-white rounded-lg p-8 shadow-lg w-full md:w-[45%]"
>
<div
class=
"w-full mb-4"
>
<label
for=
"savingsAccount"
class=
"block text-lg font-bold mb-2"
>
Sparekonto
</label>
<input
id=
"savingsAccount"
v-model=
"savingsAccount"
@
input=
"restrictToNumbers($event as InputEvent, 'savings')"
@
focus=
"removeFormatting('savings')"
@
blur=
"applyFormatting('savings')"
class=
"w-full h-11 px-3 rounded-md text-xl focus:outline-none transition-colors border-2 border-gray-300"
type=
"text"
placeholder=
"Skriv inn ditt kontonummer..."
/>
</div>
<div
class=
"w-full mb-4"
>
<label
for=
"checkingAccount"
class=
"block text-lg font-bold mb-2"
>
Brukskonto
</label>
<input
id=
"checkingAccount"
v-model=
"checkingAccount"
@
input=
"restrictToNumbers($event as InputEvent, 'checking')"
@
focus=
"removeFormatting('checking')"
@
blur=
"applyFormatting('checking')"
class=
"w-full h-11 px-3 rounded-md text-xl focus:outline-none transition-colors border-2 border-gray-300"
type=
"text"
placeholder=
"Skriv inn ditt kontonummer..."
/>
</div>
</div>
<div
class=
"absolute bottom-36 right-2"
>
<ContinueButtonComponent
@
click=
"onButtonClick"
:disabled=
"!isFormValid"
class=
"px-10 py-3 text-2xl font-bold mb-4 mr-2"
></ContinueButtonComponent>
</div>
</div>
</
template
>
<
script
setup
lang=
"ts"
>
import
{
ref
,
computed
}
from
'
vue
'
import
ContinueButtonComponent
from
'
@/components/ContinueButtonComponent.vue
'
import
router
from
'
@/router
'
const
MAX_DIGITS
=
11
;
const
checkingAccount
=
ref
(
''
)
const
savingsAccount
=
ref
(
''
)
const
isFormValid
=
computed
(()
=>
{
return
checkingAccount
.
value
.
replace
(
/
\.
/g
,
''
).
length
===
MAX_DIGITS
&&
savingsAccount
.
value
.
replace
(
/
\.
/g
,
''
).
length
===
MAX_DIGITS
;
})
const
onButtonClick
=
()
=>
{
router
.
push
({
name
:
'
home
'
});
}
function
restrictToNumbers
(
event
:
InputEvent
,
type
:
string
)
{
const
inputValue
=
(
event
.
target
as
HTMLInputElement
)?.
value
;
// Use optional chaining to access value
if
(
inputValue
!==
undefined
)
{
const
sanitizedValue
=
inputValue
.
replace
(
/
\D
/g
,
''
);
// Replace non-digit characters with empty string
const
truncatedValue
=
sanitizedValue
.
slice
(
0
,
MAX_DIGITS
);
// Limit to MAX_DIGITS
if
(
type
===
'
checking
'
)
{
checkingAccount
.
value
=
truncatedValue
;
}
else
{
savingsAccount
.
value
=
truncatedValue
;
}
}
}
function
applyFormatting
(
type
:
string
)
{
if
(
type
===
'
checking
'
)
{
checkingAccount
.
value
=
formatAccount
(
checkingAccount
.
value
);
}
else
{
savingsAccount
.
value
=
formatAccount
(
savingsAccount
.
value
);
}
}
function
removeFormatting
(
type
:
string
)
{
if
(
type
===
'
checking
'
)
{
checkingAccount
.
value
=
removeFormat
(
checkingAccount
.
value
);
}
else
{
savingsAccount
.
value
=
removeFormat
(
savingsAccount
.
value
);
}
}
function
formatAccount
(
value
:
string
):
string
{
return
value
.
replace
(
/
\D
/g
,
''
).
replace
(
/^
(
.
{4})(
.
{2})(
.*
)
$/
,
'
$1.$2.$3
'
);
}
function
removeFormat
(
value
:
string
):
string
{
return
value
.
replace
(
/
\.
/g
,
''
);
}
</
script
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment