Browse Source

remove unused page; tweak task list

kb/add-usage-guide
Trent Larson 7 months ago
parent
commit
5c547783a7
  1. 13
      project.task.yaml
  2. 8
      src/router/index.ts
  3. 2
      src/views/ContactsView.vue
  4. 67
      src/views/NewEditCommitmentView.vue

13
project.task.yaml

@ -1,14 +1,20 @@
tasks :
- 02 error passing control of a project to another user
- 08 notifications for feed - make them reliable :
- leverage different messaging platform?
- .5 fix timeSafari.org cert renewals
- .2 anchor hash into BTC
- 01 bookmarks for BVC
- 24 compelling UI for credential presentations
- 24 compelling UI for statistics (eg. World?)
- .5 fix timeSafari.org cert renewals
- .2 anchor hash into BTC
- .5 stop from seeing an error on the first page when browser doesn't support service workers (which I've seen on iPhone; visible in Firefox private window)
- .2 add links between projects
- 32 image on give :
- Show a camera to take a picture
@ -19,6 +25,9 @@ tasks :
- put the image URL in the claim
- Rates - images erased?
- image not associated with JWT ULID since that's assigned later
- 24 make the contact browsing on the front page something that invites more action
- .5 change server plan & project endpoints to use jwtId as identifier rather than rowid
- 16 edit offers & gives, or revoke allowing re-creation
- .1 When available in the server, give message for 'nonAmountGiven' on offers on ProjectsView page.

8
src/router/index.ts

@ -136,14 +136,6 @@ const routes: Array<RouteRecordRaw> = [
/* webpackChunkName: "new-edit-account" */ "../views/NewEditAccountView.vue"
),
},
{
path: "/new-edit-commitment",
name: "new-edit-commitment",
component: () =>
import(
/* webpackChunkName: "new-edit-commitment" */ "../views/NewEditCommitmentView.vue"
),
},
{
path: "/new-edit-project",
name: "new-edit-project",

2
src/views/ContactsView.vue

@ -13,7 +13,7 @@
@click="showHintsForOnboarding()"
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1"
>
Onboarding Hints
Onboarding Guide
</a>
</span>
</div>

67
src/views/NewEditCommitmentView.vue

@ -1,67 +0,0 @@
<template>
<!-- CONTENT -->
<section id="Content" class="p-6 pb-24 max-w-3xl mx-auto">
<!-- Breadcrumb -->
<div id="ViewBreadcrumb" class="mb-8">
<h1 class="text-lg text-center font-light relative px-7">
<!-- Cancel -->
<router-link
:to="{ name: 'project' }"
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
><fa icon="chevron-left" class="fa-fw"></fa>
</router-link>
Make Commitment
</h1>
</div>
<!-- Project Details -->
<select class="block w-full rounded border border-slate-400 mb-4 px-3 py-2">
<option disabled>Choose a commitment type</option>
<option selected>Time</option>
<option>Cryptocurrency</option>
<option>Money</option>
</select>
<!-- Time amount -->
<div class="mb-4 flex items-stretch">
<input
type="number"
placeholder="0.0"
class="block w-full rounded-l border border-slate-400 px-3 py-2"
/>
<span
class="px-4 py-2 rounded-r bg-slate-200 border border-l-0 border-slate-400"
>hours</span
>
</div>
<!-- Crypto amount -->
<!-- Money amount -->
<div class="mt-8">
<input
type="submit"
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
value="Commit"
/>
<button
type="button"
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
>
Maybe Later
</button>
</div>
</section>
</template>
<script lang="ts">
import { Component, Vue } from "vue-facing-decorator";
@Component({
components: {},
})
export default class NewEditCommitmentView extends Vue {}
</script>
Loading…
Cancel
Save