Skip to content
Snippets Groups Projects
Commit b7580fe0 authored by Tarje.Lavik's avatar Tarje.Lavik
Browse files

Add README to local plugins

parent c93de715
No related branches found
No related tags found
No related merge requests found
# dashboard-widget-structure-menu
Widget for the dashboard with links to the document types in the Studio.
\ No newline at end of file
import {combineLatest} from 'rxjs' import { combineLatest } from 'rxjs'
import {map} from 'rxjs/operators' import { map } from 'rxjs/operators'
import {loadStructure} from './lib/structure' import { loadStructure } from './lib/structure'
export function toPropsStream(props$) { export function toPropsStream(props$) {
const structure$ = loadStructure() const structure$ = loadStructure()
return combineLatest(props$, structure$).pipe( return combineLatest([props$, structure$]).pipe(
map(([props, structure]) => ({...props, structure})), map(([props, structure]) => ({ ...props, structure })),
) )
} }
# import-tool
Import objects from Marcus and NB and authority data from Kulturnav into Sanity.
\ No newline at end of file
# Sanity Plugin IIIF Manifest Input # Sanity Plugin IIIF Manifest Input
*NOT WORKING!!!*
Add a IIIF viewer for IIIF Manifest urls. Add a IIIF viewer for IIIF Manifest urls.
You might get CORS issues with this plugin. api.nb.no at least makes IIIF a bit easier :-). You might get CORS issues with this plugin. api.nb.no at least makes IIIF a bit easier :-).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment