jgeewax / phoenix

Open source UI :)
Apache License 2.0
2 stars 3 forks source link

integrate firebase #40

Closed stephenplusplus closed 9 years ago

stephenplusplus commented 9 years ago

A lot has changed since #35, so this is a good ol' fashioned redo.

Preview: http://stephenplusplus.github.io/phoenix/#/projects

Schema:

{
  "projects": {
    "$project_id": {
      "users": {
        "$user_id": {
          // Private user dashboards
          "dashboards": {
            "$dashboard_id": {
              "name": "Dashboard Name",
              "modified": new Date(),
              "plugins": {
                "storage-browser": {
                  "title": "Storage Browser",
                  "state": "storage-browser",
                  "repository": "jgeewax/gcloud-ui-storage-browser",
                  "version": "v0.0.2",
                  "id": "storage-browser"
                }
              }
            }
          }
        }
      }
    }
  },
  "dashboards": {
     // Public dashboards
    "${dashboardId}": {
      "creator": "${userId}",
      "modified": new Date(),
      "plugins": {
        "storage-browser": {
          "title": "Storage Browser",
          "state": "storage-browser",
          "repository": "jgeewax/gcloud-ui-storage-browser",
          "version": "v0.0.2",
          "id": "storage-browser"
        }
      }
    }
  }
}
callmehiphop commented 9 years ago

Me gusta!

stephenplusplus commented 9 years ago

Addressed all the things. PTAL.

callmehiphop commented 9 years ago

Beautiful, thanks!