Skip to content

Commit

Permalink
chore: hackathon cleanup part 2 (#1570)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwdchang authored Jul 25, 2023
1 parent 04d39a9 commit 1bf234e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 48 deletions.
2 changes: 0 additions & 2 deletions packages/client/hmi-client/src/services/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { IProject, ProjectAssets, ProjectAssetTypes } from '@/types/Project';
import { logger } from '@/utils/logger';
import { Tab } from '@/types/common';
import DatasetIcon from '@/assets/svg/icons/dataset.svg?component';
import ResultsIcon from '@/assets/svg/icons/results.svg?component';
import { Component } from 'vue';
import useResourcesStore from '@/stores/resources';
import * as EventService from '@/services/event';
Expand Down Expand Up @@ -213,7 +212,6 @@ const icons = new Map<string | ProjectAssetTypes, string | Component>([
[ProjectAssetTypes.MODELS, 'share-2'],
[ProjectAssetTypes.DATASETS, DatasetIcon],
[ProjectAssetTypes.SIMULATIONS, 'settings'],
[ProjectAssetTypes.SIMULATION_RUNS, ResultsIcon],
[ProjectAssetTypes.CODE, 'code'],
[ProjectAssetTypes.SIMULATION_WORKFLOW, 'git-merge'],
['overview', 'layout']
Expand Down
9 changes: 0 additions & 9 deletions packages/client/hmi-client/src/types/ModelConfig.ts

This file was deleted.

4 changes: 0 additions & 4 deletions packages/client/hmi-client/src/types/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { DocumentAsset, Document, Dataset, Model, Artifact } from '@/types/Types
export enum ProjectAssetTypes {
DOCUMENTS = 'publications',
MODELS = 'models',
PLANS = 'plans',
SIMULATIONS = 'simulations',
SIMULATION_RUNS = 'simulation_runs',
SIMULATION_WORKFLOW = 'workflows',
DATASETS = 'datasets',
CODE = 'code',
Expand All @@ -26,8 +24,6 @@ export const isProjectAssetTypes = (type: ProjectAssetTypes | string): boolean =
export type ProjectAssets = {
[ProjectAssetTypes.DOCUMENTS]: DocumentAsset[];
[ProjectAssetTypes.MODELS]: Model[];
[ProjectAssetTypes.PLANS]: any[]; // FIXME: add proper type
[ProjectAssetTypes.SIMULATION_RUNS]: any[]; // FIXME: add proper type
[ProjectAssetTypes.DATASETS]: Dataset[];
[ProjectAssetTypes.CODE]: any[];
[ProjectAssetTypes.ARTIFACTS]: Artifact[];
Expand Down
33 changes: 0 additions & 33 deletions packages/client/hmi-client/src/utils/csv.ts

This file was deleted.

0 comments on commit 1bf234e

Please sign in to comment.