Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ it is used only to serve the front-end component as bundeled javascript.

The ```front-end``` folder contains a Vue Application, built with Vite and Typescript. The ultimate goal of this application is to provide an alternative UI to the current Arches platform, using a modern web framework like Vue. Currently, the Vue code is bundled by vite into the static directory of the Django Application, which is then served on the user's Arches server.

The application also supports fetching data from external api sources, as seen in the `src/components/ArtistNote.vue` component. This component is designed around a simple API endpoint that is foreign-keyed to the Arches database, linking the arches dataset to an external custom set. The repository for the external API is [here](https://code.librehq.com/ots/arches/archesappremoteserver).
The application also supports fetching data from external api sources, as seen in the `src/components/ArtistNote.vue` component. This component is designed around a simple API endpoint that is foreign-keyed to the Arches database, linking the arches dataset to an external custom set. The repository for the external API is [here](https://github.com/OpenTechStrategies/archesAppRemoteServer).

# Installation Instructions
*Credits to users @apeters and @chiatt*
Expand Down
4 changes: 2 additions & 2 deletions archesdataviewer/static/vite_build/.vite/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"index.html": {
"file": "assets/index-CVuN95tD.js",
"file": "assets/index-B4kQKGQ7.js",
"name": "index",
"src": "index.html",
"isEntry": true,
"css": [
"assets/index-Byc3Ge_L.css"
"assets/index-CxkG8-XR.css"
]
}
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions archesdataviewer/static/vite_build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arches Data Viewer</title>
<script type="module" crossorigin src="/assets/index-CVuN95tD.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Byc3Ge_L.css">
<script type="module" crossorigin src="/assets/index-B4kQKGQ7.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CxkG8-XR.css">
</head>
<body>
<div id="app"></div>
Expand Down
1 change: 1 addition & 0 deletions front-end/src/components/ArtistNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<div v-if="validateRemoteServerResponseSchema(remoteServerResponse)" class="artist-note">
<p>
{{ remoteServerResponse.note }}
<br /><br />
<a :href="remoteServerResponse.url" target="_blank" rel="noopener noreferrer">{{
remoteServerResponse.url
}}</a>
Expand Down
11 changes: 8 additions & 3 deletions front-end/src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,15 @@
href="https://code.librehq.com/ots/arches/arches-demo-data/-/tree/main/wac?ref_type=heads"
>data</a
>, and our
<a href="https://code.librehq.com/ots/arches/arches-demo-data">data import scripts</a>, and
the underlying
<a href="https://code.librehq.com/ots/arches/arches-demo-data">data import scripts</a>, the
underlying
<a href="https://arches.arches-app-demo.opentechstrategies.com/">Arches server</a> that this
application pulls data from. Contributions welcome.
application pulls most of its data from, and the small
<a href="https://github.com/OpenTechStrategies/archesAppRemoteServer"
>external information server</a
>
that this app also pulls from to demonstrate how data from non-Arches sources can be
combined with data from Arches. Contributions welcome.
</p>
<br />
</div>
Expand Down