aurelia / app-ux-showcase

An application that showcases the various features of Aurelia UX.
98 stars 29 forks source link

Add link to hosted version #4

Open owencm opened 8 years ago

owencm commented 8 years ago

I wanted to take a look quickly to get a sense but don't see any way to try without hosting myself.

Can you host a version and link to it from the readme?

Thanks!

EisenbergEffect commented 8 years ago

We're going to get something up in a bit.

foureggs commented 8 years ago

+1 that would be useful

funky-jojo commented 7 years ago

Any progress on this? I want to explore it and possibly use it, but I don't have the time to pull down the live showcase and try to build it and get it running. Just my $0.02, but I think having live demo for things like this is absolutely critical for mass adoption.

mttmccb commented 7 years ago

Any reason not to use github pages?

khuongduybui commented 7 years ago

It needs to be built anyway. Using Github pages, you would have to manually build and upload.

mttmccb commented 7 years ago

Yeah, a few options (ignore the react parts) seems pretty trivial... https://medium.freecodecamp.com/surge-vs-github-pages-deploying-a-create-react-app-project-c0ecbf317089#.x5dbok1uh

peterennis commented 7 years ago

Also looking to review some online demo. I am not ready to build it myself just to see if I want to consider using the tool.

okezieokpara commented 7 years ago

I was finally able to get this up and running if you have any issues, I can try help out. I should host it publicly soon.

albuumg commented 7 years ago

I tried it locally but I'm getting this error: Unhandled rejection Error: Load timeout for modules: template-registry-entry!aurelia-ux/chip-input/ux-chip-input.html,template-registry-entry!aurelia-ux/chip-input/ux-chip.html,template-registry-entry!aurelia-ux/chip-input/ux-tag.html,text!aurelia-ux/chip-input/ux-chip-input.html,text!aurelia-ux/chip-input/ux-chip.html,text!aurelia-ux/chip-input/ux-tag.html http://requirejs.org/docs/errors.html#timeout at Error (native) at F (http://localhost:9000/scripts/vendor-bundle.js:3784:290) at H (http://localhost:9000/scripts/vendor-bundle.js:3790:56) at http://localhost:9000/scripts/vendor-bundle.js:3790:227 From previous event: at DefaultLoader._import (http://localhost:9000/scripts/vendor-bundle.js:11616:14) at DefaultLoader.loadTemplate (http://localhost:9000/scripts/vendor-bundle.js:11583:19) at ensureRegistryEntry (http://localhost:9000/scripts/vendor-bundle.js:19579:19) at ViewEngine.loadViewFactory (http://localhost:9000/scripts/vendor-bundle.js:19647:14) at ConventionalViewStrategy.loadViewFactory (http://localhost:9000/scripts/vendor-bundle.js:17041:25) at HtmlBehaviorResource.load (http://localhost:9000/scripts/vendor-bundle.js:20420:29) at ResourceDescription.load (http://localhost:9000/scripts/vendor-bundle.js:19466:28) at ResourceModule.load (http://localhost:9000/scripts/vendor-bundle.js:19408:25) at http://localhost:9000/scripts/vendor-bundle.js:19776:43 From previous event: at ViewEngine.importViewResources (http://localhost:9000/scripts/vendor-bundle.js:19745:52) at http://localhost:9000/scripts/vendor-bundle.js:10702:25 From previous event: at loadResources (http://localhost:9000/scripts/vendor-bundle.js:10693:9) at http://localhost:9000/scripts/vendor-bundle.js:10770:16 at next (http://localhost:9000/scripts/vendor-bundle.js:10650:32) at runTasks (http://localhost:9000/scripts/vendor-bundle.js:10656:12) at http://localhost:9000/scripts/vendor-bundle.js:10936:18 From previous event: at http://localhost:9000/scripts/vendor-bundle.js:10935:23 From previous event: at FrameworkConfiguration.apply (http://localhost:9000/scripts/vendor-bundle.js:10920:44) at Aurelia.start (http://localhost:9000/scripts/vendor-bundle.js:10536:39) at Object.configure (http://localhost:9000/scripts/app-bundle.js:111:17) at http://localhost:9000/scripts/vendor-bundle.js:9599:22 From previous event: at config (http://localhost:9000/scripts/vendor-bundle.js:9594:48) at handleApp (http://localhost:9000/scripts/vendor-bundle.js:9585:12) at http://localhost:9000/scripts/vendor-bundle.js:9618:13 From previous event: at http://localhost:9000/scripts/vendor-bundle.js:9616:40 From previous event: at http://localhost:9000/scripts/vendor-bundle.js:9615:29 From previous event: at run (http://localhost:9000/scripts/vendor-bundle.js:9611:26) at Object. (http://localhost:9000/scripts/vendor-bundle.js:9638:3) at Object.execCb (http://localhost:9000/scripts/vendor-bundle.js:3806:299) at Object.check (http://localhost:9000/scripts/vendor-bundle.js:3795:50) at Object.enable (http://localhost:9000/scripts/vendor-bundle.js:3800:58) at Object.enable (http://localhost:9000/scripts/vendor-bundle.js:3804:433) at Object. (http://localhost:9000/scripts/vendor-bundle.js:3799:436) at http://localhost:9000/scripts/vendor-bundle.js:3784:140 at y (http://localhost:9000/scripts/vendor-bundle.js:3783:207) at Object.enable (http://localhost:9000/scripts/vendor-bundle.js:3798:469) at Object.init (http://localhost:9000/scripts/vendor-bundle.js:3793:154) at http://localhost:9000/scripts/vendor-bundle.js:3803:308

