20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / assets / javascripts / components / sessions.js
diff --git a/apps/workbench/app/assets/javascripts/components/sessions.js b/apps/workbench/app/assets/javascripts/components/sessions.js
deleted file mode 100644 (file)
index 17c144c..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
-
-$(document).on('ready', function() {
-    var db = new SessionDB()
-    db.checkForNewToken()
-    db.fillMissingUUIDs()
-})
-
-window.SessionsTable = {
-    oninit: function(vnode) {
-        vnode.state.db = new SessionDB()
-        vnode.state.hostToAdd = m.stream('')
-    },
-    view: function(vnode) {
-        var db = vnode.state.db
-        var sessions = db.loadAll()
-        return m('.container', [
-            m('table.table.table-condensed.table-hover', [
-                m('thead', m('tr', [
-                    m('th', 'status'),
-                    m('th', 'cluster ID'),
-                    m('th', 'username'),
-                    m('th', 'email'),
-                    m('th', 'actions'),
-                    m('th'),
-                ])),
-                m('tbody', [
-                    Object.keys(sessions).map(function(uuidPrefix) {
-                        var session = sessions[uuidPrefix]
-                        return m('tr', [
-                            session.token && session.user ? [
-                                m('td', m('span.label.label-success', 'logged in')),
-                                m('td', {title: session.baseURL}, uuidPrefix),
-                                m('td', session.user.username),
-                                m('td', session.user.email),
-                                m('td', session.isFromRails ? null : m('button.btn.btn-xs.btn-default', {
-                                    uuidPrefix: uuidPrefix,
-                                    onclick: m.withAttr('uuidPrefix', db.logout),
-                                }, 'Log out ', m('span.glyphicon.glyphicon-log-out'))),
-                            ] : [
-                                m('td', m('span.label.label-default', 'logged out')),
-                                m('td', {title: session.baseURL}, uuidPrefix),
-                                m('td'),
-                                m('td'),
-                                m('td', m('a.btn.btn-xs.btn-primary', {
-                                    uuidPrefix: uuidPrefix,
-                                    onclick: db.login.bind(db, session.baseURL),
-                                }, 'Log in ', m('span.glyphicon.glyphicon-log-in'))),
-                            ],
-                            m('td', session.isFromRails ? null : m('button.btn.btn-xs.btn-default', {
-                                uuidPrefix: uuidPrefix,
-                                onclick: m.withAttr('uuidPrefix', db.trash),
-                            }, 'Remove ', m('span.glyphicon.glyphicon-trash'))),
-                        ])
-                    }),
-                ]),
-            ]),
-            m('.row', m('.col-md-6', [
-                m('form', {
-                    onsubmit: function() {
-                        db.login(vnode.state.hostToAdd())
-                        return false
-                    },
-                }, [
-                    m('.input-group', [
-                        m('input.form-control[type=text][name=apiHost][placeholder="API host"]', {
-                            oninput: m.withAttr('value', vnode.state.hostToAdd),
-                        }),
-                        m('.input-group-btn', [
-                            m('input.btn.btn-primary[type=submit][value="Log in"]', {
-                                disabled: !vnode.state.hostToAdd(),
-                            }),
-                        ]),
-                    ]),
-                ]),
-            ])),
-        ])
-    },
-}