fix the last of the type annotations (still have to fix no-explicit-any warnings)
This commit is contained in:
703
package-lock.json
generated
703
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -56,6 +56,7 @@
|
||||
"web-did-resolver": "^2.0.27"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/leaflet": "^1.9.4",
|
||||
"@types/ramda": "^0.29.3",
|
||||
"@types/three": "^0.152.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
||||
|
||||
121
sample.txt
121
sample.txt
@@ -1,121 +0,0 @@
|
||||
|
||||
> kickstart-for-time-pwa@0.1.0 build
|
||||
> vue-cli-service build
|
||||
|
||||
All browser targets in the browserslist configuration have supported ES module.
|
||||
Therefore we don't build two separate bundles for differential loading.
|
||||
|
||||
|
||||
ERROR Failed to compile with 10 errors8:42:51 PM
|
||||
|
||||
error in src/views/ContactGiftingView.vue:164:13
|
||||
|
||||
TS18046: 'err' is of type 'unknown'.
|
||||
162 | title: "Error",
|
||||
163 | text:
|
||||
> 164 | err.message ||
|
||||
| ^^^
|
||||
165 | "There was an error retrieving the latest sweet, sweet action.",
|
||||
166 | },
|
||||
167 | -1,
|
||||
|
||||
error in src/views/ContactGiftingView.vue:173:5
|
||||
|
||||
TS2571: Object is of type 'unknown'.
|
||||
171 |
|
||||
172 | openDialog(giver: GiverInputInfo) {
|
||||
> 173 | this.$refs.customDialog.open(giver);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
174 | }
|
||||
175 |
|
||||
176 | handleDialogResult(result: GiverOutputInfo) {
|
||||
|
||||
error in src/views/ContactGiftingView.vue:287:19
|
||||
|
||||
TS2339: Property 'error' does not exist on type 'CreateAndSubmitGiveResult'.
|
||||
Property 'error' does not exist on type 'SuccessResult'.
|
||||
285 |
|
||||
286 | getGiveCreationErrorMessage(result: CreateAndSubmitGiveResult) {
|
||||
> 287 | return result.error?.userMessage;
|
||||
| ^^^^^
|
||||
288 | }
|
||||
289 |
|
||||
290 | getGiveErrorMessage(error: any) {
|
||||
|
||||
error in src/views/DiscoverView.vue:347:17
|
||||
|
||||
TS18046: 'e' is of type 'unknown'.
|
||||
345 | type: "danger",
|
||||
346 | title: "Error",
|
||||
> 347 | text: e.userMessage || "There was a problem retrieving projects.",
|
||||
| ^
|
||||
348 | },
|
||||
349 | -1,
|
||||
350 | );
|
||||
|
||||
error in src/views/DiscoverView.vue:425:17
|
||||
|
||||
TS18046: 'e' is of type 'unknown'.
|
||||
423 | type: "danger",
|
||||
424 | title: "Error",
|
||||
> 425 | text: e.userMessage || "There was a problem retrieving projects.",
|
||||
| ^
|
||||
426 | },
|
||||
427 | -1,
|
||||
428 | );
|
||||
|
||||
error in src/views/DiscoverView.vue:461:15
|
||||
|
||||
TS7006: Parameter 'event' implicitly has an 'any' type.
|
||||
459 | }
|
||||
460 |
|
||||
> 461 | setMapPoint(event) {
|
||||
| ^^^^^
|
||||
462 | if (this.isNewMarkerSet) {
|
||||
463 | this.localLatDiff = Math.abs(event.latlng.lat - this.localCenterLat);
|
||||
464 | this.localLongDiff = Math.abs(event.latlng.lng - this.localCenterLong);
|
||||
|
||||
error in src/views/HelpView.vue:182:26
|
||||
|
||||
TS2732: Cannot find module '../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension.
|
||||
180 |
|
||||
181 | <script lang="ts">
|
||||
> 182 | import * as Package from "../../package.json";
|
||||
| ^^^^^^^^^^^^^^^^^^^^
|
||||
183 | import { Component, Vue } from "vue-facing-decorator";
|
||||
184 | import QuickNav from "@/components/QuickNav.vue";
|
||||
185 |
|
||||
|
||||
error in src/views/HomeView.vue:295:13
|
||||
|
||||
TS18046: 'err' is of type 'unknown'.
|
||||
293 | title: "Error",
|
||||
294 | text:
|
||||
> 295 | err.userMessage ||
|
||||
| ^^^
|
||||
296 | "There was an error retrieving the latest sweet, sweet action.",
|
||||
297 | },
|
||||
298 | -1,
|
||||
|
||||
error in src/views/HomeView.vue:428:5
|
||||
|
||||
TS2571: Object is of type 'unknown'.
|
||||
426 |
|
||||
427 | openDialog(giver: GiverInputInfo) {
|
||||
> 428 | this.$refs.customDialog.open(giver);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
429 | }
|
||||
430 |
|
||||
431 | handleDialogResult(result: GiverOutputInfo) {
|
||||
|
||||
error in src/views/NewEditProjectView.vue:286:20
|
||||
|
||||
TS2339: Property '$router' does not exist on type 'Vue'.
|
||||
284 | name: "project",
|
||||
285 | };
|
||||
> 286 | that.$router.push(route);
|
||||
| ^^^^^^^
|
||||
287 | },
|
||||
288 | 2000,
|
||||
289 | this,
|
||||
|
||||
@@ -112,12 +112,12 @@ export function didInfo(
|
||||
}
|
||||
}
|
||||
|
||||
interface SuccessResult {
|
||||
export interface SuccessResult {
|
||||
type: "success";
|
||||
response: AxiosResponse<ClaimResult>;
|
||||
}
|
||||
|
||||
interface ErrorResult {
|
||||
export interface ErrorResult {
|
||||
type: "error";
|
||||
error: InternalError;
|
||||
}
|
||||
|
||||
@@ -89,6 +89,7 @@ import { accessToken } from "@/libs/crypto";
|
||||
import {
|
||||
createAndSubmitGive,
|
||||
CreateAndSubmitGiveResult,
|
||||
ErrorResult,
|
||||
GiverInputInfo,
|
||||
GiverOutputInfo,
|
||||
} from "@/libs/endorserServer";
|
||||
@@ -96,7 +97,6 @@ import { Contact } from "@/db/tables/contacts";
|
||||
import QuickNav from "@/components/QuickNav.vue";
|
||||
import EntityIcon from "@/components/EntityIcon.vue";
|
||||
import { IIdentifier } from "@veramo/core";
|
||||
import { RawAxiosRequestHeaders } from "axios";
|
||||
|
||||
interface Notification {
|
||||
group: string;
|
||||
@@ -154,7 +154,7 @@ export default class HomeView extends Vue {
|
||||
this.apiServer = settings?.apiServer || "";
|
||||
this.activeDid = settings?.activeDid || "";
|
||||
this.allContacts = await db.contacts.toArray();
|
||||
} catch (err: unknown) {
|
||||
} catch (err: any) {
|
||||
this.$notify(
|
||||
{
|
||||
group: "alert",
|
||||
@@ -170,7 +170,7 @@ export default class HomeView extends Vue {
|
||||
}
|
||||
|
||||
openDialog(giver: GiverInputInfo) {
|
||||
this.$refs.customDialog.open(giver);
|
||||
(this.$refs.customDialog as GiftedDialog).open(giver);
|
||||
}
|
||||
|
||||
handleDialogResult(result: GiverOutputInfo) {
|
||||
@@ -284,7 +284,7 @@ export default class HomeView extends Vue {
|
||||
}
|
||||
|
||||
getGiveCreationErrorMessage(result: CreateAndSubmitGiveResult) {
|
||||
return result.error?.userMessage;
|
||||
return (result as ErrorResult).error?.userMessage;
|
||||
}
|
||||
|
||||
getGiveErrorMessage(error: any) {
|
||||
|
||||
@@ -185,6 +185,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { LeafletMouseEvent } from "leaflet";
|
||||
import "leaflet/dist/leaflet.css";
|
||||
import { Component, Vue } from "vue-facing-decorator";
|
||||
import {
|
||||
@@ -202,7 +203,6 @@ import { didInfo, ProjectData } from "@/libs/endorserServer";
|
||||
import QuickNav from "@/components/QuickNav.vue";
|
||||
import InfiniteScroll from "@/components/InfiniteScroll.vue";
|
||||
import EntityIcon from "@/components/EntityIcon.vue";
|
||||
import { RawAxiosRequestHeaders } from "axios";
|
||||
|
||||
const DEFAULT_LAT_LONG_DIFF = 0.01;
|
||||
const WORLD_ZOOM = 2;
|
||||
@@ -337,7 +337,7 @@ export default class DiscoverView extends Vue {
|
||||
} else {
|
||||
throw JSON.stringify(results);
|
||||
}
|
||||
} catch (e) {
|
||||
} catch (e: any) {
|
||||
console.log("Error with feed load:", e);
|
||||
this.$notify(
|
||||
{
|
||||
@@ -415,7 +415,7 @@ export default class DiscoverView extends Vue {
|
||||
} else {
|
||||
throw JSON.stringify(results);
|
||||
}
|
||||
} catch (e) {
|
||||
} catch (e: any) {
|
||||
console.log("Error with feed load:", e);
|
||||
this.$notify(
|
||||
{
|
||||
@@ -458,7 +458,7 @@ export default class DiscoverView extends Vue {
|
||||
this.$router.push(route);
|
||||
}
|
||||
|
||||
setMapPoint(event) {
|
||||
setMapPoint(event: LeafletMouseEvent) {
|
||||
if (this.isNewMarkerSet) {
|
||||
this.localLatDiff = Math.abs(event.latlng.lat - this.localCenterLat);
|
||||
this.localLongDiff = Math.abs(event.latlng.lng - this.localCenterLong);
|
||||
|
||||
@@ -216,7 +216,6 @@ import { Contact } from "@/db/tables/contacts";
|
||||
import QuickNav from "@/components/QuickNav.vue";
|
||||
import EntityIcon from "@/components/EntityIcon.vue";
|
||||
import { IIdentifier } from "@veramo/core";
|
||||
import { RawAxiosRequestHeaders } from "axios";
|
||||
|
||||
interface Notification {
|
||||
group: string;
|
||||
@@ -285,7 +284,7 @@ export default class HomeView extends Vue {
|
||||
this.allContacts = await db.contacts.toArray();
|
||||
this.feedLastViewedId = settings?.lastViewedClaimId;
|
||||
this.updateAllFeed();
|
||||
} catch (err) {
|
||||
} catch (err: any) {
|
||||
this.$notify(
|
||||
{
|
||||
group: "alert",
|
||||
@@ -425,7 +424,7 @@ export default class HomeView extends Vue {
|
||||
}
|
||||
|
||||
openDialog(giver: GiverInputInfo) {
|
||||
this.$refs.customDialog.open(giver);
|
||||
(this.$refs.customDialog as GiftedDialog).open(giver);
|
||||
}
|
||||
|
||||
handleDialogResult(result: GiverOutputInfo) {
|
||||
|
||||
@@ -279,11 +279,8 @@ export default class NewEditProjectView extends Vue {
|
||||
resp.data.success.handleId || resp.data.success.fullIri,
|
||||
);
|
||||
setTimeout(
|
||||
function (that: Vue) {
|
||||
const route = {
|
||||
name: "project",
|
||||
};
|
||||
that.$router.push(route);
|
||||
function (that: NewEditProjectView) {
|
||||
that.$router.push({ name: "project" });
|
||||
},
|
||||
2000,
|
||||
this,
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"resolveJsonModule": true,
|
||||
"target": "esnext",
|
||||
"module": "esnext",
|
||||
"strict": true,
|
||||
|
||||
Reference in New Issue
Block a user