|
- <template>
- <div id="new" class="page">
-
- <h2>New Loan</h2>
-
- <section class="loans-list">
-
- <h3 v-for="(l, indx) in loans"
- :class="sel == indx ? 'sel' : ''"
- @click="() => sel = indx"
- >
- {{l.title}}
- </h3>
-
- <div class="add">
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
- fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16"> <path d="M8 4a.5.5 0
- 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0
- 0 1 8 4z"/> </svg>
- </div>
- </section>
-
- <section class="form inputs">
- <h3>Loan</h3>
- <label>Name</label>
- <input :value="loans[sel].title"
- @input="(e) => loans[sel].title = stripLetters(e)">
- <button @click="del">Delete</button>
- </section>
-
- <section class="form inputs">
-
- <div class="hint">
- <img class="icon" src="/assets/image/icon/question-circle.svg" alt="">
- <div class="tooltip">
- <p>Assumes borrower is not self employed, not bankrupt in the past 7
- years, a citizen, and intends to occupy the property.</p>
- </div>
- </div>
-
- <h3>Borrower</h3>
- <label>Number of Borrowers</label>
- <input :value="loans[sel].borrowers"
- @input="(e) => loans.forEach(l => l.borrowers = strip(e))">
- <label>Credit Score</label>
- <input :value="loans[sel].creditScore"
- @input="(e) => loans.forEach(l => l.creditScore = strip(e))">
- <label>Monthly Income ($)</label>
- <input :value="loans[sel].mIncome"
- @input="(e) => loans.forEach(l => l.mIncome = strip(e))">
-
- </section>
-
- <section class="radios form">
- <h3>Transaction Type</h3>
- <input type="radio" name="transaction_type" value="transaction"
- @input="e => loans[sel].transaction = 0"
- selected="loans[sel].transaction == 0">
- <label>Purchase</label>
- <input type="radio" name="transaction_type" value="refinance"
- @input="e => loans[sel].transaction = 1"
- selected="loans[sel].transaction == 1">
- <label>Refinance</label>
- </section>
-
- <section class="form inputs">
- <h3>Property Details</h3>
- <label>Price ($)</label>
- <input :value="loans[sel].price" @input="setPrice">
- <label>Type</label>
- <select id="" name="" v-model="loans[sel].property">
- <option value="attched">Single Family Attached</option>
- <option value="detached">Single Family Detached</option>
- <option value="lorise">Lo-rise (4 stories or less)</option>
- <option value="hirise">Hi-rise (over 4 stories)</option>
- </select>
- </section>
-
- <section class="radios form">
- <h3>Loan Type</h3>
- <input type="radio" name="loan_type" value="conv" v-model="loans[sel].type"
- >
- <label>Conventional</label>
- <input type="radio" name="loan_type" value="fha" v-model="loans[sel].type">
- <label>FHA</label>
- <input type="radio" name="loan_type" value="va" v-model="loans[sel].type">
- <label>VA</label>
- <input type="radio" name="loan_type" value="usda" v-model="loans[sel].type">
- <label>USDA</label>
- </section>
-
- <section class="form inputs">
- <h3>Loan Details</h3>
- <label>Loan Term (years)</label>
- <input :value="loans[sel].term"
- @input="(e) => loans[sel].term = parseInt(e.target.value.replace(/[^0-9]/g, ''))">
-
- <label>Loan Program</label>
- <select id="" name="" v-model="loans[sel].program">
- <option value="none">None</option>
- </select>
-
- <label>Loan to Value (%)</label>
- <input :value="loans[sel].ltv" @input="setLtv">
- <label>Loan Amount ($)</label>
- <input :value="loans[sel].amount"
- @input="setAmount">
- <label>Housing Expense DTI (%) - Optional</label>
- <input :value="loans[sel].housingDti" @input="setHousingDti">
- <label>Total DTI (%) - Optional</label>
- <input :value="loans[sel].dti" @input="setDti">
- </section>
-
- </div>
- </template>
-
- <script>
- // Strips non-digits from an input box event and returns it's rounded integer
- function strip(e) {
- return parseInt(e.target.value.replace(/\D/g, '') || 0)
- }
-
- function stripLetters(e) {
- let value = (e.target.value.replace(/[^\w\s]/g, '').slice(0, 20) || '')
- e.target.value = value
- return value
- }
-
- function del() {
- if (this.loans.length > 1) {
- let x = this.sel
- this.sel = 0
- this.loans.splice(x, 1)
- }
- }
-
- function setLtv(e) {
- let ltv = strip(e)
- let loan = this.loans[this.sel]
- if (!loan.price) return
-
- if (ltv > 100) ltv = 100
- if (ltv < 0) ltv = 0
-
- loan.ltv = ltv
- e.target.value = ltv
- loan.amount = Math.round(ltv / 100 * loan.price)
- }
-
- function setAmount(e) {
- let amount = strip(e)
- let loan = this.loans[this.sel]
- if (!loan.price) return
-
- if (amount > loan.price) amount = loan.price
- if (amount < 0) amount = 0
-
- loan.amount = amount
- e.target.value = amount
- loan.ltv = Math.round(amount / loan.price * 100)
- }
-
- // Updates the property price for all loans
- function setPrice(e) {
- let value = strip(e)
-
- this.loans.forEach(l => {
- l.price = value
- l.amount = Math.round(l.ltv / 100 * value)
- })
-
- e.target.value = value
- }
-
- function setDti(e) {
- let dti = strip(e)
- let loan = this.loans[this.sel]
- if (!loan.price) return
-
- if (dti > 100) dti = 100
- if (dti < 0) dti = 0
-
- e.target.value = dti
- loan.dti = dti
- }
-
- function setHousingDti(e) {
- let housingDti = strip(e)
- let loan = this.loans[this.sel]
- if (!loan.price) return
-
- if (housingDti > 100) housingDti = 100
- if (housingDti < 0) housingDti = 0
-
- e.target.value = housingDti
- loan.housingDti = housingDti
- }
-
- const loans = [
- {
- title: "Loan Example",
- property: "",
- transaction: 0,
- type: "",
- price: 0,
- term: 0,
- ltv: 0,
- borrowers: 0,
- creditScore: 0,
- mIncome: 0,
- dti: 0,
- housingDti: 0,
- amount: 0,
- program: "",
- pud: false,
- zip: ''
- },
- {
- title: "Another One",
- property: "",
- transaction: 0,
- type: "",
- price: 0,
- term: 0,
- ltv: 0,
- borrowers: 0,
- creditScore: 0,
- mIncome: 0,
- dti: 0,
- housingDti: 0,
- program: "",
- pud: true,
- zip: ''
- }
- ]
-
- export default {
- methods: {
- setPrice, setLtv, setAmount, setDti, setHousingDti,
- strip, stripLetters, del
- },
- props: ['user'],
- data() {
- return {
- loans: loans, sel: 0, loan: loans[0],
- }
- }
- }
- </script>
|