This project implements the website for ClearlyDefined. It's a relatively straightforward React app that serves mainly as a portal to discover and curate project data managed by the ClearDefined service.
The doc has a guide to using the website to browse, inspect and curate data.
If you are interested in working on the code for the website, follow the steps below.
The quickest way to get a fully functional local ClearlyDefined set up (including the website) is to use the Dockerized ClearlyDefined environment setup. This runs all services locally and does not require access to the ClearlyDefined Azure account.
Some parts of this set up may require access to the ClearlyDefined Azure Account.
git clone https://github.com/clearlydefined/website.git
or equivalent.cd <dir where you cloned website>
)npm install
npm start
This sequence will get the code for site, fetch all the prerequisites, build the site, start it running and open a browser on http://localhost:3000. You should see the ClearlyDefined website and be able to browse the data etc. If you login (top right corner), more functionality will light up.
This simple setup uses the development instance of the service. That may be highly volatile and will change without notice.
Since you are not forced to consume only the local APIs, but you can even consume directly the remote development or production APIs, for the website
repo only you are able to point out different APIs endpoints, depending on your needs, using different kinds of npm scripts: - npm start
use the default environment, which is actually the DEV environment, and it refers to development APIs - npm run start:dev-api
points out specifically to the development APIs - npm run start:local-api
points out the local environment, which works only if the service repo is started - npm run start:prod-api
points out specifically to the production APIs
This project welcomes contributions and suggestions, and we've documented the details in the contribution policy.
The Code of Conduct for this project is details how the community interacts in an inclusive and respectful manner. Please keep it in mind as you engage here.
Well, the title says it. The site is not particularly responsive. Somethings are ok, most are not. The use of large text editor areas makes things tough. We may need some alternative experiences or simply disable them in more constrained environments. Ideally mobile users would be able to at least browse and do rudimentary data entry. Even on desktops, users looking to dock half-screen windows to the side of their monitors may be a bit cramped.
Overall we need a design that talks about what is possible on different form-factors and user scenarios, and then a mess of work to make that happen.
Currently there are few affordances for a normal user to contribute a little bit of data for a component let alone anything for a component that is not already in the system.
We need a simple perhaps form-based experience where users can fill in the data they have and create whole new definition entries in the system. One idea is to enable some lightweight scanning that just does top level licenses, source location, etc. and populates the system. Then, at a later date, the full ScanCode style tools can be run and the data built out.
Understanding an optimal user experience for this will be key to making it compelling.
The first version of the web app was written by React/Redux newbie (the author of this text so I can say that). While it may be ok, there are likely untold bad practices and less than optimal code patterns. Data management via Redux is likely one of the key culprits.
Having some folks who have a proven deep understanding Redux and React take a look at the setup and help it mature into a world-class React app would be fantastic.