serifine commented 7 years ago

@albuumg this is likely due to an update to the library. My latest PR will solve this but in the meantime you can fix this issue by going to the Aurelia.json file in the Aurelia_Project folder and replacing the aurelia entry with this.

      {
        "name": "aurelia-ux",
        "path": "../node_modules/aurelia-ux/dist/amd",
        "main": "index",
        "resources": [
          "./button/ux-button.html",
          "./button/ux-button-theme.css",
          "./input/ux-input.html",
          "./input/ux-input-theme.css",
          "./input-info/ux-input-info.html",
          "./input-info/ux-input-info-theme.css",
          "./textarea/ux-textarea.html",
          "./textarea/ux-textarea-theme.css",
          "./form/ux-form.html",
          "./form/ux-form-theme.css",
          "./form/ux-field.html",
          "./form/ux-field-theme.css",
          "./chip-input/ux-chip-input.html",
          "./chip-input/ux-chip-input-theme.css",
          "./chip-input/ux-chip.html",
          "./chip-input/ux-chip-theme.css",
          "./chip-input/ux-tag.html",
          "./chip-input/ux-tag-theme.css"
        ]
      }
jeffgrann commented 7 years ago

What's going on with the hosted showcase? I would think it would exist by now.

alexisargyris commented 7 years ago

Well, it certainly would be nice to be able to see something without having to do anything, but it really took less than five minutes to set it up locally.

jeffgrann commented 7 years ago

@alexisargyris I'm thinking about developers who are looking into using Aurelia and want to see the current state of Aurelia UX. It should be as easy as possible for them.

serifine commented 7 years ago

@jeffgrann the plan is to add this to the new developer Hub when it is ready. See #19.

@EisenbergEffect is working on that.

EisenbergEffect commented 7 years ago

It's coming as part of the new hub....

On Apr 25, 2017 11:43 AM, "Zacharey Hollingshead" notifications@github.com wrote:

@jeffgrann https://github.com/jeffgrann the plan is to add this to the new developer Hub when it is ready. See #19 https://github.com/aurelia/app-ux-showcase/issues/19.

@EisenbergEffect https://github.com/EisenbergEffect is working on that.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/aurelia/app-ux-showcase/issues/4#issuecomment-297127060, or mute the thread https://github.com/notifications/unsubscribe-auth/AAIBnUFlEEtmxp3cIrUXBD2D3d3HYJuDks5rzj7WgaJpZM4KqOOT .

veikkoeeva commented 6 years ago

Stumbled upon this while searching for something to see. Does someone know sources to see even some of the components?

<edit: @ZHollingshead rushed to rescue in a second in Gitter: a showcase: https://aux-demo.firebaseapp.com/introduction. Cheers!

Alexander-Taran commented 6 years ago

can we set up a deployed to firebase app? duplicate of this https://github.com/aurelia/app-ux-showcase/issues/19

brianjlacy commented 6 years ago

The demo link provided does not work for me. Just a blank screen.

veikkoeeva commented 6 years ago

The link https://aux-demo.firebaseapp.com/getting-started seems to be working.

veikkoeeva commented 6 years ago

I think the showcase link ought to be shown at https://github.com/aurelia/app-ux-showcase, by the way. It's plenty of digging to get it from here. :) In other words, are PRs to do that OK (either by me or someone else if someone is faster)?