CenterForDigitalHumanities / rerum

Open and free repository for linked open data.
http://rerum.io
10 stars 3 forks source link

Basic Manifest Editing #30

Open thehabes opened 7 years ago

thehabes commented 7 years ago

Create an interface for editing saved manifests.

User Paths Entering with a manifest

Entering without a manifest

Typical Editing Questions How deep does validation go when attempting to save an edited manifest?

Do we call out warnings for key:value things we don't understand?

What happens when there is a successful save of an edited manifest? What does the user see next?

What happens when there is an unsuccessful save of an edited manifest, or a manifest severely fails even basic validation?

Can we incorporate Deep Codex with this?

thehabes commented 7 years ago

An alpha version that allows editing through a text editor (nothing fancy for the individual pieces, just straight up text editor) is available through the tools.

This should be deeply tied with #33

thehabes commented 7 years ago

AngularJS scope stuff makes it difficult to pass data across pages. Using $rootScope and services are usually the way to go for this, but we are passing across scope, session, controllers and a new page. For this case, the suggestion is to use Window.localStorage, which I have implemented to pass in an object from the Create page to the Edit page.