Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: ngx translate link update


Info
titleWorkshop/training materials available

Update June 2017: A DSpace Angular UI workshop was held at OR2017. This workshop provided an basic overview of the Angular framework, along with hands-on exercises for all attendees. All workshop materials are available online at: OR2017 DSpace Angular Workshop.

The new DSpace UI developer team decided to implement the new user interface with the  widely used Angular2 is being implemented on the widely used Angular client side framework. In addition to delivering a more responsive user experience,  client side frameworks allow for a more rapid development cycle. The UI code is built in TypeScript, a typed super set of JavaScript, that was developed specifically for the implementation of sizable web applications. In facts Angular2 fact Angular itself is developed in TypeScript.

The UI works with the DSpace REST Api API to access and modify data. RxJS facilitates It relies on RxJS  to manage control flow which is driven by the (asynchronous) communication between the two applications and the related Redux The @ngrx package helps maintain object a predictable state representation.

The new UI uses Angular Universal to render initial page requests on the server side. Thus ,  which greatly improves the initial page load time. As a nice benefit, search engines requesting pages do not have to deal with client side page rendering. Crawlers working through a list of URLs will always be presented with a page rendered on the server.

Node.js is the server technology used with JavaScript web application and thus with Angular. It serves the same purpose as Tomcat does for Java servlets  As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications like web based user interfaces

Npm stands for Node Package Manager. In fact installation instruction for the user interface at GitHub essentially consist of the command 'npm install',  followed by 'npm start' to start a local server.

Typescript

...

Angular

Other Packages

Node.js and Npm

RXJS

RxJS is used as part of angular 2 to deal with asynchronous data. A good grasp of RxJS is essential to write robust angular 2 code.

Universal

...

Angular Universal

Redux

Redux is a set of design-patterns to manage state in a javascript application. 

...

Additional DSpace 7 Resources

Children Display

...