Skip to content

Commit

Permalink
A step towards working IIIF URL construction
Browse files Browse the repository at this point in the history
  • Loading branch information
dokempf committed Jul 25, 2024
1 parent 0c8bb78 commit 69d335b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/splitter/UBHDIIIFMaskSplitter.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<script>
import { fieldData } from "../../lib/easydbHelpers";
import { appLanguageStore } from "../../lib/stores";
import { P } from "flowbite-svelte";
import NotImplemented from "../utils/NotImplemented.svelte";
export let data;
export let table;
export let field;
const options = JSON.parse(field.options);
Expand All @@ -18,12 +16,13 @@
"en-US": "IIIF image URL",
},
};
</script>

<P>
<span class="text-sm easydb-label">{l10n["iiif-url"][$appLanguageStore]}</span>
</P>
<P>
<!-- https://gitlab.ub.uni-heidelberg.de/fdm/easydb-ubhd-iiif-mask-splitter-plugin/-/blob/master/src/webfrontend/UbhdIiifMaskSplitterPlugin.coffee?ref_type=heads#L50 -->
<NotImplemented message="Need to reconstruct IIIF URL." />
</P>
{options.url_prefix}/{data._system_object_id}%3A
<NotImplemented message="How to get the asset ID here?" />
</P>

0 comments on commit 69d335b

Please sign in to comment.